@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 Section Styling */
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #f0f8ff; /* Light blue */
        padding: 4% 5%;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
        border-radius: 15px;
        margin: 20px auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
        text-align: center;
        max-width: 1200px; /* Centered container */
    }
    
    /* Hero Content Styling */
    .hero-content {
        background-color: #ffffff; /* White card background */
        border: 2px solid #d1e7f7; /* Light blue border */
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1); /* Card effect */
        animation: fadeIn 1s ease-in-out;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        max-width: 800px; /* Limit content width for better readability */
        text-align: center;
    }
    
    .hero-content:hover {
        transform: translateY(-10px); /* Lift effect */
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Elevated shadow */
    }
    
    .hero-content h1 {
        color: #094067; /* Dark blue */
        font-family: 'Poppins', sans-serif;
        font-size: 3rem; /* Larger heading */
        margin-bottom: 20px;
    }
    
    .hero-content h3 {
        color: #3d5a80; /* Slightly lighter blue */
        font-size: 1.8rem; /* Larger subheading */
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-content p {
        color: #5a7184; /* Muted blue-gray for additional text */
        font-size: 1.2rem;
        margin-bottom: 30px;
        line-height: 1.6;
        transition: color 0.3s ease;
    }
    
    .hero-content p:hover {
        color: #000000; /* Black on hover */
    }
    
    /* Call to Action Button */
    .hero-content a {
        background-color: #1b95e0; /* Vibrant blue button */
        color: white;
        padding: 15px 35px;
        border: none;
        text-decoration: none;
        border-radius: 5px;
        font-size: 1.2rem;
        font-weight: bold;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        display: inline-block;
        text-align: center;
        transition: background-color 0.3s, transform 0.3s ease, box-shadow 0.3s;
    }
    
    .hero-content a:hover {
        background-color: #61c0f6; /* Lighter blue on hover */
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    /* Hero Icons Section */
    .hero-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    
    .hero-icon {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #3d5a80;
        font-size: 1rem;
        background-color: #ffffff;
        border: 1px solid #d1e7f7;
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s;
    }
    
    .hero-icon:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        background-color: #f9fbfd; /* Slightly lighter background */
    }
    
    .hero-icon i {
        font-size: 1.5rem;
        color: #1b95e0; /* Vibrant blue for icons */
    }
    
    /* Hero Image Styling */
    .hero-image {
        text-align: center;
        animation: fadeIn 1.5s ease-in-out;
        margin-top: 30px;
    }
    
    .hero-image img {
        max-width: 60%;
        height: auto;
        transition: transform 0.5s ease;
        border-radius: 15px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hero-image img:hover {
        transform: scale(1.05); /* Zoom effect */
    }
    
    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2.5rem;
        }
    
        .hero-content h3 {
            font-size: 1.5rem;
        }
    
        .hero-content p {
            font-size: 1rem;
        }
    
        .hero-image img {
            max-width: 80%;
        }
    
        .hero-icons {
            gap: 15px;
        }
    }
    
    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 2rem;
        }
    
        .hero-content h3 {
            font-size: 1.2rem;
        }
    
        .hero-content p {
            font-size: 0.9rem;
        }
    }

    /* hero end */


    /* book start */

    
    .card-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 60px 20px;
        flex-wrap: wrap;
    }

    /* Card Styling */
    .card {
        background: linear-gradient(145deg, #ffffff, #e8f0fa); /* Subtle gradient */
        border: 1px solid #d0e0f0;
        border-radius: 16px;
        width: 380px;
        padding: 30px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    }

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        background: linear-gradient(145deg, #e8f4fc, #ffffff);
    }

    /* Title Styling */
    .card-title {
        font-size: 26px;
        font-weight: bold;
        color: #126796; /* Dark blue */
        margin-bottom: 15px;
    }

    /* Paragraph Styling */
    .card p {
        font-size: 18px;
        color: #555; /* Neutral gray */
        margin: 10px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: color 0.3s ease-in-out;
    }

    .card p i {
        font-size: 22px;
        color: #126796; /* Dark blue */
    }

    .card:hover p {
        color: #000; /* Black text on hover */
    }

    /* Divider Styling */
    .divider {
        width: 80%;
        height: 1px;
        background-color: #d0e0f0;
        margin: 15px auto;
    }

    /* Button Styling */
    .price-button {
        background-color: #126796; /* Dark blue */
        color: white;
        font-size: 18px;
        padding: 12px 30px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: bold;
        margin-top: 20px;
        transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }

    .price-button:hover {
        background-color: #61c0f6; /* Light blue */
        transform: scale(1.05);
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .card-container {
            gap: 20px;
        }

        .card {
            width: 80%;
        }
    }

    @media (max-width: 768px) {
        .card-container {
            flex-direction: column;
            align-items: center;
        }

        .card {
            width: 90%;
        }
    }

    @media (max-width: 480px) {
        .card-container {
            padding: 20px;
        }

        .card {
            width: 100%;
        }

        .card p i {
            font-size: 20px;
        }
    }

    /* book end */


    
        /* our team start*/
  
        /* Wrapper Styling */
        .team-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            background: linear-gradient(135deg, #f0f8ff, #e0f7fa);
            padding: 60px 20px;
            animation: backgroundAnim 3s ease-in-out infinite alternate;
        }
    
        /* Background Animation */
        @keyframes backgroundAnim {
            0% { background: linear-gradient(135deg, #f0f8ff, #e0f7fa); }
            100% { background: linear-gradient(135deg, #e0f7fa, #f0f8ff); }
        }
    
        .team-title {
            width: 100%;
            text-align: center;
            margin-bottom: 40px;
        }
    
        .team-title h1 {
            font-size: 36px;
            color: #126796;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            position: relative;
            animation: fadeIn 1s ease-out;
        }
    
        .team-title h1::after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background-color: #126796;
            margin: 10px auto 0;
            border-radius: 2px;
        }
    
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    
        /* Card Styling using Flexbox */
        .team {
            box-sizing: border-box;
            width: 320px;
            height: 500px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            margin: 20px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            border: 2px solid transparent;
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px;
            position: relative;
            animation: slideUp 1s ease-out;
            background: linear-gradient(135deg, #ffffff, #f7f7f7);
        }
    
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    
        .team:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
            border-color: #126796;
            background-color: #f0f8ff;
        }
    
        /* Image Styling */
        .team img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
            transition: transform 0.3s ease-out;
        }
    
        .team:hover img {
            transform: scale(1.05);
        }
    
        /* Text Styling */
        .team h1 {
            font-size: 20px;
            font-weight: bold;
            color: #126796;
            margin-bottom: 8px;
            transition: color 0.3s ease-out;
        }
    
        .team h2 {
            font-size: 16px;
            font-weight: 600;
            color: #000;
            margin-bottom: 12px;
            transition: color 0.3s ease-out;
        }
    
        /* Description Styling */
        .team p {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            padding: 0 10px;
            transition: color 0.3s ease-out;
        }
    
        .team p:hover {
            color: #126796; /* Change to blue or black on hover */
        }
    
        /* Hover Animation Effects */
        .team:hover h1 {
            color: #003f5c;
        }
    
        .team:hover h2 {
            color: #333;
        }
    
        /* Adding icons to each team member */
        .team .icon {
            font-size: 24px;
            color: #126796;
            margin-top: 10px;
            transition: color 0.3s ease-out;
        }
    
        .team:hover .icon {
            color: #003f5c;
        }
    
        /* Commenting out social links */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
    
        .social-links a {
            font-size: 20px;
            color: #126796;
            transition: color 0.3s ease-out;
        }
    
        .social-links a:hover {
            color: #003f5c;
        }
    
        /* Flexbox Layout for cards */
        @media (max-width: 768px) {
            .team-wrapper {
                flex-direction: column;
                align-items: center;
            }
    
            .team {
                width: 90%;
                height: auto;
            }
    
            .team img {
                height: auto;
            }
        }
        

        /* our team end*/


        /* feature start */

            /* Base styles for the section and cards */
    .features {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 50px;
        box-sizing: border-box;
        background-color: #f4f7fa; /* Soft grey background */
        margin-top: 40px;
    }

    .feature-card {
        background-color: white;
        border: 1px solid #126796; /* Deep blue border */
        border-radius: 15px;
        padding: 30px 25px;
        margin: 20px;
        width: calc(25% - 40px); /* Four cards in a row */
        box-sizing: border-box;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); /* Soft shadow for smooth feel */
    }

    /* Icon styles */
    .feature-card .icon {
        font-size: 48px;
        color: #126796; /* Deep blue for icons */
        margin-bottom: 20px;
        transition: color 0.3s ease;
    }

    .feature-card p {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        transition: color 0.3s ease;
        margin-bottom: 15px;
    }

    .feature-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: #126796;
        border-radius: 10px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    /* Hover effect for cards */
    .feature-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: #003f5c; /* Darker blue border on hover */
    }

    .feature-card:hover .icon {
        color: #003f5c; /* Darker blue icon on hover */
    }

    .feature-card:hover p {
        color: #003f5c; /* Darker text color on hover */
    }

    .feature-card:hover::after {
        opacity: 1;
    }

    /* Media queries for responsiveness */
    @media (max-width: 768px) {
        .feature-card {
            width: calc(50% - 30px); /* Two cards per row on medium screens */
        }
    }

    @media (max-width: 480px) {
        .feature-card {
            width: 100%; /* One card per row on very small screens */
        }
    }

    /* feature 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;
    width: 45px;
    height: 45px;
    background-color: #1a73e8;
    text-decoration: none;
    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 */

