/* Universal classes */

:root {
    --primary: #1f3a5f;
    --secondary: #f8f8f8;
    --white: #ffffff;
}

@font-face {
    font-family: 'Inter';
    src: url(assets/font/Inter.woff2);
}

* {
    font-family: 'Inter', sans-serif;
}

button {
    cursor: pointer;
}

input {
    display: block;
    width: 100%;
    padding: 10px 14px;
    margin: 4px 0px;
    border-radius: 10px;
    border: none;
    outline: none;
    border: 1px solid rgb(221, 221, 221);
}

textarea {
    display: block;
    width: 100%;
    padding: 10px 14px;
    margin: 4px 0px;
    border-radius: 10px;
    border: none;
    outline: none;
    border: 1px solid rgb(221, 221, 221);
    resize: none
}

/* Global container */
@layer utilities {
    .container-global {
        /* @apply mx-auto px-4; */
        max-width: 1200px;
    }
}

:root {
    --primary: #1f3a5f;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.container-global {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

.nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logo-area {
    display: flex;
    flex-direction: row; /* Aligns items along the X-axis */
    align-items: center; /* Centers them vertically relative to each other */
    gap: 15px;           /* Space between logo, divider, and text */
}

.logo img {
    height: 45px;        /* Adjust based on your preference */
    width: 48px;
    display: block;
}

.logo-divider {
    width: 1px;
    height: 25px;        /* Height of the vertical line */
    background-color: #cbd5e1;
    margin-left:6px;
    margin-right:6px;
    
}

.reg-no {
    font-size: 12px !important;
    color: #EF4444;
    margin: 0;
    white-space: nowrap; /* Forces the text to stay on one horizontal line */
    font-weight: 600;
    
}

/* Tablet and Mobile adjustments */
@media (max-width: 768px) {
    .logo-area {
        gap: 8px;
    }
    .logo img {
        height: 35px;
    }
    .reg-no {
        font-size: 9px;
    }
}

.logo {
    /* width: 100%; */
    display: flex;
    column-gap: 5px;
    align-items: center;
}



.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a,
.mobile-menu a {
    text-transform: capitalize;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: clamp(14px, 1.2vw, 16px);
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-2px) scale(1.05);
}

.contact-btn {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: #000;
    fill: none;
    stroke-width: 2;
}

/* --- High-End Mobile Dropdown --- */
.mobile-menu {
    position: fixed;
    top: 70px; /* Adjust based on navbar height */
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    
    /* Animation: Hidden by default */
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.open {
    transform: translateY(-5%)/* Slides down into view */
}

.menu-toggle {
    display: none; /* This ensures it stays hidden on PC */ 
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    align-items: center;
    justify-content: center;
}

#menuIcon path {
    transition: 0.3s ease-in-out;
}

/* Open state (Toggled via JS) */
.mobile-menu.active {
    max-height: 500px;
    /* Adjust based on menu height */
    opacity: 1;
    padding: 20px;
    pointer-events: all;
}

/* Individual Links */
.mobile-menu a {
    text-decoration: none;
    color: #334155;
    /* Professional slate gray */
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 0;
    border-bottom: 1px solid #f8fafc;
    /* Subtle divider */
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.mobile-menu a:last-of-type {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* Special "Contact Us" styling in the dropdown */
.mobile-contact-cta {
    margin-top: 10px;
    background-color: var(--primary);
    color: #ffffff !important;
    text-align: center;
    border-radius: 100px;
    padding: 12px !important;
    box-shadow: 0 4px 6px -1px rgba(31, 58, 95, 0.2);
}

.mobile-contact-cta:active {
    transform: scale(0.98);
}

.desktop {
    display: flex;
}

@media (max-width: 768px) {
    .desktop {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}



/* Header end  */


/* Hero section  */


.hero-section {
    position: relative;
    overflow: hidden;
    padding: 12rem 1rem;
    background-color: var(--primary);
    color: var(--white);
}

.hero-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slides .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slides .slide.active {
    opacity: 1;
}

.hero-slides .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenburns 10s ease-in-out infinite alternate;
}

.hero-slides .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(10px, 10px);
    }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1024px;
    margin: auto;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: bold;
}

