    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ====== BODY & GLOBAL STYLES ====== */
        body {
            font-family: 'Work Sans', sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* ====== CONTAINER ====== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation (all pages) */
        
        header {
            background: white;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(255, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: bold;
            color: #000080;
        }

        .logo-icon {
            width: 50px;
            height: auto;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #060000;
            font-size: 14px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #7357e3;
        }

.btn-primary {
    display: inline-block;
    padding: 8px 30px;
    background-color: #000080;
    color: #ffffff !important; /* Force white text */
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    border-width: 1px;
    border: #000080 1px solid;
    cursor: pointer;
    text-decoration: none !important; /* Remove underline */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #fff; /* lighter navy shade for hover */
    transform: scale(1.05);
    color: #000080 !important;
    border-width: 1px;
    border-radius: 30px;
    border: #000080 1px solid;
}

.btn-primary:active {
    transform: scale(0.98);
}


        /*BREADCRUMB (About, Services, Products, Contact Pages)*/
        .about-content {
            text-align: center;
            background-color: #000080;
            color: white;
            padding: 10px 20px;
            display: inline-block;
            margin-bottom: 30px;
            font-size: 16px;
            font-weight: 500;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;

        }
/* ================= HERO SECTION ================= */

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    padding: 0px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    margin-top: 0px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    color: #000080;
    margin-bottom: 10px;
    margin-top: 0px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
}

.hero-text p {
    color: #666;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
}

.section-subtitle {
    color: #000080;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Hero Button (separate from navbar button) */
        .hero-btn {
            display: inline-block;
            padding: 8px 30px;
            background-color: #000080;
            color: #ffffff;
            font-size: 13px;
            font-weight: 600;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

.hero-btn:hover {
    background-color: #ffffff;
    color: #000080;
    border:#000000;
    border-width: 1px;
    border-width: 20px;
}

/* Carousel Styles */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0px;
    margin-top: 50px;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 3s ease-in-out;
}

.slides img {
    width: 100%;
    flex-shrink: 0;
}

        /* Stats Bar (home Page) */
        .stats-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
            margin-top: 50px;
            margin-bottom: 0px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .icon-circle {
            width: 80px;
            height: 80px;
            background: #000080;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .icon-circle img {
            width: 40px;
            height: 40px;
            filter: brightness(0) invert(1);
        }

        .stat-content {
            text-align: left;
        }

        .stat-number {
            font-size: 48px;
            font-weight: bold;
            color: #000080;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 16px;
            color: #333;
            font-weight: 600;
        }
/* ABOUT SECTION (HOME PAGE)*/
.about {
    background: #ffffff;
    padding: 60px 0;
    margin-top: 0;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about .section-subtitle {
    color: #000080;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about .section-title {
    font-size: 38px;
    color: #000000;
    margin-bottom: 40px;
    text-align: left;
    font-weight: 400;
    line-height: 1.3;
}

.about .section-title em {
    font-style: italic;
    font-weight: 700;
}

.about .about-content {
    display: flex;
    gap: 50px;
    align-items: center; /* 🔹 changed from flex-start to center */
    background: transparent;
    padding: 0;
    margin: 0;
}

        .about-btn {
            margin: 0 auto;
            margin-top: 40px;
            text-align: center;
            display: inline-block;
            padding: 8px 30px;
            background-color: #000080;
            color: #ffffff;
            font-size: 13px;
            font-weight: 600;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .about-btn:hover {
            background-color: #000080;
            transform: scale(1.05);
        }

        .about-btn:active {
            transform: scale(0.98);
        }

/* Text block */
.about .about-content > div:first-child {
    flex: 1;
    text-align: left;
}

.about .about-content p {
    color: #333333;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

.about .btn-primary {
    margin-top: 30px;
    padding: 12px 35px;
}

/* Image block */
.about .about-image-container {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.about .about-single-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    object-fit: cover;
    margin-top: -40px; /* 🔹 shifts image up to align with heading */
}
        /* About Section (About Us Page) */
        .about-section {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            padding: 60px 20px 40px;
        }

        .breadcrumb {
            text-align: center;
            background-color: #000080;
            color: white;
            padding: 10px 20px;
            display: inline-block;
            margin-bottom: 30px;
            font-size: 16px;
        }

        /*Heading Style*/
        h1 {
            text-align: center;
            font-size: 35px;
            margin-bottom: 50px;
            font-weight: 500;
            color: #292929;
        }

        h1 em {
            font-style: italic;
            font-weight: 600;
        }

        .content-wrapper {
            margin-top: 60px;
            display: flex;
            gap: 40px;
            align-items: center;
            margin-bottom: 60px; /* ADDED: Space before Why Choose */ 
        }

        .image-container {
            flex: 1;
            max-width: 50%;
        }

        .image-container img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .text-container {
            flex: 1;
            max-width: 50%;
        }

        .text-container p {
            font-size: 18px;
            line-height: 1.8;
            color: #333;
            text-align: justify;
            margin-bottom: 0px;
        }

        /* Why Choose Section */
        .why-choose {
            position: relative;
            background: #ffffff;
            z-index: 5;
            padding: 80px 0;
        }

        .why-choose-content {
            text-align: center;
            margin-bottom: 50px;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
            overflow: visible; /* keeps all cards visible */
        }

        /* Individual Feature Card */
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
            position: relative;
            z-index: 10;
        }

        .feature-card:first-child {
            position: relative;
            z-index: 1;
            visibility: visible;
            opacity: 1;
            transform: none;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 40px;
            margin-bottom: 20px;
        }

        /*Card Title Styling*/
        .feature-card h3 {
            color: #000080;
            margin-bottom: 15px;
            font-size: 20px;
            font-weight: 600;
        }

        /* Card Paragraph styling */
        .feature-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Services Section (Home & Services Page) */
        .services {
            padding: 80px 0;
        }

        .services-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .services .section-title {
            font-size: 38px;
            color: #000000;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 400;
            line-height: 1.3;
            
        }

        .section-title .highlight-text {
            font-style: italic;
            font-weight: 700;
            color: #000000; /* optional matching or different color */
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-image {
            height: 300px; /* or your preferred height */
            background: none;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            color: #000080;
            margin-bottom: 15px;
            font-size: 20px;
        }

        .service-content p {
            color: #666;
            font-size: 14px;
        }

        .view-more-btn {
            text-align: center;
            margin-top: 40px;
            cursor: pointer;
        }

        .service-btn {
            display: inline-block;
            padding: 8px 30px;
            background-color: #000080;
            color: #ffffff;
            font-size: 13px;
            font-weight: 600;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .service-btn:hover {
            background-color: #000080;
            transform: scale(1.05);
        }

        .service-btn:active {
            transform: scale(0.98);
        }

        /* Showcase Section with Slider */
        .showcase {
            background: #ffffff;
            padding: 80px 0;
        }

        .showcase-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .showcase .section-title {
            font-size: 38px;
            color: #000000;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 400;
            line-height: 1.3;
            
        }

        .showcase .highlight-text {
            font-style: italic;
            font-weight: 700;
            color: #000000; /* optional matching or different color */
        }
        .slider-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .slider-wrapper {
            overflow: hidden;
            border-radius: 15px;
        }

        .slides-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease-in-out;
        }

        .slide-item {
            min-width: calc(33.333% - 20px);
            flex-shrink: 0;
        }

        .slide-item img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 10;
            transition: all 0.3s;
        }

        .slider-btn:hover {
            background: #000080;
            color: white;
        }

        .prev-btn {
            left: 0;
        }

        .next-btn {
            right: 0;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #000080;
            width: 30px;
            border-radius: 6px;
        }

        .dot:hover {
            background: #a698e0;
        }

        /* ====== ABOUT PAGE - HEADER SECTION (Breadcrumb & Title) ====== */
        .about-section {
            text-align: center;
            padding: 50px 20px;
        }

        .about-section .breadcrumb {
            display: inline-block;
            background-color: #000080;
            color: white;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 15px;
            margin-bottom: 20px;
            border-radius: 2px;
            letter-spacing: 0.5px;
        }

        .about-section .breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .about-section .breadcrumb a:hover {
            text-decoration: underline;
        }

        .about-section h1 {
            font-size: 48px;
            color: #333;
            font-weight: bold;
            line-height: 1.2;
            margin: 0;
        }

        .about-section h1 em {
            font-style: italic;
            font-weight: 900;
            color: #222;
        }


        /* ====== SERVICES PAGE - HEADER SECTION (Breadcrumb & Title) ====== */
        .services-header-section {
            text-align: center;
            padding: 50px 20px;
        }

        .services-header-section .tag-breadcrumb {
            display: inline-block;
            background-color: #000080;
            color: white;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 15px;
            margin-bottom: 20px;
            border-radius: 2px;
            letter-spacing: 0.5px;
        }

        .services-main-heading {
            font-size: 45px;
            color: #333;
            font-weight: bold;
            line-height: 1.2;
            margin: 0;
        }

        .services-main-heading .highlight-text {
            font-style: italic;
            font-weight: 900;
            color: #222;
        }

        /* ====== SERVICES PAGE - DETAILED VIEW ====== */
        .services-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            padding: 20px 0;
        }

        .service-box {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .service-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(26,11,94,0.15);
            border-color: #000080;
        }

        .icon-wrapper {
            text-align: center;
            margin-bottom: 25px;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto;
        }

        .service-title {
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            color: #000080;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .service-description {
            text-align: justify;
            line-height: 1.8;
            color: #555;
            font-size: 15px;
            margin-bottom: 25px;
        }

        /* Accordion Styles (Services Page) */
        .accordion-btn {
            width: 100%;
            background: #000080;
            color: white;
            border: none;
            padding: 16px 25px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .accordion-btn:hover {
            background: #000080;
            transform: scale(1.02);
        }

        .accordion-btn.active {
            border-radius: 30px 30px 0 0;
        }

        .arrow-icon {
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .accordion-btn.active .arrow-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: #f5f7fa;
            border-radius: 0 0 20px 20px;
        }

        .accordion-content.active {
            max-height: 500px;
        }

        .content-inner {
            padding: 25px;
        }

        .pricing-list {
            list-style: none;
        }

        .pricing-list li {
            padding: 10px 0;
            font-size: 15px;
            color: #333;
            border-bottom: 1px dashed #ddd;
        }

        .pricing-list li:last-child {
            border-bottom: none;
        }

        .disclaimer-text {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .services-footer {
            text-align: center;
            margin-top: 200px;
        }

        .book-btn {
            display: inline-block;
            background-color: #000080; /* deeper blue */
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 9999px;
            box-shadow: 0 5px 15px rgba(0, 0, 128, 0.3);
            transition: all 0.3s ease;
        }

        .book-btn:hover {
            background-color: #fff; 
            color:#000080;
            box-shadow: 0 8px 20px rgba(26, 11, 94, 0.4);
            transform: translateY(-2px);
        }


        /* Product Section Styles */
        .product-section {
            padding: 80px 20px;
            background-color: #ffffff;
            font-family: 'Work Sans', sans-serif;
        }

        .product-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .section-tag {
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 5px;
            color: #000080;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
.section-title {
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 60px;
}

.section-title .highlight-text {
    font-style: italic;
    color: #000000;   /* your preferred highlight color */
}

        .product-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
        }

        .product-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 12px;
            max-width: 350px;
            width: 100%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            width: 100%;
            height: 300px;
            background: #f5f5f5;
            border-radius: 15px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }



        .product-title {
            font-size: 28px;
            font-weight: 700;
            color: #000000;
            margin-bottom: 15px;
        }

        .product-description {
            font-size: 16px;
            font-weight: 400;
            color: #4b5563;
            line-height: 1.6;
            text-align: left;
        }

        .shop-button {
            display: inline-block;
            padding: 8px 30px;
            background-color: #000080;
            color: #ffffff;
            font-size: 13px;
            font-weight: 600;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .shop-button:hover {
            background-color: #000080;
            transform: scale(1.05);
        }

        .shop-button:active {
            transform: scale(0.98);
        }

        /* ====== PRODUCT DETAIL PAGE ====== */
        .product-header-section {
            text-align: center;
            padding: 50px 20px;
        }

        .tag-breadcrumb {
            display: inline-block;
            background-color: #000080;
            color: white;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 15px;
            margin-bottom: 20px;
            border-radius: 2px;
            letter-spacing: 0.5px;
        }

        .product-main-heading {
            font-size: 48px;
            color: #333;
            font-weight: 500;
            line-height: 1.2;
            margin: 0;
        }

        .product-main-heading .highlight-text {
            font-style: italic;
            font-weight: 800;
            color: #222;
        }

        .product-detail-container {
            display: flex;
            max-width: 1200px;
            margin: 40px auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .product-visual-column { 
            flex: 1;
            background-color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0; /* remove padding so image can fill the area */
            position: relative;
            overflow: hidden; /* hides any overflow if image exceeds bounds */
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
        }

        .product-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover; /* fills the container without distortion */
            display: block;
        }

        .product-info-column {
            flex: 1;
            padding: 40px;
            text-align: left;
        }

        .product-main-header {
            font-size: 32px;
            color: #333;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .product-model-title {
            font-size: 18px;
            color: #555;
            font-weight: 600;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .buy-now-button {
            display: inline-block;
            background-color: #000080;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            border-radius: 30px;
            transition: background-color 0.3s;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            margin-top: 24px;
        }

        .buy-now-button:hover {
            background-color: white;
            color: #000080;
            border-width: 1px;
        }

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
    text-align: center;
}

.testimonials-header .section-subtitle {
    color: #000080;
    text-align: center;
    font-weight: 600;
    letter-spacing: 6px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    text-align: center;
}

.testimonials-header .section-title {
    text-align: center;
    color: #333;
    font-family: 'Work Sans', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
}

.testimonials-header .section-title span {
    display: block;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 20px;
}


/* Container */
.testimonial-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonial-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonial-slides-track {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
}

/* Card */
.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: none; /* removed shadow */
    max-width: 700px;
    width: 100%;
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: none; /* optional: remove hover lift if you want it flat */
}

.testimonial-card.featured {
    background: #000080;
    color: #fff;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 40px;
  justify-content: center;
  background-color: #ffd000; /* yellow */
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Stars */
.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Review Text */
.testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.testimonial-card.featured p {
    color: #fff;
}

/* Navigation Buttons */
.testimonial-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10;
    transition: all 0.3s;
}

.testimonial-slider-btn:hover {
    background: #000080;
    color: #fff;
}

.testimonial-slider-btn.prev { left: 0; }
.testimonial-slider-btn.next { right: 0; }

/* Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: #000080;
    width: 30px;
    border-radius: 6px;
}

.testimonial-dot:hover {
    background: #a698e0;
}

        /* Contact Section (Contact Page)*/
        .contact-section {
            padding: 0px 0px;
        }

        .tag-breadcrumb {
            display: inline-block;
            background-color: #000080;
            color: white;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 15px;
            margin-bottom: 20px;
            border-radius: 2px;
            letter-spacing: 0.5px;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 10px;
        }

        .contact-header h1 {
            font-size: 36px;
            color: #000080;
            margin-bottom: 10px;
        }

        .contact-header .subtitle {
            font-style: italic;
            color: #666;
            font-size: 18px;
        }

        .get-quote-badge {
            display: inline-block;
            background: #000080;
            color: white;
            padding: 8px 20px;
            border-radius: 2px;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: flex-start;
            margin-top: 50px;
        }

        .contact-image {
            text-align: center;
        }

        .contact-image img {
            max-width: 100%;
            height: auto;
        }

        .contact-form-wrapper {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .contact-form-wrapper h3 {
            color: #000080;
            margin-bottom: 10px;
            font-size: 24px;
        }

        .success-message {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            padding: 15px 20px;
            border-radius: 8px;
            animation: slideDown 0.3s ease;
        }

        .error-message {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            padding: 15px 20px;
            border-radius: 8px;
            animation: slideDown 0.3s ease;
        }
        /* Invalid field - Red border */
        .form-group input:invalid:not(:placeholder-shown) {
            border-color: #dc3545;
        }

        /* Valid field - Green border */
        .form-group input:valid:not(:placeholder-shown) {
            border-color: #28a745;
        }

        .contact-form-wrapper .subtitle {
            color: #666;
            margin-bottom: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 10px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #000080;
            box-shadow: 0 0 0 3px rgba(26, 11, 94, 0.1);
        }

    
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: #000080;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.3s;
            width: auto;
        }

        .submit-btn:hover {
            background: white;
            color: #000080;
            border: #000080 1px solid;
        }

        .submit-btn.loading::after {
            content: '';
            display: inline-block;
            width: 14px;
            height: 14px;
            margin-left: 10px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 0.6s linear infinite;
        }

/* ===== GLOBAL FADE-IN-UP ANIMATION ===== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: small staggering for nested elements (optional but looks smoother) */
section:nth-child(1) * {
    animation-delay: 0.2s;
}
section:nth-child(2) * {
    animation-delay: 0.4s;
}
section:nth-child(3) * {
    animation-delay: 0.6s;
}
section:nth-child(4) * {
    animation-delay: 0.8s;
}



        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Contact Info Cards */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            justify-items: center;
            align-items: stretch;
            margin: 50px auto;
            max-width: 1200px;
            width: 90%;
        }

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    width: 100%;
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    color: white;
}

/* Blue overlay animation */
.info-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000080;
    transition: height 0.4s ease;
    z-index: 0;
}

.info-card:hover::before {
    height: 100%;
}

/* Add this to keep text visible above the overlay */
.info-card h4,
.info-card p {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

/* ICON STAYS ABOVE OVERLAY */
.info-icon {
    position: relative;
    z-index: 2; /* keeps it above the blue overlay */
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.info-icon img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Optional subtle hover animation for the icon */
.info-card:hover .info-icon img {
    transform: scale(1.1);
}

/* Prevent icon from changing color on hover */
.info-card:hover .info-icon {
    background-color: #ffffff;
}

.info-icon {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    border-color: #000080;
    border-width: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon img {
    width: 40px; /* adjust as needed */
    height: 40px;
}
        
        /* Map Section */
        .map-section {
            display: fit;
            margin: 50px auto;
            max-width: 1200px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .map-section::before {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            color: #000080;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1;
        }

        .map-section iframe {
            width: 100%;
            max-width: 1150px;
            height: 450px;
            border: 0;
            border-radius: 10px;
            display: block;
        }


        /* Footer */
        footer {
            background: #000080;
            color: white;
            padding: 60px 0 20px;
        }

        /* General container and background */
        .content-container {
            background-color: #000080; /* Dark Blue from the image */
            padding: 30px;
            text-align: center;
            color: white;
            max-width: 600px; /* Optional: Sets a max width for better readability */
            margin: 0 auto; /* Optional: Centers the whole block on the page */
        }

        /* Style for the text block (optional, but good for separation) */
        .text-block {
            margin-bottom: 20px; /* Adds space above the social icons */
            font-size: 18px;
            line-height: 1.6;
        }

        /* --- Social Icons Styling --- */
        .social-icons-container {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 2px solid white;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s;
        }

        .social-icon:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
            opacity: 0.8;
        }

        .section-subtitle {
            color: #000080;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 36px;
            color: #000000;
            margin-bottom: 20px;
            font-weight: 400;
        }

        
        /* Mobile Hamburger */
        .menu-toggle {
            display: none;
            cursor: pointer;
        }
        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            transition: all 0.3s ease-in-out;
            background-color: #000080;
        }
        
        /* ====== RESPONSIVE DESIGN (FIXED) ====== */
    @media (max-width: 1024px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets/laptops */
        }
    }

    @media (max-width: 768px) {
        .menu-toggle {
            display: block; /* Show hamburger on mobile */
        }

        .menu-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .menu-toggle.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .nav-links {
            display: flex; /* Change from 'none' to flex to control via JS */
            position: fixed;
            left: -100%; /* Hide off-screen */
            top: 70px; /* Height of header */
            flex-direction: column;
            background-color: #fff;
            width: 100%;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            padding: 20px 0;
        }

        .nav-links.active {
            left: 0; /* Slide in */
        }
        
        .nav-links li {
            margin: 15px 0;
        }


        /* Hero SECTION RESPONSIVE */
        .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .hero-text {
            padding-right: 0;
        }
        .hero-btn {
            margin-top: 20px;
        }      
        

        /* ABOUT SECTION RESPONSIVE */
        .content-wrapper {
            flex-direction: column;
        }
        .image-container,
        .text-container {
            max-width: 100%;
        }

        /* HOME PAGE ABOUT SECTION */
        .about .about-content {
            flex-direction: column;
            gap: 30px;
        }

        .about .section-title {
            font-size: 26px;
        }

        .about .about-content p {
            font-size: 14px;
        }

        .about .about-image-container {
            justify-content: center;
        }

        .about .about-single-image {
            max-width: 100%;
        }
      
        /* Showcase Responsive  */
        .testimonial-slide {
            min-width: 100%;
        }
        
        .testimonial-slider-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 50px;
            overflow: visible; /* Important: prevent button overlap clipping */
        }

        .testimonial-slider-btn {
            width: 40px;
            height: 40px;
            font-size: 18px;
        }

        /* Showcase Responsive  */
        .slide-item {
            min-width: 100%;
        }
        
        .slider-container {
            padding: 0 40px;
        }
        
        .slider-btn {
            width: 40px;
            height: 40px;
            font-size: 18px;
        }

        /* GENERAL GRID RESPONSIVE (Single Column) */
        .features-grid,
        .services-grid,
        .showcase-grid,
        .testimonials-grid,
        .products-grid,
        .hero-content {
            grid-template-columns: 1fr;
        }

        /* FOOTER RESPONSIVE */
        .footer-content {
            grid-template-columns: 1fr;
        }

        /* NAVIGATION RESPONSIVE */
        .nav-links {
            display: none;
        }

        /* TYPOGRAPHY RESPONSIVE */
        h1, .hero-text h1 { /* Combined h1 styles */
            font-size: 32px; /* Using 32px from the second block as it's typically larger */
        }
        .text-container p {
            font-size: 16px;
        }
        .feature-card h3 {
            font-size: 18px;
        }
        .feature-card p {
            font-size: 14px;
        }

        /* PADDING ADJUSTMENTS */
        .about-section {
            padding: 40px 20px 20px;
        }
        .why-choose {
            padding: 60px 0;
        }

        /* Stats Counter RESPONSIVE */ 
        .stats-container {
            gap: 40px;
        }

        .stat-number {
            font-size: 36px;
        }

        .icon-circle {
            width: 60px;
            height: 60px;
        }

        .icon-circle img {
            width: 30px;
            height: 30px;
        } 
    }

    @media (max-width: 992px) {
    .about .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about .about-image-container {
        justify-content: center;
        margin-top: 30px;
    }
    .about .about-single-image {
        margin-top: 0;
    }

/* === FADE IN UP ON SCROLL === */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease forwards;
}
    
}