* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a202c;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    display: flex;
    gap: 8px;
}

.loader-bar {
    width: 4px;
    height: 40px;
    background: #3B82F6;
    border-radius: 2px;
    animation: loader 1.2s infinite ease-in-out;
}

.loader-bar:nth-child(2) {
    animation-delay: -1.1s;
}

.loader-bar:nth-child(3) {
    animation-delay: -1.0s;
}

@keyframes loader {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
    }
}

/* Video Background */
.full-video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #1e40af 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* 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-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    /* filter: brightness(0) invert(1); */
}

.header.scrolled .logo-image {
    filter: brightness(1) invert(0);
}

/* 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;
}
.nav-menu a:hover{
    color: #1DA1F2;
}
.header.scrolled .nav-menu a{
    color: #1a202c;
}

/* Dropdown Menu */
.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;
    list-style: none;
}

.nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.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: rgba(95, 159, 226, 0.95);
        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-video {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
    padding: 80px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: center;
    margin-top: 7rem;
    color: white;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #60A5FA;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-left: 50%;
    margin-bottom: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Common Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: #f0f9ff;
    color: #0284c7;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Who We Are Section */
.who-we-are {
    background: white;
    padding: 100px 0;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.text-content {
    max-width: 100%;
}

.lead-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.experience-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3B82F6;
}

.experience-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3B82F6;
}

.experience-text h3 {
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 4px;
}

.experience-text p {
    color: #64748b;
    font-size: 14px;
}

.services-list {
    display: grid;
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.service-item span {
    font-weight: 500;
    color: #1a202c;
}
.section-content {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 20px 0;
}

/* Text Content */
.text-content {
    width: 100%;
    margin-bottom: 30px;
}

/* Image Content */
.image-content {
    width: 100%;
    margin-top: 20px;
}

.about-image-container {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
}

.overlay-content {
    text-align: center;
}

.overlay-stat {
    display: inline-block;
    margin: 10px;
}

.overlay-number {
    font-size: 20px;
    font-weight: bold;
    color: lightblue;
}

.overlay-label {
    font-size: 14px;
}

/* Image Features */
.image-features {
    text-align: center;
    margin-top: 10px;
}

.feature-badge {
    display: inline-block;
    background: #fff;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid #ccc;
}

.feature-badge i {
    margin-right: 5px;
    color: blue;
}

/* Lead Text */
.lead-text {
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .section-content {
        padding: 10px;
    }

    .about-image {
        width: 100%;
    }

    .overlay-number {
        font-size: 18px;
    }

    .image-features {
        text-align: center;
    }

    .feature-badge {
        font-size: 13px;
    }
}

/* Visual Content */
.visual-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.brand-showcase {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.brand-showcase h4 {
    text-align: center;
    margin-bottom: 24px;
    color: #1a202c;
    font-size: 1.1rem;
}

.brand-carousel {
    overflow: hidden;
    position: relative;
}

.brand-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.brand-item {
    flex: 0 0 100px;
    text-align: center;
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-item img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
}

.brand-item span {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision {
    background: #f8fafc;
    padding: 100px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mission-card .mv-icon {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
}

.vision-card .mv-icon {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.mv-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Differentiators Section */
.differentiators {
    background: rgb(245, 243, 243);
    padding: 100px 0;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.diff-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f1f5f9;
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.diff-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #F97316, #FB923C);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.diff-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.diff-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Who We Serve Section */
.who-we-serve {
    background: #f4f7fa;
    padding: 100px 0;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.serve-card {
    background: white;
    padding: 32px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f1f5f9;
}

.serve-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.serve-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
}

.serve-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #bcdcea 0%, #d1d0e8 50%, #c8cee1 100%);
    padding: 80px 0;
    text-align: center;
    color: black;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-buttons{
    text-align: center;
}
.hero-buttons a{
    margin-right: 20px;
}
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    /* text-align: center; */
}

.btn-primary {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
}

.btn-primary:hover {
    background: #2563EB;
    border-color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: #3B82F6;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    /* background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5); */
     background: #2563EB;
    border-color: #2563EB;
    transform: translateY(-2px);
}

/* 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);
    }
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    .nav-menu a {
        color: #1a202c !important;
        padding: 16px 20px;
        width: 100%;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin-top: 8px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .logo-image {
        height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-video {
        padding: 60px 0;
    }

    .section {
        padding: 60px 0;
    }

    .serve-grid {
        grid-template-columns: 1fr;
    }

    .logo-image {
        height: 35px;
        max-width: 120px;
    }
}
.footer-section span{
    padding-left: 10px;
}