@media(min-width: 640px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media(min-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media(min-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}



.hero-content p {
    margin-top: 1rem;
    line-height: 1.75rem;
    color: #e5e7eb;
    /* gray-200 */
}

.hero-content .subtitle {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1.2rem 2.5rem;
    font-weight: bold;
    font-size: 1rem;
    color: var(--primary);
    background-color: var(--white);
    border-radius: 1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.hero-btn:hover {
    background-color: #e5e7eb;
    gap: 0.75rem;
}


/* --- Animation Definitions --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Applying Animations to Content --- */
.hero-content .subtitle,
.hero-content h1,
.hero-content p,
.hero-content .hero-btn {
    opacity: 0;
    /* Start invisible */
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* --- Staggered Delays (The "One-by-One" look) --- */
.hero-content .subtitle {
    animation-delay: 0.2s;
}

.hero-content h1 {
    animation-delay: 0.4s;
}

.hero-content p {
    animation-delay: 0.6s;
}

.hero-content .hero-btn {
    animation-delay: 0.8s;
}

/* --- Extra UX Polish for the H1 --- */
.hero-content h1 {
    background: linear-gradient(to bottom, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}




/* about us section  */


:root {
    --primary: #1f3a5f;
    --secondary: #f9fafb;
    --white: #ffffff;
    --gray-text: #6b7280;
    --dark-bg: #111827;
    --font-family: 'Manrope', sans-serif;
}

.about-section {
    background-color: var(--secondary);
    padding: 4rem 1rem;
}

.container-global {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width:1045px) {
    .about-grid {

        grid-template-columns: 1fr;

    }
}

.about-image {
    position: relative;
    padding: 20px;
    /* Space for the decorative background to show */
}

.main-about-img {
    width: 100%;
    height: 28rem;
    object-fit: cover;
    border-radius: 2rem;
    position: relative;
    z-index: 2;
    /* Sits above the accent */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Decorative background square */
.image-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background-color: var(--primary);
    opacity: 0.1;
    /* Very subtle blue tint */
    border-radius: 2rem;
    z-index: 1;
    transform: translate(-15px, -15px);
}

/* Floating Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 0px;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    z-index: 3;
    animation: floating 3s ease-in-out infinite;
}

.exp-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Animation to make the badge feel premium */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsiveness */
@media(min-width: 640px) {
    .main-about-img {
        height: 33rem;
    }
}

@media(max-width: 1024px) {
    .about-image {
        margin-top: 40px;
        /* Space from the text on mobile */
    }

    .experience-badge {
        right: 20px;
        padding: 15px 20px;
    }

    .exp-number {
        font-size: 1.8rem;
    }
}

/* Container Spacing */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
}

/* Typography Refinement */
.sub-heading {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1.25rem;
}



/* The Grid System */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

/* Individual Stat Cards */
.stat-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

/* Icon Design */
.stat-icon {
    min-width: 48px;
    height: 48px;
    background: #f1f5f9;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.25rem;
    transition: 0.3s;
}

.stat-card:hover .stat-icon {
    background: var(--primary);
    color: #fff;
}

.stat-info h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 2px;
}

.stat-info h6 {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 400;
}

/* Read More Button Upgrade */
.read-more-btn {
    padding: 12px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    /* Pill shape is more modern */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(31, 58, 95, 0.2);
    transition: 0.3s;
}

.read-more-btn:hover {
    background: #162a45;
    transform: scale(1.05);
}


/* about us section end  */


/* Product Slider Layout Fixes */
.mySwiper {
    padding: 20px 0 60px 0 !important;
}

.product-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.product-img-box {
    background: #f8fafc;
    border-radius: 12px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-img-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    /* This keeps different shaped machines looking aligned */
}

.product-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

/* Navigation Arrow Styling */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    transform: scale(0.7);
}

/* Why Us  */

/* Clean Global Section Padding */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;

}

.why-us {
    background-color: #F9FAFB;
}

/* Tablet & Mobile adjustment (Before 767px) */
@media (max-width: 767px) {
    .section-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* Ensure specific sections don't override the global rule */
.about-section,
.products-section,
.why-us,
.catalogue-section,
.testimonials,
.contact-section,
.cta-banner-section {
    padding-left: 1rem;
    padding-right: 1rem;
}
.cta-banner-section{
padding-bottom: 80px;

}

.testimonials{
    padding-bottom: 10px !important;
}


/* --- Optimized Header Container --- */
.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    /* Adds space before the grid starts */
    padding: 0 1rem;
}

/* --- The Modern "Label" --- */
.section-header .sub-heading {
    display: inline-block;
    color: var(--primary);
    /* Your brand blue */
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    /* Spaced out for high-end look */
    margin-bottom: 0.5rem;
}

/* --- Decorative Line --- */
.header-line {
    width: 50px;
    height: 3px;
    background: #EF4444;
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

/* --- Main Heading --- */
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    /* Responsive size */
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

/* Highlight MTECH in your brand color */
.section-header h2 span {
    color: var(--primary);
    position: relative;
}

/* --- Professional Description --- */
.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    /* Professional slate gray */
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}



.why-us-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;


}

