* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --accent: #ff4444;
}

/* body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
} */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    /* background: rgba(255, 255, 255, 0.05); */
      background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
     /* background: linear-gradient(135deg, rgba(32, 201, 151, 0.5),rgba(0, 123, 255, 0.7)); */
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-text {
    display: flex;
    align-items: center;
}

.logo-text img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    /* filter: brightness(0) invert(1); */
}

.header.scrolled .logo-text img {
    filter: brightness(1) invert(0);
}

.header.scrolled .logo-main {
    color: #1a202c;
}

.header.scrolled .logo-sub {
    color: #64748b;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.header.scrolled .nav-menu a {
    color: #1a202c;
}

.nav-menu a:hover {
    color: #3B82F6;
}

.nav-menu i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: #1a202c !important;
    padding: 12px 20px;
    display: block;
    font-size: 14px;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #3B82F6 !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.header.scrolled .hamburger-line {
    background: #1a202c;
}


@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 10px;
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-menu a {
        color: #1a202c;
        width: 100%;
    }

    .dropdown .dropdown-menu {
        display: none;
        flex-direction: column;
        background: #f9fafb;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        padding: 8px 0;
    }

    .dropdown.dropdown-open .dropdown-menu {
        display: flex;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        z-index: 1001;
    }

    .hamburger-line {
        width: 25px;
        height: 3px;
      background: black;
        transition: all 0.3s ease;
    }

    .header.scrolled .hamburger-line {
        background: #1a202c;
    }

    .hamburger.open .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 4rem;
    color:rgb(223, 71, 25);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    margin-bottom: 1rem;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: 1rem;
    color:rgb(216, 226, 80);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #fff;
}

.feature-icon {
    font-size: 0.5rem;
}

.cta-button {
    background-color: var(--black);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.cta-button:hover {
    background-color: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* 
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.communication-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.phone-unit {
    width: 120px;
    height: 80px;
    background-color: var(--gray-900);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--gray-300);
}

.phone-unit::before {
    content: '📞';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    opacity: 0.7;
}

.phone-unit::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    background-color: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.monitoring-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
} */
.hero-visual-video {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Fullscreen height */
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
}

.service-card:hover {
    filter: grayscale(0%);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--black);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.icon-circle svg {
    width: 24px;
    height: 24px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: bold;
}

/* Features Section */
.features-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
     /* background: linear-gradient(135deg, rgb(149, 166, 216), rgb(237, 164, 237)); */
     background: rgb(231, 231, 243);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: black;
    text-align: center;
}

.features-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.features-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-type {
    padding: 2rem;
    background: #74a4f0;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.779);
    transition: transform 0.3s ease;
}

.feature-type:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-type h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    
}

.feature-type p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.features-button {
    background-color: var(--white);
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.features-button:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Brands Section */
.brands-section {
   background-color: rgb(217, 247, 247);
    padding: 50px 20px;
}

.brands-section h3 {
    text-align: center;
    color: #001e6c;
    font-size: 2rem;
    margin-bottom: 30px;
}

.brands-section h3::after {
    content: '';
    display: block;
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #004d99, #339dff);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* Slider Styling */
.brand-slider {
    overflow: hidden;
    position: relative;
    /* Adding padding to prevent names from being cut off at edges if they are too close */
    padding: 20px 0;
}

.slide-track {
    display: flex;
    /* Adjusting width based on the new slide width (image + name) */
    width: calc(200px * 20); /* Each slide will be around 200px wide, including padding/margins */
    animation: scroll 60s linear infinite; /* Slower animation: 60s instead of 40s */
}

.slide {
    width: 200px; /* Adjusted width to better fit image and text */
    /* Removed fixed height to allow content to dictate height */
    display: flex;
    flex-direction: column; /* Stack image and name vertically */
    align-items: center; /* Center content horizontally */
    justify-content: center;
    padding: 10px;
    box-sizing: border-box; /* Include padding in the width calculation */
    text-align: center; /* Center the text */
}

.slide img {
    max-width: 100%; /* Ensure image doesn't overflow */
    height: 180px; /* Set a fixed height for images to keep them consistent */
    object-fit: contain;
    /* filter: grayscale(100%); Keep grayscale */
    transition: filter 0.3s;
    margin-bottom: 10px; /* Space between image and name */
}

.slide img:hover {
    filter: grayscale(0%);
}

/* Brand Name below Image */
.brand-name {
    color: #001e6c; /* Dark blue for brand names */
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap; /* Prevent brand names from wrapping if they are long */
    overflow: hidden; /* Hide overflow if text is too long (though white-space nowrap handles most of this) */
    text-overflow: ellipsis; /* Add ellipsis if text is cut off */
}

/* Animation - Adjusted for new slide width and slower speed */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 10)); /* Adjust based on new slide width */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide {
        width: 150px; /* Adjusted for smaller screens */
    }

    .slide img {
        height: 80px; /* Smaller image height */
    }

    .brand-name {
        font-size: 0.9rem;
    }

    .slide-track {
        width: calc(150px * 20);
        animation: scroll 45s linear infinite; /* Adjust animation speed */
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 10));
        }
    }
}

@media (max-width: 480px) {
    .slide {
        width: 120px; /* Further adjusted for very small screens */
    }

    .slide img {
        height: 60px; /* Even smaller image height */
    }

    .brand-name {
        font-size: 0.5rem;
    }

    .slide-track {
        width: calc(120px * 20);
        animation: scroll 35s linear infinite; /* Adjust animation speed */
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 10));
        }
    }

    .brands-section h3 {
        font-size: 1.5rem;
    }
}
/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--gray-100);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.about-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.communication-dashboard {
    width: 300px;
    height: 200px;
    background-color: var(--gray-900);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dashboard-header {
    background-color: var(--gray-800);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-600);
}

.dashboard-dots span:nth-child(1) {
    background-color: #ff5f56;
}

.dashboard-dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.dashboard-dots span:nth-child(3) {
    background-color: #27ca3f;
}

.dashboard-title {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.dashboard-content {
    padding: 1rem;
}

.line-status {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.8rem;
}

.status-item .status-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff00;
    border-radius: 50%;
}

.status-item .status-dot.offline {
    background-color: #ff4444;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.contact-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--gray-700);
}

.contact-icon {
    font-size: 1.2rem;
}

.service-areas {
    margin-top: 2rem;
}

.service-areas h4 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-areas p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-form {
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--black);
}

.submit-button {
    background-color: var(--black);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: black;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    } */

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: space-around;
    }

    .features-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        margin-top: 200px;
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-visual {
        display: none;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Footer */
.footer {
  /* background-image: linear-gradient(to right, rgb(129, 197, 243), #96f6ce); */
  background: linear-gradient(135deg, rgba(32, 201, 151),rgba(0, 123, 255)); /* Primary blue to teal gradient */
    color: rgb(3, 3, 143);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color:black;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgb(65, 65, 231);
    transform: translateY(-2px);
}

.WhatsApp:hover{
     background: #52ec7d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: black;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.footer-section span{
    padding-left: 10px;
}