@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Clean font */
    background-color: #f8f8f8; /* Light gray background */
    color: #333;
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

/* nav bar start */


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    position: sticky;
    top: 1px;
    z-index: 10;
    transition: all 0.3s ease-in-out;
}

.navbar:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.navbar .logo img {
    width: 150px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar .logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: rotate(90deg);
    color: #007bff;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(120deg, #e0e0e0, #f8f8f8);
    position: relative;
    overflow: hidden;
}

.nav-links a:hover {
    color: #fff;
    background: linear-gradient(120deg, #007bff, #00d4ff);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.5);
    transform: scale(1.05);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(120deg, #007bff, #00d4ff);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

/* Social Media Icons */
.social-media {
    display: flex; /* Icons aligned horizontally */
    gap: 10px; /* Space between icons */
}

.social-media a {
    font-size: 20px;
    color: #333;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background: linear-gradient(120deg, #007bff, #00d4ff);
    color: #fff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        gap: 20px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        animation: slide-in 0.5s ease forwards;
    }

    .nav-links a {
        font-size: 1.5rem;
        padding: 15px 25px;
        background: linear-gradient(120deg, #e0e0e0, #f8f8f8);
    }

    .nav-links a:hover {
        background: linear-gradient(120deg, #007bff, #00d4ff);
    }
}

@keyframes slide-in {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* nav bar end */


/* Hero start */

.hero {
    background: linear-gradient(135deg, #E8F6FF, #ffffff);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    flex-wrap: wrap;
    overflow-x: hidden;
}

.hero-content {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hero-content h1 {
    color: #2A5D84;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 1px 1px #B4D8F4;
}

.hero-content h2 {
    color: #4A6F94;
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-content a {
    background-color: #4A90E2;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-content a:hover {
    background-color: #2A5D84;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 30%; /* Adjusted width for a better image ratio */
    text-align: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 4px solid #eaecee; /* Added border for the image */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.hero-image img:hover {
    transform: scale(1.05);
}

.rozi-details {
    background-color: #ffffff;
    color: #2A5D84;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 1rem;
    border: 2px solid #4A90E2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.rozi-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.rozi-details p {
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .hero-content,
    .hero-image {
        width: 100%;
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 1rem;
        text-align: center;
    }

    .hero-content a {
        font-size: 1rem;
        padding: 10px 20px;
        margin: 10px auto;
    }

    .hero-image img {
        width: 100%;
        margin: 0 auto;
    }

    .rozi-details {
        font-size: 0.8rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 0.9rem;
    }

    .hero-content a {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .hero-image img {
        width: 100%;
    }
}

/* Hero end */

/*hero end */




/*about sec start */

/* General Styling */
.aboutus-section {
    min-height: 400px;
    background-color: #24243d; /* Solid background */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    font-family: "Gothic A1", sans-serif;
    box-sizing: border-box;
}

.aboutus-container {
    max-width: 1200px;
    width: 90%;
    padding: 40px;
    border-radius: 15px;
    box-sizing: border-box;
    background-color: #ffffff; /* Card background */
    color: #126796;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aboutus-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.aboutus-content {
    text-align: center;
}

.aboutus-content h1 {
    color: #126796;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.aboutus-content h2 {
    color: #3982d4;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.aboutus-content p {
    text-align: justify;
    font-size: 20px;
    line-height: 1.7;
    font-weight: bold;
    margin-bottom: 25px;
}

/* Mobile and Tablet Responsiveness */
@media (max-width: 768px) {
    .aboutus-container {
        padding: 30px;
    }

    .aboutus-content h1 {
        font-size: 28px;
    }

    .aboutus-content h2 {
        font-size: 24px;
    }

    .aboutus-content p {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .aboutus-container {
        padding: 20px;
    }

    .aboutus-content h1 {
        font-size: 24px;
    }

    .aboutus-content h2 {
        font-size: 22px;
    }

    .aboutus-content p {
        font-size: 14px;
        line-height: 1.4;
    }
}

/*about end*/


/* service section start*/

/* General Styling */
.services-section {
    text-align: center;
    background-color: #f5f5f5;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
}

.services-section h1 {
    color: #004C61;
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-in-out;
}

.services-section h2 {
    color: #004C61;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 500;
    animation: fadeInUp 1.5s ease-in-out;
}

.services-section a {
    color: #004C61;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 40px;
    display: inline-block;
    transition: color 0.3s ease, border-color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.services-section a:hover {
    color: #FF6F61;
    border-color: #FF6F61;
}

/* Service Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    margin: 0 auto;
    padding: 0 10px;
    animation: fadeInUp 1.7s ease-in-out;
}

/* Service Item */
.service-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    cursor: pointer;
    opacity: 0.9;
    position: relative;
}

.service-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    opacity: 1;
    background-color: #f7f7f7;
}

.service-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-item:hover img {
    transform: scale(1.05);
}

.service-item h2 {
    color: #004C61;
    font-size: 20px;
    margin: 15px 0;
    padding: 10px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: #fff;
    transition: color 0.3s ease;
}

.service-item:hover h2 {
    color: #FF6F61;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-section {
        padding: 60px 20px;
    }
    .services-grid {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .services-section h1 {
        font-size: 30px;
    }
    .services-section h2 {
        font-size: 20px;
    }
    .services-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 20px;
    }
    .service-item {
        max-width: 250px;
    }
}

@media (max-width: 600px) {
    .services-section {
        padding: 40px 20px;
    }
    .service-item {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 30px 10px;
    }
    .service-item {
        max-width: 100%;
    }
}

/*service section end*/


/* book start */

/* General section styling */
.book-section {
    background-color: #3f6f9b;
    padding: 60px 20px;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
}

/* Card Styling with Glassmorphism */
.book-card {
    display: inline-block;
    background: rgba(255, 255, 255, 0.7); /* Glass-like transparency */
    border-radius: 15px;
    padding: 35px;
    width: 320px;
    max-width: 100%;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.3s ease, filter 0.3s ease;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
    text-align: left;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px); /* Glass effect */
    animation: fadeInCard 0.8s ease-out;
}

.book-card:hover {
    transform: translateY(-10px) scale(1.05) rotate(1deg);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    border: 2px solid #3498db;
    filter: brightness(105%);
}

/* Heading Styling with Animated Color Transition */
.book-card h1 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease;
}

.book-card h1:hover {
    color: #2980b9; /* On hover, change to darker blue */
}

/* Price with Animated Transition */
.book-card .price {
    color: #3498db;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
    transition: color 0.3s ease, font-size 0.3s ease;
}

.book-card .price:hover {
    color: #2980b9;
    font-size: 30px;
}

/* Button with Gradient & Hover Animation */
.book-button {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: 2px solid #3498db;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
    margin-top: 25px;
    font-size: 18px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: pulse 1s infinite alternate; /* Micro interaction */
}

.book-button i {
    margin-right: 12px;
    transition: margin-right 0.3s ease;
}

.book-button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: white;
    border-color: #2980b9;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

/* Pulsing effect on button */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Animations */
@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .book-section {
        padding: 40px 20px;
    }

    .book-card {
        width: 90%;
        padding: 25px;
    }

    .book-card h1 {
        font-size: 30px;
    }

    .book-card h2 {
        font-size: 22px;
    }

    .book-card h3 {
        font-size: 20px;
    }

    .book-card .price {
        font-size: 26px;
    }

    .book-button {
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .book-section {
        padding: 30px 15px;
    }

    .book-card {
        padding: 20px;
        width: 100%;
    }

    .book-card h1 {
        font-size: 24px;
    }

    .book-card h2 {
        font-size: 20px;
    }

    .book-card h3 {
        font-size: 18px;
    }

    .book-card .price {
        font-size: 22px;
    }

    .book-button {
        font-size: 14px;
        padding: 8px 15px;
    }
}

/* unique section start */

.unique-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10vw;
    background-color: #eef2f3; /* Soft gray-blue */
    color: #1b2a41; /* Dark blue-gray for text */
    flex-wrap: wrap;
}

.unique-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.icon-item {
    width: calc(33.33% - 20px);
    background: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #1b2a41; /* Dark blue-gray hover */
}

.icon-item i {
    font-size: 40px;
    color: #56cfe1; /* Vibrant cyan */
    padding: 15px;
    border-radius: 50%;
    background-color: #dff6f8; /* Light cyan background */
    margin-bottom: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.icon-item:hover i {
    background-color: #56cfe1; /* Vibrant cyan */
    color: #ffffff; /* White */
    transform: scale(1.2);
}

.icon-item p {
    font-size: 16px;
    font-weight: 600;
    color: #1b2a41; /* Dark blue-gray */
    margin-top: 10px;
    transition: color 0.3s ease;
}

.icon-item:hover p {
    color: #ffffff; /* White */
}

.unique-image {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unique-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .unique-section {
        flex-direction: column;
        padding: 30px;
    }

    .unique-content, 
    .unique-image {
        width: 100%;
    }

    .icon-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .icon-item {
        width: 100%;
    }

    .icon-item i {
        font-size: 30px;
        padding: 12px;
    }

    .icon-item p {
        font-size: 14px;
    }
}

/* unique section end */


/* steps section start */

.steps-section {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f7f7f7;
    padding: 50px 20px;
}

.steps-section h1 {
    color: #1b2a41;
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: bold;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.icon-container {
    background-color: #56cfe1;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: white;
    margin-bottom: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.icon-container:hover {
    background-color:#1c7097;
    color: #ffffff;
}

.step p {
    color: #333;
    font-size: 16px;
    text-align: center;
    margin: 5px 0;
}

.step p:nth-child(2) {
    font-size: 28px;
    font-weight: bold;
    color: #56cfe1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .steps-container {
        gap: 40px;
    }

    .steps-section h1 {
        font-size: 32px;
    }

    .step p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .steps-container {
        gap: 20px;
    }

    .steps-section h1 {
        font-size: 28px;
    }

    .step p {
        font-size: 14px;
    }

    .icon-container {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}

/* steps section end*/



/* contact start */

/* Styling the Contact Section */
.contact-section {
    text-align: center;
    background-color: #f9f9f9; /* Very light gray */
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
}

.contact-section h1 {
    font-size: 36px;
    color: #222; /* Dark gray for contrast */
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.contact-section h2 {
    font-size: 24px;
    color: #56cfe1; /* Primary accent color */
    margin-bottom: 40px;
}

/* Contact Container */
.contact-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Contact Cards */
.contact-card {
    background-color: #ffffff; /* White background */
    width: 300px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: #444;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.contact-card i {
    font-size: 40px;
    color: #56cfe1; /* Accent color for icons */
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 22px;
    color: #222; /* Darker text for contrast */
    margin-bottom: 10px;
}

/* Contact Button */
.contact-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #56cfe1, #4fb6cf);
    color: #fff; /* Ensure text color is white for good contrast */
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px; /* Adjust for readability */
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
    text-align: center;
}

.contact-button:hover {
    background: linear-gradient(135deg, #4fb6cf, #56cfe1); /* Reverse gradient on hover */
    color: #fff; /* Keep the text color consistent */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Stack cards vertically */
        align-items: center; /* Center the cards */
        gap: 20px;
    }

    .contact-card {
        width: 90%; /* Adjust width to maintain a centered look */
        max-width: 350px; /* Prevent cards from becoming too wide */
    }
}

@media (max-width: 480px) {
    .contact-card {
        width: 95%; /* Take most of the screen while staying centered */
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .contact-section h1 {
        font-size: 28px; /* Scale down headings */
    }

    .contact-section h2 {
        font-size: 20px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-button {
        font-size: 14px; /* Slightly smaller buttons */
    }
}

/* contact end */



    /* contact form start */

        /* Contact Form Section */
        .contact-form-section {
            background: linear-gradient(135deg, #1f2a44, #232931); /* Deep Blue to Black Gradient */
            color: white;
            padding: 60px 20px;
            margin: 20px 0;
            font-family: 'Arial', sans-serif;
            border-radius: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeIn 1s ease-in-out;
        }
    
        /* Container for the form */
        .contact-form-section .container {
            max-width: 850px;
            width: 100%;
            margin: 0 auto;
            padding: 35px;
            background-color: #ffffff; /* Clean white background */
            border-radius: 15px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
    
        /* Hover effect for container */
        .contact-form-section .container:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
    
        /* Heading */
        .contact-form-section h1 {
            color: #0f4c75; /* Deep blue */
            font-size: 36px;
            margin-bottom: 20px;
            text-align: center;
        }
    
        /* Description Text */
        .contact-form-section p {
            color: #495057; /* Muted dark gray */
            font-size: 18px;
            margin-bottom: 30px;
            text-align: center;
        }
    
        /* Form Group */
        .form-group {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            gap: 15px;
        }
    
        /* Input Fields */
        .form-group input[type="text"],
        .form-group input[type="email"],
        textarea {
            width: 48%;
            padding: 14px;
            margin: 5px 0;
            border: 1px solid #ccc;
            border-radius: 10px;
            background-color: #f4f4f4;
            color: #333;
            transition: all 0.3s ease;
            font-size: 16px;
        }
    
        .form-group input[type="text"]:focus,
        .form-group input[type="email"]:focus,
        textarea:focus {
            border-color: #0f4c75; /* Blue focus color */
            outline: none;
            box-shadow: 0 0 8px rgba(15, 76, 117, 0.5);
            background-color: #ffffff;
        }
    
        /* Textarea */
        textarea {
            width: 100%;
            height: 120px;
            resize: none;
            padding: 15px;
            font-size: 16px;
        }
    
        /* Submit Button */
        .button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #0f4c75, #1f2a44);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 18px;
            border-radius: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 12px rgba(15, 76, 117, 0.4);
        }
    
        .button:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(15, 76, 117, 0.5);
            background: linear-gradient(135deg, #1f2a44, #0f4c75); /* Reverse gradient */
        }
    
        /* Media Queries for Responsiveness */
        @media (max-width: 768px) {
            .form-group {
                flex-direction: column;
            }
    
            .form-group input[type="text"],
            .form-group input[type="email"],
            textarea {
                width: 100%;
            }
    
            .button {
                padding: 15px 20px;
            }
        }
    
        /* Keyframe Animation */
        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        /* contact form end */
        
        
        /* footer start */
footer {
    background: linear-gradient(to right, #f0f7ff, #d9eaff); /* Soft gradient background */
    color: #1a73e8; /* Blue text color */
    padding: 30px 15px;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo h1 {
    font-size: 34px;
    margin: 0;
    font-weight: 600;
    color: #1a73e8;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.footer-logo h1:hover {
    color: #0057b8; /* Darker blue on hover */
}

.footer-logo p {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
    font-weight: 400;
}

.footer-nav {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-nav a {
    padding: 12px 25px;
    font-size: 16px;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease, transform 0.3s ease;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #fff;
    border: 1px solid #1a73e8;
    background-color: #1a73e8;
    transform: scale(1.05); /* Slight scale effect on hover */
}

.footer-social {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-social a {
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    background-color: #1a73e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease, transform 0.3s ease;
    color: #fff;
    font-size: 20px;
}

.footer-social a:hover {
    background-color: #fff;
    transform: scale(1.2);
    color: #1a73e8;
}

.footer-bottom {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.footer-bottom a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* Developer Info */
.developer-info {
    margin-top: 30px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.developer-info p {
    margin: 5px 0; /* Add a bit of spacing between the lines */
}

/* LinkedIn Icon */
.developer-info a {
    display: inline-flex; /* Using inline-flex for centering */
    text-decoration: none;
    width: 20px; /* Reduced width for smaller icon */
    height: 20px; /* Reduced height for smaller icon */
    background-color: #1a73e8;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease, transform 0.3s ease;
    color: #fff;
    font-size: 14px; /* Smaller icon size to match text */
    margin-top: 5px; /* Small margin to separate from text */
    margin-right: 10px; /* Space between LinkedIn and GitHub icons */
}

.developer-info a:hover {
    background-color: #fff;
    transform: scale(1.2);
    color: #1a73e8;
}

/* GitHub Icon */
.developer-info a.github-icon {
    background-color: #333; /* GitHub's dark background color */
}

.developer-info a.github-icon:hover {
    background-color: #fff;
    color: #333; /* GitHub color on hover */
}



/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px #999;
    z-index: 1000;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        padding: 15px;
    }

    .footer-logo h1 {
        font-size: 28px;
    }

    .footer-nav a {
        font-size: 14px;
        padding: 8px 18px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .developer-info {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }

    .footer-nav a {
        width: 100%;
        box-sizing: border-box;
    }
}

/* footer end */

