        :root {
            --primary: #2148b1;
            --secondary: #00e676;
            --accent: #ff6b6b;
            --light: #f8f9ff;
            --dark: #0a0f2b;
            --gray: #6c757d;
            --light-bg: #ffffff;
            --card-bg: #f8f9ff;
            --shadow: 0 10px 30px rgba(33, 72, 177, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--light-bg);
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
        }
        .mt_0{
                margin: 0px 0 !important;

        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0 0px 0px;
        }
        .pt_20{
            padding:20px 0px 20px 0px;
        }
        /* Header Styles */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 5px 0;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(10px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            box-shadow: var(--shadow);
        }

        .logo-text {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
        }

        .logo-text span {
            color: var(--secondary);
        }
        .logo img{
            width: 200px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 17px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #faa21a;
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a:hover:after {
            width: 100%;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary), #3a6bf0);
            color: white;
            border: none;
            padding: 14px 32px;
            /*border-radius: 30px;*/
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: var(--shadow);
            font-size: 16px;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .cta-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary), #00c853);
            transition: width 0.5s ease;
            z-index: -1;
        }

        .cta-button:hover:before {
            width: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(33, 72, 177, 0.3);
        }

      
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            color: var(--secondary);
            margin-bottom: 30px;
            font-size: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .footer-links a i {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float-left {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(-20px);
            }
        }
        
        .float-left {
            animation: float-left 8s ease-in-out infinite;
        }
        
        @keyframes float-right {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(20px);
            }
        }
        
        .float-right {
            animation: float-right 8s ease-in-out infinite;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content, .about-content, .contact-container, .app-container {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            nav ul {
                gap: 20px;
            }
            
            .app-images {
                margin-top: 40px;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.3rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            nav ul {
                display: none;
            }
            
            .app-badges {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .app-badges img {
                width: 180px;
                height: auto;
            }
        }



  
/* carusel  */
/* Carousel Styles */
.custom-carousel {
    position: relative;
    max-height: 600px;
    overflow: hidden;
    width: 100%;
    margin: var(--header-height, 80px) auto 20px; /* Space for fixed header */
}

.carousel-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.carousel-item {
    flex: 0 0 100%;
    position: relative;
    min-height: 600px;
    display: none;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 162, 26, 0.4), rgba(0, 0, 0, 0.3));
    z-index: 1;
    transition: background 0.6s ease;
}

.carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 10%;
    z-index: 2;
    text-align: left;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 30px;
    border-radius: 12px;
    max-width: 500px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.carousel-item.active .carousel-caption {
    transform: translateY(0);
    opacity: 1;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    color: #faa21a;
}

.carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.carousel-caption .btn {
    background: #faa21a;
    color: #000000;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.carousel-caption .btn:hover {
    background: #e09000; /* Darker logo orange */
    color: #000000;
    transform: scale(1.05);
}

.custom-carousel-control-prev,
.custom-carousel-control-next {
    position: absolute;
    top: calc(50% + var(--header-height, 80px)); /* Center, account for header */
    transform: translateY(-50%);
    background: #000000; /* Logo black */
    color: #faa21a; /* Logo orange */
    font-size: 2rem;
    padding: 0; /* Remove padding to simplify centering */
    cursor: pointer;
    z-index: 10; /* Below header (z-index: 1000) */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    border: 2px solid #faa21a; /* Logo orange border */
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
}

.custom-carousel-control-prev:hover,
.custom-carousel-control-next:hover {
    background: #faa21a; /* Logo orange */
    color: #000000; /* Logo black */
    border-color: #000000; /* Black border on hover */
    opacity: 1;
    transform: scale(1.12); /* Slightly larger scale */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* Enhanced shadow */
}

.custom-carousel-control-prev {
    left: 20px;
}

.custom-carousel-control-next {
    right: 20px;
}

.custom-carousel-control-prev span,
.custom-carousel-control-next span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1; /* Normalize line-height for arrows */
    font-size: inherit; /* Inherit from button */
    text-align: center; /* Ensure text centering */
    margin: 0; /* Remove any default margins */
    margin-bottom: 5px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #faa21a;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-indicators button.active {
    background: #faa21a;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-carousel,
    .carousel-item {
        max-height: 400px;
        min-height: 400px;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-caption {
        padding: 15px 20px;
        max-width: 90%;
        left: 5%;
    }

    .custom-carousel-control-prev,
    .custom-carousel-control-next {
        top: calc(50% + var(--header-height, 80px));
        width: 42px;
        height: 42px;
        font-size: 1.8rem;
        border: 1.5px solid #faa21a;
    }

    .custom-carousel-control-prev span,
    .custom-carousel-control-next span {
        line-height: 1;
    }
}

@media (max-width: 576px) {
    .custom-carousel,
    .carousel-item {
        max-height: 300px;
        min-height: 300px;
    }

    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.875rem;
    }

    .carousel-caption {
        padding: 10px 15px;
        bottom: 15%;
    }

    .custom-carousel-control-prev,
    .custom-carousel-control-next {
        top: calc(50% + var(--header-height, 80px));
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
        border: 1px solid #faa21a;
    }

    .custom-carousel-control-prev span,
    .custom-carousel-control-next span {
        line-height: 1;
    }
}