.why-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-10px);
    background: var(--primary);
    color: #fff;
}

.why-icon-wrap {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: 0.3s;
}

.why-card:hover .why-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.why-card h3 {
    margin-bottom: 1rem;
}

.why-card p {
    opacity: 0.8;
    line-height: 1.6;
}



/* Product Catalogues  */


/* ==========================================================
   PRODUCT CATALOGUE SECTION
   ========================================================== */

/* Catalogue Section Styling */
.catalogue-section {
    position: relative;
    padding: 100px 0;
    /* Replace the URL below with your kitchen image path */
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
        url('assets/images/restaurant\ equipment\ bgsupplie.jpg');
    background-attachment: fixed;
    /* This makes the scroll "fixed" */
    background-position: center;
    background-size: cover;
    color: white;
}

.catalogue-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
}

.catalogue-section p {
    color: #cbd5e1;
}

/* Catalogue Grid Layout */
.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* Glass Card Effect */
.catalogue-card {
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle transparent white */
    backdrop-filter: blur(10px);
    /* Blur effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.catalogue-card:hover {
    background: rgba(255, 255, 255, 1);
    /* Turns solid white on hover */
    transform: translateY(-10px);
}

/* Text color changes on hover */
#catalogue h2 {

    color: #ffffff;
    margin: 15px 0;
    transition: color 0.3s;
}

.catalogue-card h3 {
    color: #ffffff;
    margin: 15px 0;
    transition: color 0.3s;
}

.catalogue-card p {
    color: #94a3b8;
    transition: color 0.3s;
}

.catalogue-card:hover h3 {
    color: var(--primary);
}

.catalogue-card:hover p {
    color: #475569;
}

/* Icon Styling */
.pdf-icon {
    font-size: 3rem;
    color: #ff4d4d;
    /* PDF Red */
    margin-bottom: 10px;
}

/* Button Styling */
.card-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.view-btn,
.save-link {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.view-btn {
    background: var(--primary);
    color: white;
}

.save-link {
    background: #f1f5f9;
    color: #1e293b;
}

.view-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.save-link:hover {
    background: #e2e8f0;
}

.catalogue-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* 1. Grid Layout: 1 col (mobile), 2 col (tablet), 3 col (desktop) */
.catalogue-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media(min-width: 640px) {
    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.text-center {
    text-align: center;
    margin-bottom: 50px;
}


.text-center h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}



/* 2. Individual Card Styling */
.catalogue-card {
    background-color: #fff;
    border-radius: 1.25rem;
    /* Matches screenshot smoothness */
    padding: 35px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    /* Soft premium shadow */
    display: flex;
    flex-direction: column;
    text-align: left;
    /* Align text to the left */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalogue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* 3. PDF Icon Box (Red tint with icon) */
.pdf-icon {
    background-color: #fff1f2;
    /* Subtle red background */
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #ef4444;
    /* PDF Red icon color */
    font-size: 1.5rem;
}

.catalogue-card h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 700;
}

.catalogue-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* 4. Button Container */
.card-buttons {
    display: flex;
    gap: 12px;
    margin-top: auto;
    /* Pushes buttons to the bottom */
}

/* 5. Common Button Styles */
.card-buttons button,
.card-buttons a {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
}

/* View Button (Deep Blue) */
.card-buttons .view-btn {
    background-color: #1f3a5f;
    color: #ffffff;
    border: none;
}

.card-buttons .view-btn:hover {
    background-color: #162a45;
}

/* Save Button (Outlined/Bordered) */
.card-buttons .save-link {
    background-color: transparent;
    border: 1px solid #e2e8f0;
    color: #334155;
    text-decoration: none;
}

.card-buttons .save-link:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

/* ==========================================================
   PDF MODAL (Fullscreen Viewer)
   ========================================================== */
.pdf-modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.8);
    /* Darker backdrop */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.pdf-modal-content {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 1000px;
    height: 90vh;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.pdf-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: scale 0.2s;
}

#modal-close:hover {
    transform: scale(1.1);
}