/* mission  */

/* Mission Section */
.mission-section {
    padding: 40px 0;
    background: var(--light-bg, #ffffff);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.title-icon {
    font-size: 2.5rem;
    color: #faa21a; /* Logo orange */
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #000000; /* Logo black */
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark, #0a0f2b);
    margin: 0;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #faa21a, var(--secondary, #00e676));
    margin: 15px auto 0;
    border-radius: 2px;
}

.mission-content {
    text-align: center;
    margin-bottom: 50px;
}

.mission-text {
    font-size: 1.25rem;
    color: var(--dark, #0a0f2b);
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.8;
}

.mission-text strong {
    color: var(--primary, #2148b1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.value-item {
    background: var(--card-bg, #f8f9ff);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(250, 162, 26, 0.2); /* Subtle logo orange border */
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2rem;
    color: #faa21a; /* Logo orange */
    background: #000000; /* Logo black */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--dark, #0a0f2b);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 1rem;
    color: var(--gray, #6c757d);
    margin: 0;
}

/* Animation for value items */
.animate {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate[data-animate-delay="200ms"] {
    animation-delay: 200ms;
}

.animate[data-animate-delay="400ms"] {
    animation-delay: 400ms;
}

.animate[data-animate-delay="600ms"] {
    animation-delay: 600ms;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

    .subtitle {
        font-size: 1.75rem;
    }

    .mission-text {
        font-size: 1.1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .mission-section {
        padding: 40px 0;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .title-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .mission-text {
        font-size: 1rem;
    }
}


/* Portfolio Section */
.portfolio-section {
    padding: 60px 0; /* Compact, consistent with mission section */
    background: #ffffff url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" opacity="0.05"%3E%3Crect x="30" y="30" width="20" height="10" rx="5" fill="%23faa21a"/%3E%3C/svg%3E') repeat;
    position: relative;
    overflow: hidden;
}

.portfolio-header {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.portfolio-title {
    font-size: 2rem;
    font-weight: 700;
    color: #faa21a; /* Logo orange */
    margin: 0;
    display: inline-block;
}

.portfolio-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #faa21a, var(--secondary, #00e676));
    border-radius: 20px;
    margin-top: 10px;
}

.portfolio-content {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.portfolio-text {
    font-size: 1.1rem;
    color: #000000; /* Logo black */
    max-width: 600px; /* Compact */
    line-height: 1.6;
}

.portfolio-carousel {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.portfolio-items {
    display: flex;
    flex-wrap: nowrap; /* Ensure horizontal scrolling */
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    padding: 10px 0;
    width: max-content; /* Allow items to extend beyond container */
}

.portfolio-item {
    flex: 0 0 280px; /* Fixed width for cards */
    background: linear-gradient(135deg, #ffffff, rgba(250, 162, 26, 0.2)); /* Tablet-inspired gradient */
    padding: 20px;
    border-radius: 25px; /* Pill-like shape */
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"%3E%3Crect x="7" y="7" width="6" height="3" rx="1.5" fill="%23faa21a" opacity="0.1"/%3E%3C/svg%3E');
    background-repeat: repeat;
    z-index: -1;
}

.portfolio-item:hover {
    transform: translateY(-3px) scale(1.05); /* Tablet "pop" effect */
    box-shadow: 0 4px 15px rgba(250, 162, 26, 0.3); /* Logo orange shadow */
}

.portfolio-icon {
    font-size: 1.8rem;
    color: #000000; /* Logo black */
    background: #faa21a; /* Logo orange */
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); /* Hexagon */
    margin: 0 auto 12px;
}

.portfolio-item h3 {
    font-size: 1.3rem;
    color: #000000; /* Logo black */
    margin-bottom: 8px;
}

.portfolio-item p {
    font-size: 0.9rem;
    color: var(--gray, #6c757d);
    margin: 0;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #faa21a; /* Logo orange */
    color: #000000; /* Logo black */
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.carousel-control:hover {
    background: #000000; /* Logo black */
    color: #faa21a; /* Logo orange */
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 10px; /* Moved inside container for visibility */
}

.carousel-control.next {
    right: 10px;
}

.carousel-control i {
    font-size: 1.2rem;
}

/* Animation for portfolio items */
.animate {
    opacity: 0;
    transform: translateX(20px); /* Slide in from right */
    animation: fadeInRight 0.6s ease forwards;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate[data-animate-delay="200ms"] { animation-delay: 200ms; }
.animate[data-animate-delay="400ms"] { animation-delay: 400ms; }
.animate[data-animate-delay="600ms"] { animation-delay: 600ms; }
.animate[data-animate-delay="800ms"] { animation-delay: 800ms; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .carousel-control.prev {
        left: 5px;
    }

    .carousel-control.next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 40px 0;
    }

    .portfolio-title {
        font-size: 1.75rem;
    }

    .portfolio-text {
        font-size: 1rem;
        max-width: 100%;
    }

    .portfolio-items {
        gap: 15px;
    }

    .portfolio-item {
        flex: 0 0 250px;
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .portfolio-section {
        padding: 30px 0;
    }

    .portfolio-title {
        font-size: 1.5rem;
    }

    .portfolio-text {
        font-size: 0.9rem;
    }

    .portfolio-item {
        flex: 0 0 220px;
    }

    .carousel-control {
        width: 35px;
        height: 35px;
    }

    .carousel-control i {
        font-size: 1rem;
    }
}

/* About Us Section */
.about-us-section {
    padding: 60px 0; /* Compact, consistent with other sections */
    background: #ffffff url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"%3E%3Ccircle cx="50" cy="50" r="5" fill="%23faa21a"/%3E%3Ccircle cx="70" cy="30" r="3" fill="%23000000"/%3E%3Ccircle cx="30" cy="70" r="3" fill="%23000000"/%3E%3Cpath d="M50 45 L70 33 M50 55 L30 67" stroke="%23faa21a" stroke-width="1" opacity="0.2"/%3E%3C/svg%3E') repeat; /* Molecular structure */
    position: relative;
    overflow: hidden;
}

.about-us-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.header-icon {
    font-size: 2.5rem;
    color: #faa21a; /* Logo orange */
    background: #000000; /* Logo black */
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px; /* Slightly rounded rectangle */
    margin: 0 auto 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-us-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #faa21a; /* Logo orange */
    margin: 0;
    letter-spacing: 0.5px;
}

.about-us-accent {
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, #faa21a, #000000); /* Gradient with logo colors */
    border-radius: 3px;
    margin: 10px auto 0;
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two-column layout */
    gap: 30px;
    max-width: 1100px; /* Wider for modern look */
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.content-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-us-text {
    font-size: 1.1rem;
    color: #000000; /* Logo black */
    line-height: 1.7;
    margin: 0;
}

.content-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    max-width: 100%;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 162, 26, 0.1); /* Subtle orange tint */
    border-radius: 12px;
    transition: background 0.3s ease;
    z-index: 1;
}

.image-wrapper:hover::before {
    background: rgba(250, 162, 26, 0.2); /* Darker tint on hover */
}

.about-us-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid #faa21a; /* Logo orange border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 0;
}

/* Divider line */
.about-us-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary, #2148b1); /* Site primary color */
    transform: translateX(-50%);
    opacity: 0.3;
}

/* Animations */
.animate {
    opacity: 0;
}

.header-icon.animate {
    animation: zoomIn 0.8s ease forwards;
}

.content-text.animate {
    animation: fadeIn 0.8s ease forwards;
}

.content-image.animate {
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate[data-animate-delay="200ms"] { animation-delay: 200ms; }
.animate[data-animate-delay="400ms"] { animation-delay: 400ms; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-us-content {
        grid-template-columns: 1fr; /* Stack on smaller screens */
        gap: 20px;
    }

    .about-us-content::before {
        display: none; /* Remove divider on mobile */
    }

    .content-image {
        order: -1; /* Image above text */
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 40px 0;
    }

    .about-us-title {
        font-size: 1.75rem;
    }

    .about-us-text {
        font-size: 1rem;
    }

    .header-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-us-section {
        padding: 30px 0;
    }

    .about-us-title {
        font-size: 1.5rem;
    }

    .about-us-text {
        font-size: 0.9rem;
    }

    .header-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .about-us-img {
        max-width: 80%;
    }
}


/* product  */

  .no-scrollbar::-webkit-scrollbar { display: none; }
    .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }


    
    /* ===== Premium Medical Breadcrumb ===== */
.breadcrumb-medical {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000, #faa21a);
  overflow: hidden;
}

/* abstract wave / dna glow */
.breadcrumb-medical::before,
.breadcrumb-medical::after {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 70%);
  animation: spin 25s linear infinite;
}
.breadcrumb-medical::after {
  animation-direction: reverse;
  opacity: 0.4;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

/* === Content === */
.breadcrumb-container {
  position: relative;
  text-align: center;
  color: #fff;
}

.breadcrumb-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #faa21a; /* brand highlight */
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.breadcrumb-nav a {
  color: #f1f1f1;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #faa21a;
}

.breadcrumb-nav span {
  color: #bbb;
}

.breadcrumb-nav .active {
  color: #faa21a;
  font-weight: 600;
}



/* Small Premium Contact Strip with Glow Background */
.contact-strip-small {
  position: relative;
  background: linear-gradient(90deg, #faa21a, #ffcc66);
  padding: 18px 20px;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: 0; left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.25) 0%, transparent 60%);
  animation: glow-move 6s infinite linear;
}

@keyframes glow-move {
  0% { transform: translate(-30%, -30%); }
  50% { transform: translate(30%, 30%); }
  100% { transform: translate(-30%, -30%); }
}

.contact-strip-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
}

.contact-strip-container p {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.contact-strip-btn {
  background: #000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.contact-strip-btn:hover {
  background: #faa21a;
  color: #000;
}

/* Contact Info Section */
.contact-info {
  background: #f9f9f9;
  padding: 60px 20px;
}
.contact-info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
}
.contact-card i {
  font-size: 2rem;
  color: #faa21a;
  margin-bottom: 12px;
}
.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #faa21a, #ffcc66);
  padding: 70px 20px;
  text-align: center;
}
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.form-container h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.form-container p {
  margin-bottom: 25px;
  color: #555;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #faa21a;
}
.form-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.form-btn:hover {
  background: #faa21a;
  color: #000;
}