/* Testimonials  */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testi-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.rating {
    color: #f59e0b;
    /* Gold/Star color */
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testi-card p {
    font-style: italic;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.author-info strong {
    display: block;
    color: #1e293b;
    font-size: 1.1rem;
}

.author-info span {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Container hides the overflow */
.testimonial-slider {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    width: 100%;
}

/* The track that moves */
.testimonial-track {
    display: flex;
    width: calc(350px * 4 + 2rem * 4);
    /* (Card width * Total Cards) + Gaps */
    gap: 2rem;
    animation: scroll 20s linear infinite;
}

/* Individual Card Styling */
.testi-card {
    flex: 0 0 350px;
    /* Fixed width for each card */
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid var(--primary);
}

/* Animation Logic */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 2 - 2rem * 2));
    }

    /* Moves halfway (the length of one set) */
}

/* Pause on hover so users can read */
.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}


/* CTS Section  */
/* --- CTA Banner Styling --- */

.cta-banner-section {
    padding-top: 50px;
}

.cta-banner {
    position: relative;
    background-color: #1a365d;
    /* Matches your brand dark blue */
    background-image: radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 30%, transparent 60%);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    color: #ffffff;
}

.cta-content {
    max-width: 65%;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

/* --- Rounded Modern Buttons --- */
.cta-actions {
    display: flex;
    gap: 15px;
}

.cta-btn {
    background: #000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.cta-btn .dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-3px);
    background: #222;
}

/* --- Decorative Ripple Effect (Right Side) --- */
.cta-decoration {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: repeating-radial-gradient(circle at center,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.05) 41px,
            rgba(255, 255, 255, 0.05) 42px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    font-size: 2.5rem;
    opacity: 0.4;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-decoration {
        display: none;
    }

    /* Hide decoration on mobile for better focus */
}

/* Contact us  */
/* ==========================================================
   CONTACT SECTION STYLING
   ========================================================== */

.contact-section {
    padding-top: 80px;
    padding-bottom: 100px;

}

.contact-bg {
    background-color: #F9FAFB;
}

/* Contact Section Styling */
.contact-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: center;
}

/* Left Side Info */
.contact-img-box {
    max-width: 500px;
}

.contact-img-box img {
    width: 100%;
    /* border: 1px solid green; */
}

.info-details {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    /* FIX */

    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .info-details {
        justify-content: center;
        flex-wrap: wrap;
        /* helpful if items overflow */
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .info-details {
         justify-content: left;
        flex-direction: column;
        gap: 00px;


    }

    .info-details p {

        margin-bottom: 0.0rem;

    }

    .info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: anchor-center;
}

      .info-item h4 {

        text-align: center !important;
    }

   
}

@media (max-width: 900px){


    .info-item h4 {

        text-align: left;
    }
}


.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}



.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-rgb), 0.1);
    /* Assuming you have primary rgb defined */
    background-color: #e0e7ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.info-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #F15555
}

@media (max-width:475px){
    .info-item p {
   font-size: 0.95rem !important;
}
}



/* Form Card Styling */
.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.input-wrap {
    margin-bottom: 20px;
}

.input-wrap label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #475569;
    font-size: 0.9rem;
}

.input-wrap input,
.input-wrap textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.input-wrap input:focus,
.input-wrap textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
    background: #0f172a;
    /* Darker blue on hover */
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-side {
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }
}



/* whatsapp  */

.whatsapp-btn {
    position: fixed;
    bottom: 2.5rem;
    /* adjust for sm/md screens if needed */
    right: 2.5rem;
    background-color: #25D366;
    /* WhatsApp green */
    color: #fff;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    /* full rounded */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover {
    opacity: 0.8;
}



/* footer  */
/* --- Footer Main Container --- */
.footer-section {
    background-color: #1f3a5f;
    /* Your Primary Deep Blue */
    color: #ffffff;
    padding: 80px 0 0;
    /* Space at top, footer-bottom handles the rest */
}

/* --- Grid Layout --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.5fr;
        /* Wider columns for text-heavy areas */
    }
}

/* --- Brand Column --- */
.footer-logo {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}

.footer-col h2 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.footer-col p {
    color: #cbd5e1;
    /* Muted slate blue for better readability */
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Headings --- */
.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
}

/* The small red line under headings (Matches your screenshot style) */
.footer-col h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #ef4444;
    /* Accent Red */
    margin-top: 10px;
}

/* --- Links Styling --- */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
    /* Subtle interaction effect */
}

/* --- Contact Items Styling --- */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.contact-item i {
    color: #ffffff;
    margin-top: 5px;
    width: 20px;
    /* Aligns the text perfectly */
}

.contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #ffffff;
}

/* --- Footer Bottom Bar --- */
.footer-bottom {
    background-color: #162a45 !important;
    /* Slightly darker than main footer */
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
} 