/* GLOBAL */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #0b1d2a;
    color: #ffffff;
}

/* NAVBAR */
.custom-navbar {
    background: rgba(10, 25, 40, 0.9);
    backdrop-filter: blur(12px);
}

.nav-link {
    font-size: 15px;
    opacity: 0.9;
}
/* NAVBAR TEXT COLOR */
.navbar,
.navbar a {
    color: #ffffff; /* change to any color */
}
.brand-name {
    font-size: 30px;   /* adjust as needed */
}


.nav-link:hover {
    opacity: 1;
}
/* BASE DROPDOWN */
.navbar .dropdown-menu {
    background: rgba(10, 25, 40, 0.96);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
}

/* SUBMENU WRAPPER */
.dropdown-submenu {
    position: relative;
}

/* SUBMENU MENU */
.dropdown-submenu > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 6px;
    display: none;
    min-width: 200px;
}
/* REMOVE ARROW FROM DROPDOWN SUBMENU ITEMS ONLY */
.dropdown-submenu > .dropdown-toggle::after {
    display: none !important;
}


/* 🔥 KEEP EVERYTHING OPEN */
.dropdown:hover > .dropdown-menu,
.dropdown-menu:hover,
.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu > .dropdown-menu:hover {
    display: block;
}


/* REMOVE BOOTSTRAP AUTO CLOSE ON DESKTOP */
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        pointer-events: auto;
    }
}
/* ================= MOBILE SUBMENU (STACKED BELOW) ================= */
@media (max-width: 991.98px) {

    .dropdown-submenu > .dropdown-menu {
        position: static;      /* stack below */
        display: none;
        margin-left: 0;
        margin-top: 6px;
        min-width: 100%;
    }

    /* show submenu when parent is active / hovered */
    .dropdown-submenu:hover > .dropdown-menu,
    .dropdown-submenu > .dropdown-menu:hover {
        display: block;
    }
}


.demo-btn {
    background: #ffffff;   /* white button */
    color: #000000 !important;        /* black text */
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
}
/* ================= DEMO BUTTON (NO HOVER COLOR CHANGE) ================= */


/* ================= DEMO GLASS MODAL ================= */
.demo-glass-modal {
    background: linear-gradient(
        180deg,
        rgba(138, 155, 167, 0.95),
        rgba(56, 62, 68, 0.95)
    );
    backdrop-filter: blur(20px);
    border-radius: 26px;
    padding: 40px 34px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    position: relative;
    color: #090101;
}

/* Close button */
.demo-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    font-size: 26px;
    color: #fff;
    opacity: 0.8;
    cursor: pointer;
}

.demo-close:hover {
    opacity: 1;
}

/* Content */
.demo-body h2 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.demo-body p {
    text-align: center;
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 30px;
}

/* Form */
.demo-form input,
.demo-form textarea {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 18px;
    border-radius: 14px;
    border: none;
    font-size: 15px;
    outline: none;
}

.demo-form textarea {
    min-height: 110px;
    resize: none;
}
.demo-btn.btn:hover {  /* stays white */
    color: #000000 !important;   
    background-color: #fefefe;          /* text turns white */
}

/* Button */
.demo-form button {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    background: #ffffff;
    color: #0b1d2a;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,255,255,0.25);
}

/* Modal backdrop darker */
.modal-backdrop.show {
    opacity: 0.8;
}




/* HERO SLIDER */
/* ================= HERO SLIDER ================= */
/* ===============================
   HERO SLIDER
   (RESPONSIVE ONLY – NO DESIGN CHANGE)
   =============================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* FORCE WHITE TEXT */
.hero-slider .slide-content h1,
.hero-slider .slide-content p,
.hero-slider .slide-content li {
    color: #ffffff !important;
}

/* ================= SLIDES ================= */

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* OVERLAY */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* ================= CONTENT ================= */

.slide-content {
    position: relative;
    max-width: 650px;
    color: #ffffff;
}

.slide-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.slide-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.slide-content ul li {
    margin-bottom: 8px;
}

/* BUTTON */
.slide-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ff9800;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
}

/* ================= CONTENT SECTION ================= */

.content {
    padding: 80px 20px;
    text-align: center;
}

/* ==================================================
   TABLET RESPONSIVE (SAFE SCALING)
   ================================================== */

@media (max-width: 992px) {

    .hero-slider {
        height: 85vh;
    }

    .slide-content {
        max-width: 100%;
        padding: 0 30px;
    }

    .slide-content h1 {
        font-size: 40px;
    }

    .slide-content p {
        font-size: 17px;
    }
}

/* ==================================================
   MOBILE RESPONSIVE (NO OVERFLOW)
   ================================================== */

@media (max-width: 576px) {

    .hero-slider {
        height: auto;
        min-height: 90vh;
    }

    .slide-content {
        padding: 0 20px;
        text-align: center;
    }

    .slide-content h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 15px;
    }

    .slide-content ul {
        padding-left: 0;
        list-style-position: inside;
    }

    .slide-btn {
        padding: 11px 26px;
        font-size: 14px;
    }
}

/* ===== FEATURE CARDS – EXACT MATCH ===== */

/* ===============================
   HERO FEATURE CARDS – EXACT
   (RESPONSIVE ONLY)
   =============================== */

.hero-features-exact {
    position: relative;
    background: #f5f7fa;
    margin-top: -100px;
    padding: 0 0 120px;
    z-index: 999;
}

/* ROW */
.features-row {
    display: flex;
    justify-content: center;
    gap: 40px;
}

/* ================= CARD ================= */

.feature-card-exact {
    width: 300px;
    padding: 40px 30px 35px;
    text-align: center;
    border-radius: 18px;
    margin-top: -40px;

    background: rgba(247, 245, 245, 0.403);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 30px 60px rgba(187, 183, 183, 0.516);
    border: 1px solid rgba(255,255,255,0.35);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

/* ================= ICON ================= */

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    background: #aa249d;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.35s ease, transform 0.35s ease;
}

.feature-icon img {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

/* FEATURE LINE ICON (OTHER SECTION) */
.feature-line i {
    font-size: 36px;
    color: #0b4d3a;

    background: rgba(70, 159, 236, 0.733);
    width: 64px;
    height: 64px;
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ================= TEXT ================= */

.feature-card-exact h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111;
}

.feature-card-exact p {
    font-size: 15px;
    line-height: 1.7;
    color: #272222;
}

/* ================= HOVER ================= */

.feature-card-exact:hover {
    transform: translateY(-12px);
    box-shadow: 0 55px 100px rgba(152, 171, 176, 0.738);
    background: rgba(255, 255, 255, 0.88);
}

.feature-card-exact:hover .feature-icon {
    background: #485c6a;
    transform: scale(1.08);
}

.feature-card-exact:hover h4 {
    color: #000;
}

/* ==================================================
   TABLET RESPONSIVE (WRAP CLEANLY)
   ================================================== */

@media (max-width: 1200px) {

    .features-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==================================================
   MOBILE RESPONSIVE (NEAT STACK)
   ================================================== */

@media (max-width: 768px) {

    .hero-features-exact {
        margin-top: -80px;
        padding-bottom: 90px;
    }

    .features-row {
        gap: 30px;
    }

    .feature-card-exact {
        width: 100%;
        max-width: 380px;
        margin-top: 0;
    }
}


/* ================= FOOTER ================= */
.footer {
    background: #06131e;
    color: #ffffff;
    padding: 70px 20px 30px;
    font-size: 14px;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-title-sm {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00c6ff;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 13px;
    opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer-links {
        margin-bottom: 20px;
    }
}
/* ================= FOOTER SOCIAL ICONS ================= */
.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    background: #00c6ff;
    color: #000;
    transform: translateY(-4px);
}

/* MOBILE CENTER */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }
}



/* FEATURES SECTION */
/* ================= CORE STRENGTHS ================= */
/* =====================================================
   CORE STRENGTHS – SECTION
   (RESPONSIVE ONLY, DESIGN UNCHANGED)
   ===================================================== */

.core-strengths {
    position: relative;
    padding: 120px 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.88),
            rgba(255, 255, 255, 0.82)
        ),
        url("Assets/Blue image.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* =====================================================
   CORE STRENGTH CARD (CENTER BLOCK)
   ===================================================== */

.core-strength-card h6 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1e88e5;
    margin-bottom: 14px;
}

.core-strength-card h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.core-strength-card p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* =====================================================
   CORE STRENGTHS – CONTENT BLOCK
   ===================================================== */

.core-strengths-content {
    max-width: 100%;
}

/* HEADINGS */
.core-strengths-content h6 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #021419;
    margin-bottom: 10px;
}

.core-strengths-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #3d85c8;
}

/* TEXT */
.core-strengths-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 22px;
    max-width: 100%;
}

/* =====================================================
   HEADING WITH ICON
   ===================================================== */

.strength-heading {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.strength-heading h2 {
    margin: 0;
    order: 1;
}

.strength-heading i {
    font-size: 34px;
    color: #1e88e5;
    line-height: 1;
    order: 2;
}

/* =====================================================
   RESPONSIVE (TEXT SCALE + PADDING ONLY)
   ===================================================== */

@media (max-width: 768px) {

    .core-strengths {
        padding: 80px 0;
    }

    .core-strength-card {
        padding: 40px 25px;
    }

    .core-strength-card h2,
    .core-strengths-content h2 {
        font-size: 32px;
    }

    .core-strength-card p,
    .core-strengths-content p {
        font-size: 16px;
    }
}


/* SERVICES – PARAGRAPH STYLE */
/* =====================================================
   SERVICES SECTION
   (RESPONSIVE ONLY – DESIGN UNCHANGED)
   ===================================================== */

.services-section {
    padding: 120px 0;
    background: #ffffff;
}

/* ================= SECTION TITLE ================= */

.services-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #111;
    text-align: center;
}

/* FIX ANCHOR OFFSET – HERO FEATURE CARDS ONLY */
.hero-features-exact {
    scroll-margin-top: 180px;
}

/* ================= PARAGRAPHS ================= */

.services-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 22px;
    max-width: 100%;
}

/* SERVICE TITLE INSIDE PARAGRAPH */
.services-section p strong {
    color: #103acf;
    font-weight: 600;
}

/* =====================================================
   SERVICES BULLET LIST
   ===================================================== */

.services-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.services-list li {
    position: relative;
    padding-left: 28px;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

/* ARROW BULLET */
.services-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 2px;
    color: #00070c;
    font-size: 18px;
    font-weight: 600;
}

/* SERVICE TITLE */
.services-list li strong {
    color: #1e88e5;
    font-weight: 600;
}

/* =====================================================
   SERVICES HEADING (ICON + TITLE)
   ===================================================== */

.services-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.services-heading i {
    font-size: 32px;
    color: #1e88e5;
    line-height: 1;
}

.services-title {
    text-align: center;
    margin-bottom: 40px;
}

/* =====================================================
   PRODUCT FEATURE SECTION
   ===================================================== */

.product-feature-section {
    padding: 80px 0;
    background: #ffffff;
}

/* GRID – 3 PER ROW */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   RESPONSIVE (TEXT + GRID ONLY)
   ===================================================== */

@media (max-width: 768px) {

    .services-section {
        padding: 80px 0;
    }

    .services-section h2 {
        font-size: 32px;
    }

    .services-section p {
        font-size: 16px;
    }

    .services-list li {
        font-size: 16px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}


/* =========================================
   INDEX – PRODUCT FEATURE SECTION ONLY
   ========================================= */

/* =====================================================
   PRODUCT FEATURE CARDS
   (RESPONSIVE ONLY – DESIGN UNCHANGED)
   ===================================================== */

/* PRODUCT VARIANT */
.product-feature-section .feature-card {
    background: linear-gradient(135deg, #115273, #1e88e5);
    color: #ffffff;
    box-shadow: 0 22px 50px rgba(17, 82, 115, 0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover */
.product-feature-section .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(17, 82, 115, 0.6);
}

/* Icon circle */
.product-feature-section .feature-icon {
    background:linear-gradient(135deg, #115273, #1e88e5);
}

/* Icon */
.product-feature-section .feature-icon i {
    color: #ffffff;
}

/* Title */
.product-feature-section .feature-card h5 {
    color: #ffffff;
}

/* Description */
.product-feature-section .feature-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Button */
.product-feature-section .product-btn {
    background: #ffffff;
    color: #115273;
    font-weight: 600;
}

.product-feature-section .product-btn:hover {
    background: #e6f1f8;
}

/* =====================================================
   BASE FEATURE CARD
   ===================================================== */

.feature-card {
    position: relative;
    background: #2fafe68b;
    border-radius: 16px;
    padding: 46px 24px 32px;
    text-align: center;
    color: #ffffff;
    min-height: 200px;
}

/* CRUSHER ALIGNMENT FIX */
.hero-features-exact .features-row {
    justify-content: flex-start;
    gap: 32px;
}

.hero-features-exact .feature-card-exact {
    text-align: left;
}

/* =====================================================
   ICON BADGE
   ===================================================== */

.feature-icon {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    background: #2b2b2b;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 22px;
    color: #ffffff;
}

/* =====================================================
   TEXT
   ===================================================== */

.feature-card h5 {
    font-size: 15px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 16px;
    letter-spacing: 0.4px;
    color: #0f0101;
}

/* =====================================================
   BUTTON
   ===================================================== */

.product-btn {
    display: inline-block;
    padding: 7px 22px;
    background: #f8e0f1a1;
    color: #000;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.product-btn:hover {
    background: #aa5f99a1;
}

/* =====================================================
   SECTION HEADER
   ===================================================== */

.feature-header {
    text-align: center;
    margin-bottom: 60px;
}

.feature-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #3d85c8;
    margin-bottom: 10px;
}

.feature-header p {
    font-size: 15px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* TITLE INSIDE CARD */
.feature-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    padding: 6px 12px;
    background: rgba(34, 24, 24, 0.914);
    border-radius: 8px;
    display: inline-block;
    letter-spacing: 0.4px;
}

/* =====================================================
   RESPONSIVE (STACK + TOUCH SAFE)
   ===================================================== */

@media (max-width: 768px) {

    .feature-card {
        min-height: auto;
        padding: 42px 22px 30px;
    }

    .feature-header h2 {
        font-size: 30px;
    }

    .feature-header p {
        font-size: 14px;
    }

    /* Disable hover lift on touch */
    .product-feature-section .feature-card:hover {
        transform: none;
        box-shadow: 0 22px 50px rgba(17, 82, 115, 0.45);
    }
}


/* ================= CONTACT SECTION ================= */
/* =====================================================
   CONTACT SECTION
   (RESPONSIVE ONLY – DESIGN UNCHANGED)
   ===================================================== */

.contact-section {
    padding: 110px 20px;
    background: linear-gradient(
        90deg,
        rgba(234, 232, 232, 0.878),
        rgba(231, 230, 230, 0.953)
    );
}

/* ================= HEADING ================= */

.contact-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2b2b2b;
}

.contact-subtitle {
    font-size: 17px;
    color: #444;
    opacity: 0.95;
}

/* =====================================================
   CONTACT INFO BOXES
   ===================================================== */

.contact-info {
    background: #ffffff;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 28px 22px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.contact-info h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #115273;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.contact-info-single p {
    margin-bottom: 14px;
}

.contact-info-single p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   MAP
   ===================================================== */

.map-container {
    height: 80%;
    min-height: 380px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(0,0,0,0.35);
}

.photo-card,
.map-card,
.contact-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.photo-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
}

.carousel-item img {
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}


/* =====================================================
   CONTACT FORM CARD
   ===================================================== */

.contact-form-card {
    background: #ffffff;
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 15px;
    border: 1px solid #ffffff;
    box-shadow: 0 25px 55px rgba(0,0,0,0.35);

    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-card h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #115273;
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* =====================================================
   FORM INPUTS
   ===================================================== */

.contact-form-card .form-control {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #222;
    border-radius: 10px;
    padding: 7px 11px;
    font-size: 15px;
    height: 80%;
}

.contact-form-card .form-control::placeholder {
    color: rgba(0, 0, 0, 0.55);
}

.contact-form-card .form-control:focus {
    border-color: #115273;
    box-shadow: none;
    background: #ffffff;
}

/* =====================================================
   SUBMIT BUTTON
   ===================================================== */

.contact-btn {
    background: #115273;
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    margin-top: auto;
    align-self: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(17, 82, 115, 0.35);
}

/* =====================================================
   RESPONSIVE (STACK + SCALE ONLY)
   ===================================================== */

@media (max-width: 768px) {

    .contact-section {
        padding: 90px 20px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-form-card {
        padding: 30px;
    }

    .map-container {
        min-height: 300px;
    }

    /* Button stays readable on small screens */
    .contact-btn {
        align-self: stretch;
        text-align: center;
    }
}


/* ================= SERVICES SECTION ================= */
/* =====================================================
   SERVICES SECTION
   (RESPONSIVE ONLY – DESIGN UNCHANGED)
   ===================================================== */
/* =====================================================
   SERVICES SECTION – CLEAN & STABLE
   ===================================================== */

.services-section {
    position: relative;
    padding: 90px 0;
    background:
        linear-gradient(
            rgba(242, 242, 242, 0.629),
            rgba(242, 242, 242, 0.452)
        ),
        url("assets/white.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ================= HEADER ================= */

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #6bb2c9;
    font-weight: 600;
}

.services-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 10px 0;
    color: #3d85c8;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #6bb2c9;
    margin: 0 auto;
}

/* ================= GRID (BASE) ================= */
/* Desktop-first: 3 per row */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 50px;
}

/* ================= SERVICE CARD ================= */

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px;
}

.service-card i {
    font-size: 28px;
    color: #2d3f83;
    border: 2px solid #2d3f83;
    padding: 10px;
    border-radius: 6px;
    min-width: 50px;
    text-align: center;
}

.service-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f171d;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}
/* =====================================================
   FINAL DESKTOP OVERRIDE – FIX 4 COLUMN ISSUE
   ===================================================== */

@media (min-width: 1200px) {

    /* Force CSS Grid */
    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
    }

    /* Kill Bootstrap width / flex rules */
    .services-grid > .service-card {
        width: auto !important;
        max-width: none !important;
        flex: 0 0 auto !important;
    }
}

/* ================= TABLET ================= */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card i {
        font-size: 24px;
        padding: 8px;
    }
}


/* ================= SCHOOL ERP NAVBAR ================= */
.erp-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(10, 25, 40, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo a {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}
/* ================= PRODUCTS DROPDOWN (ERP NAVBAR) ================= */

/* Parent dropdown */
.nav-menu .nav-item.dropdown {
    position: relative;
}

/* Products link */
.nav-menu .nav-item.dropdown > .nav-link,
.nav-menu .nav-item.dropdown > a {
    color: #ffffff;
    font-size: 15px;
    opacity: 0.9;
    cursor: pointer;
}

.nav-menu .nav-item.dropdown > a:hover {
    opacity: 1;
}

/* Main dropdown menu */
.nav-menu .dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;

    min-width: 220px;
    padding: 10px 0;

    background: rgba(10, 25, 40, 0.96);
    backdrop-filter: blur(12px);

    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);

    display: none;
    z-index: 999;
}

/* Show dropdown on hover */
.nav-menu .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}

/* Dropdown items */
.nav-menu .dropdown-item {
    color: #ffffff;
    font-size: 14px;
    padding: 10px 18px;
    opacity: 0.9;
    white-space: nowrap;
}

.nav-menu .dropdown-item:hover {
    opacity: 1;
    background: rgba(255,255,255,0.08);
}

/* Divider */
.dropdown-divider {
    border-color: rgba(255,255,255,0.15);
}

/* ================= SUBMENU ================= */

.dropdown-submenu {
    position: relative;
}

/* Submenu panel */
.dropdown-submenu > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 6px;

    min-width: 200px;
    display: none;
}

/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* ================= PREVENT SCREEN OVERFLOW ================= */
@media (max-width: 1200px) {
    .dropdown-submenu > .dropdown-menu {
        left: auto;
        right: 100%;
        margin-left: 0;
        margin-right: 6px;
    }
}

/* ================= MOBILE (STACKED) ================= */
@media (max-width: 768px) {

    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 10px;
    }

    .dropdown-submenu > .dropdown-menu {
        position: static;
        margin: 6px 0 0;
    }
}

/* MENU */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 1;
}

/* DEMO BUTTON */
.nav-btn {
    padding: 8px 20px;
    border-radius: 22px;
    background: #ffffff;
    color: #0b1d2a !important;
    font-weight: 600;
}

/* OFFSET FOR FIXED NAVBAR */


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* simple version */
    }
}
.nav-logo img {
    position: relative;
    top: 3px;   /* adjust: 2–5px as needed */
}

.nav-logo .navbar-brand {
    text-decoration: none;
}

.brand-text {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 0;
}

/* ================= HERO ================= */
.erp-hero {
    min-height: 80vh;        /* FULL HEIGHT */
    padding: 140px 20px 0px;
    text-align: center;
    background-image:
        linear-gradient(
            rgba(11, 29, 42, 0.65),
            rgba(11, 29, 42, 0.65)
        ),
        url("Assets/scho.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    color: #ffffff;
}
.erp-hero .container {
    max-width: 1200px;
    margin: 0 auto; /* ✅ true centering */
}

.erp-hero {
    justify-content: center; /* horizontal centering of container */
}


.erp-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.erp-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}


.hero-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.hero-list li {
    margin-bottom: 8px;
}
.erp-hero,
.erp-hero h1,
.erp-hero p,
.erp-hero li {
    color: #ffffff;
}


.erp-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffffff;
    color: #115273;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.erp-btn.large {
    padding: 14px 36px;
}

.erp-card img {
    width: 350px;
    height: 200px;
    flex-shrink: 0;
}
/* =====================================================
   ERP HERO – RESPONSIVE ONLY
   (DESKTOP UNCHANGED)
   ===================================================== */

/* Tablet */
@media (max-width: 992px) {

    .erp-hero {
        padding: 120px 20px 40px;
        min-height: 70vh;
    }

    .erp-hero h1 {
        font-size: 38px;
    }

    .erp-hero p {
        font-size: 16px;
        max-width: 520px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .erp-hero {
        padding: 100px 18px 40px;
        min-height: auto;
    }

    .erp-hero h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .erp-hero p {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-list li {
        font-size: 14px;
    }

    .erp-btn {
        padding: 12px 26px;
        font-size: 14px;
    }
}


/* ================= SECTIONS ================= */
.erp-why,
.erp-benefits,
.erp-panels {
    padding: 100px 20px;
    background: #ffffff;
}

.subtitle {
    color: #555;
    margin-bottom: 40px;
}

/* ================= GRIDS ================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* ================= CARDS ================= */
.erp-card {
    background: #f7f7f7;
    padding: 30px 24px;
    border-radius: 14px;
    text-align: center;
    

    /* keeps all ERP cards SAME height */
    min-height: 260px;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.erp-why h2{
    font-size: 34px;
    font-weight: 700;
    color: #3d85c8;
    margin-bottom: 10px;
}
/* FIX CARD HOVER JUMP / STRETCH */
.erp-card {
    box-sizing: border-box;
    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
}

/* SAFE HOVER */
.erp-card:hover {
    transform: translateY(-6px); /* move only, not resize */
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.panel-card,

.module-card {
    background: #cdcaca;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgb(146, 144, 146);
    transition: transform 0.3s ease;
}

.panel-card:hover,
/* 
Module */
/* ================= MODULES – ALT DESIGN ================= */

.alt-modules {
    padding: 120px 20px;
    background: #f6f9fc;
}

/* HEADER */
.alt-modules .modules-header {
    margin-bottom: 70px;
}

.alt-modules .modules-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #3d85c8;
    margin-bottom: 10px;
}

.alt-modules .modules-header p {
    font-size: 16px;
    color: #555;
}

/* LIST */
.modules-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* STRIP CARD */
.module-strip {
    display: flex;
    gap: 20px;
    align-items: flex-start;

    background: #ffffff;
    border-radius: 18px;
    padding: 28px 26px;

    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-strip:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(0,0,0,0.18);
}

/* ICON BLOCK */
.module-icon {
    min-width: 54px;
    height: 54px;
    border-radius: 14px;

    background: linear-gradient(135deg, #115273, #1e88e5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-icon i {
    font-size: 22px;
    color: #ffffff;
}

/* TEXT */
.module-text h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #115273;
}

.module-text p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .modules-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .alt-modules {
        padding: 90px 20px;
    }

    .alt-modules .modules-header h2 {
        font-size: 30px;
    }
}

/* ================= BENEFITS ================= */
.erp-benefits {
    background: #eef4f8;
}

.benefits-list {
    max-width: 600px;
    margin: auto;
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 12px;
}

/* ================= CTA ================= */
.erp-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0b1d2a, #115273);
    color: #ffffff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .erp-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}
/* ================= MODERN FEATURES ================= */

.erp-features {
    padding: 120px 20px;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.85),
            rgba(255, 255, 255, 0.95)
        ),
        url("Assets/New image.png"); /* ⚠️ remove backslash */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* HEADER */
.features-header {
    
    margin-bottom: 60px;
}

.features-title {
    font-size: 38px;
    font-weight: 800;
    color: #0b1d2a;
    margin-bottom: 12px;
}

.features-subtitle {
    font-size: 17px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* GRID */
.erp-features .features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

/* CARD */
.erp-features .feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 24px 34px;
    text-align: center;

    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.erp-features .feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.2);
}

/* ICON */
.erp-features .feature-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 20px;
    border-radius: 50%;

    background: linear-gradient(135deg, #115273, #1e88e5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.erp-features .feature-card h4 {
    margin-top: 10px;     /* add space above heading */
    margin-bottom: 10px;
}


.erp-features .feature-icon i {
    font-size: 28px;
    color: #ffffff;
}

/* TEXT */
.erp-features .feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #115273;
}

.erp-features .feature-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .erp-features .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .erp-features {
        padding: 90px 20px;
    }

    .features-title {
        font-size: 30px;
    }

    .erp-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .erp-features .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   ERP SECTIONS – RESPONSIVE ONLY
   (DESKTOP UNCHANGED)
   ===================================================== */

/* ================= TABLET ================= */
@media (max-width: 992px) {

    /* Section padding */
    .erp-why,
    .erp-benefits,
    .erp-panels {
        padding: 80px 20px;
    }

    /* 3 & 4 column grids → 2 columns */
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    /* ERP cards scale better */
    .erp-card {
        min-height: 240px;
        padding: 26px 20px;
    }

    /* ERP headings */
    .erp-why h2 {
        font-size: 30px;
    }

    /* Feature grid (5 → 3 already defined, just spacing) */
    .erp-features .features-grid {
        gap: 24px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

    /* Section padding */
    .erp-why,
    .erp-benefits,
    .erp-panels,
    .erp-cta {
        padding: 70px 18px;
    }

    /* All grids → single column */
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ERP cards */
    .erp-card {
        min-height: auto;
        padding: 24px 18px;
    }

    /* Headings */
    .erp-why h2 {
        font-size: 26px;
    }

    /* Alt modules */
    .alt-modules {
        padding: 80px 18px;
    }

    .alt-modules .modules-header h2 {
        font-size: 28px;
    }

    /* Module strips stack cleanly */
    .module-strip {
        padding: 24px 20px;
        gap: 16px;
    }

    /* ERP features grid already collapses → spacing only */
    .erp-features {
        padding: 80px 18px;
    }

    .features-title {
        font-size: 28px;
    }
}

/* ================= CRUSHER FEATURES – ICON STYLE ================= */

/* ================= CRUSHER FEATURES – ICON ONLY ================= */

.crusher-features {
    padding: 120px 0;
    background: #ffffff;
}

/* HEADER */
.crusher-features .features-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #3d85c8;
    margin-bottom: 10px;
}

.crusher-features .features-header p {
    font-size: 15px;
    color: #666;
}

/* GRID */
.crusher-features .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 40px;
    margin-top: 60px;
    text-align: center;
}

/* FEATURE ITEM – NOT A CARD */
.crusher-features .feature-box {
    padding: 0;
    margin: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* ICON */
.crusher-features .feature-box i {
    font-size: 34px;
    width: 68px;
    height: 68px;
    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    background: linear-gradient(135deg, #7157be, #4dabf7);
    color: #ffffff;
}

/* TITLE */
.crusher-features .feature-box h5 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

/* DESCRIPTION */
.crusher-features .feature-box p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* NO HOVER EFFECT AT ALL */
.crusher-features .feature-box:hover,
.crusher-features .feature-box i:hover {
    transform: none;
    box-shadow: none;
}
/* ================= CRUSHER FEATURES – HOVER EFFECT ================= */

.crusher-features .feature-box {
    text-align: center;
}

/* ICON */
.crusher-features .feature-box i {
    font-size: 34px;
    width: 68px;
    height: 68px;
    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    background: linear-gradient(135deg, #7157be, #4dabf7);
    color: #ffffff;

    transition: 
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

/* TITLE */
.crusher-features .feature-box h5 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

/* TEXT */
.crusher-features .feature-box p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

/* 🔥 HOVER EFFECT (NO CARD, NO SHIFT) */
.crusher-features .feature-box:hover i {
    transform: scale(1.12);
    background: linear-gradient(135deg, #4dabf7, #2fb0e6);
    box-shadow: 0 12px 30px rgba(77, 171, 247, 0.45);
}

.crusher-features .feature-box:hover h5 {
    color: #1e88e5;
}

.crusher-features .feature-box:hover p {
    color: #444;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .crusher-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .crusher-features .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}



/* ================= CRUSHER MODULES – BANNER STYLE ================= */

.crusher-modules-banner {
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        #ebedef41,
        #8fb1cc91
    );
    color: #ffffff;
}

/* GRID */
.modules-banner-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}


/* IMAGE */
.modules-banner-image img {
    width: 90px;
    max-width: 700px;   /* ⬆ increased width */
    height: auto;

    border-radius: 18px;
    box-shadow: 0 26px 55px rgba(0,0,0,0.25);
}
/* ================= CRUSHER MODULES BANNER ================= */

.crusher-modules-banner {
    position: relative;
    min-height: 80vh;              /* full section height */
    display: flex;
    align-items: center;            /* vertical center */
    justify-content: center;        /* horizontal center */

    padding: 120px 20px;

    background-image:
        linear-gradient(
            90deg,
            rgb(0, 0, 0),
            rgba(215, 219, 222, 0)
        ),
        url("Assets/Trakpactor.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;
}


/* Ensure content stays above background */
.crusher-modules-banner .container {
    position: relative;
    z-index: 2;
}

.modules-banner-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* CONTENT CENTERING */
.modules-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align:center;
}

/* HEADING */
.modules-banner-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
}

/* SUBTITLE */
.modules-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 520px;
}

/* MODULE LIST */
.modules-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modules-points li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* NUMBER */
.modules-points span {
    font-weight: 700;
    font-size: 18px;
    color: #ffeb3b;
    min-width: 28px;
}

/* HOVER EFFECT (TEXT ONLY) */
.modules-points li:hover {
    transform: translateX(6px);
    transition: transform 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .modules-banner-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modules-banner-image img {
        margin: 0 auto;
    }

    .modules-points li {
        justify-content: center;
    }
}


/* ================= FIX NESTED SUBMENU HOVER ================= */

/* Submenu container */
.dropdown-submenu {
    position: relative;
}

/* Submenu panel */
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;          /* attach to parent */
    margin-left: 0;      /* 🔥 REMOVE GAP */
    display: none;
    position: absolute;
}

/* Keep submenu open while hovering parent OR submenu */
.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu > .dropdown-menu:hover {
    display: block;
}

/* Arrow indicator */
.dropdown-submenu > .dropdown-item::after {
    float: right;
    opacity: 0.6;
}
/* ================= MOBILE NAVBAR ================= */

/* Toggle button */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
}

/* Mobile styles */
@media (max-width: 768px) {

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        background: rgba(10, 25, 40, 0.98);
        backdrop-filter: blur(14px);

        flex-direction: column;
        align-items: flex-start;
        padding: 20px;

        display: none;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        padding: 10px 0;
    }

    /* Dropdowns stack */
    .dropdown-menu {
        position: static !important;
        display: none;
        width: 100%;
        margin-top: 6px;
        box-shadow: none;
    }

    .dropdown.show > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > .dropdown-menu {
        position: static !important;
        display: none;
        margin-left: 0;
    }

    .dropdown-submenu.show > .dropdown-menu {
        display: block;
    }
}
/* ================= DEMO CARD ================= */
.erp-demo-card {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0b1d2a, #115273);
}

.demo-card-inner {
    max-width: 900px;
    margin: auto;
    text-align: center;

    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    padding: 60px 40px;

    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    color: #ffffff;
}

.demo-card-inner h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
}

.demo-card-inner p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.demo-card-btn {
    padding: 14px 36px;
    border-radius: 30px;
    background: #ffffff;
    color: #115273;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-card-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(255,255,255,0.35);
}

/* Mobile */
@media (max-width: 768px) {
    .demo-card-inner {
        padding: 45px 24px;
    }

    .demo-card-inner h2 {
        font-size: 28px;
    }
}
/* SECTION BACKGROUND */
.erp-panels {
    padding: 80px 0;
    background: #fefeff63; /* soft blue like reference */
}

/* SPLIT LAYOUT */
.services-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.services-content {
    flex: 1;
}

.services-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #3d85c8;
    margin-bottom: 50px;
    text-align: center;
}

/* SERVICE ITEMS */
.service-item {
    margin-bottom: 12px;
}

.service-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.service-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin: 5px;
}
.services-split {
    display: flex;
    align-items: center;
    gap: 20px !important;   /* increase this value as needed */
}


/* RIGHT IMAGE */
.services-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.services-image img {
    max-width: 100%;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .services-split {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .services-content h2 {
        font-size: 34px;
        margin-bottom: 14px;
    }
}



/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #ffffff;
    color: #1f2937;
}

/* ================= HERO ================= */
/* HERO */
 .koral-hero {
    position: relative;
    min-height: 90vh;
    background: url("Assets/New\ image.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.588),
        rgba(213, 209, 213, 0.192)
    );
}

/* CENTER CONTENT */
.hero-center {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    color: #ffffff;
}

/* TITLE */


/* DESCRIPTION */
.hero-center p {
    font-size: 16px;
    color: #e0e0e0;
    max-width: 720px;
    margin: 0 auto 32px;
}



.hero-btn.primary {
    background: #ff6a5c;
    color: #ffffff;
}

.hero-btn.primary:hover {
    background: #ff857a;
}

.hero-btn.secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.hero-btn.secondary:hover {
    background: #ffffff;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-center h1 {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
/* ================================
   KORAL HERO – ISOLATED STYLES
   ================================ */


/* CENTER CONTENT */
.koral-hero .hero-center {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    color: #ffffff;
}

/* TITLE */
.koral-hero .hero-center h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* DESCRIPTION */
.koral-hero .hero-description {
    max-width: 760px;
    margin: 0 auto 26px;
    font-size: 16px;
    line-height: 1.7;
    color: #e5e5e5;
}

/* BULLET POINTS */
.koral-hero .hero-points {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 520px;
    text-align: left;
    display: inline-block; /* ✅ makes it center under text */
    text-align: left;      /* keeps bullets readable */
}

.koral-hero .hero-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #ffffff;
}

/* CUSTOM BULLET */
.koral-hero .hero-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #7697db;
    font-weight: 700;
}

/* ================================
   HERO SERVICE CARDS (CIRCULAR)
   ================================ */

.koral-hero .hero-services {
    position: absolute;
    bottom: -80px;
    right: 60px;             /* ✅ moves cards to the right */
    left: auto;              /* ✅ disable left alignment */
    transform: none;         /* ✅ remove centering transform */
    display: flex;
    gap: 36px;
    z-index: 3;
    scroll-margin-top: 90px;
}


/* SERVICE CARD */
.koral-hero .service-card {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
 overflow: hidden; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 22px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.koral-hero .service-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 28px 60px rgba(0,0,0,0.4);
}

/* CARD TITLE */
.koral-hero .service-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

/* CARD TEXT */
.koral-hero .service-card p {
    font-size: 13px;
    line-height: 1.4;
    color: #555;
    max-width: 170px;
}

/* ================================
   RESPONSIVE (SCOPED)
   ================================ */

@media (max-width: 992px) {
    .koral-hero .hero-services {
        gap: 24px;
    }

    .koral-hero .service-card {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .koral-hero {
        padding-bottom: 260px;
    }

    .koral-hero .hero-center h1 {
        font-size: 32px;
    }

    .koral-hero .hero-services {
        flex-direction: column;
        bottom: -240px;
    }
}
.koral-hero .bg-manufacturing {
    background: url("Assets/crusher.png") center / cover no-repeat;
}

/* =====================================================
   KORAL HERO – RESPONSIVE ONLY
   (DESKTOP UNCHANGED)
   ===================================================== */

/* ================= TABLET ================= */
@media (max-width: 992px) {

    .koral-hero .hero-center {
        max-width: 760px;
    }

    .koral-hero .hero-center h1 {
        font-size: 38px;
    }

    .koral-hero .hero-services {
        right: 40px;
        bottom: -90px;
        gap: 24px;
    }

    .koral-hero .service-card {
        width: 200px;
        height: 200px;
        padding: 20px;
    }

    .koral-hero .service-card h4 {
        font-size: 15px;
    }

    .koral-hero .service-card p {
        font-size: 12.5px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

    .koral-hero {
        padding-bottom: 280px; /* space for stacked cards */
    }

    .koral-hero .hero-center h1 {
        font-size: 30px;
        line-height: 1.25;
    }

    .koral-hero .hero-description {
        font-size: 15px;
    }

    .koral-hero .hero-points {
        max-width: 100%;
        text-align: left;
    }

    /* Stack circular cards cleanly */
    .koral-hero .hero-services {
        position: absolute;
        right: 50%;
        transform: translateX(50%);
        bottom: -260px;
        flex-direction: column;
        gap: 18px;
    }

    .koral-hero .service-card {
        width: 190px;
        height: 190px;
    }
}
/* =====================================================
   KORAL HERO – MOBILE FLOW FIX
   (DESKTOP UNCHANGED)
   ===================================================== */

@media (max-width: 576px) {

    /* Remove absolute positioning ONLY on mobile */
    .koral-hero .hero-services {
        position: static;          /* ⬅ key fix */
        transform: none;
        margin-top: 40px;          /* space below hero content */
        align-items: center;
    }

    /* Reduce extra bottom padding once overlap is removed */
    .koral-hero {
        padding-bottom: 80px;
    }
}


/* ================= SERVICES ================= */
.crusher-services {
    padding: 90px 0;
    background: #f8fafc;
}

.crusher-services h2 {
    font-size: 36px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-item {
    padding: 26px;
    background: #ffffff;
    text-align: center;
    font-weight: 600;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   CRUSHER SERVICES – RESPONSIVE ONLY
   (DESKTOP UNCHANGED)
   ===================================================== */

/* ================= TABLET ================= */
@media (max-width: 992px) {

    .crusher-services {
        padding: 80px 20px;
    }

    .crusher-services h2 {
        font-size: 32px;
    }

    /* 4 → 2 columns */
    .crusher-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .service-item {
        padding: 24px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

    .crusher-services {
        padding: 70px 18px;
    }

    .crusher-services h2 {
        font-size: 28px;
    }

    /* 2 → 1 column */
    .crusher-services .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-item {
        padding: 22px;
    }

    /* Disable hover lift on touch */
    .service-item:hover {
        transform: none;
    }
}

/* ================= ERP FEATURES ================= */

.erp-features {
    padding: 125px 0;
    background: #f5f9fc;
}

.features-header {
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #3d85c8;
    margin-bottom: 10px;
}

.features-header p {
    font-size: 15px;
    color: #555;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* FEATURE BOX */
.feature-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.feature-box i {
    font-size: 34px;
    color: #2fb0e6;
    margin-bottom: 16px;
}

.feature-box h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.feature-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}



/* ================= RICE MILL HERO ================= */
.rice-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url("Assets/Rice Mill image.png"); /* 🔁 your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* DARK OVERLAY */
.rice-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(239, 241, 241, 0),
        rgba(242, 244, 243, 0)
    );
}

/* CONTENT */
.rice-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: left;
    margin-left: 50px;        /* ✅ stick to left */
    margin-right: auto;
    color: #ffffff;
}

/* TAGLINE */
.rice-hero-tagline {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #ffcc33;
    margin-bottom: 14px;
    text-transform: uppercase;
}

/* TITLE */
.rice-hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.rice-hero-content p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 32px;
    color: #e8f5f1;
}

/* BUTTONS */
.rice-hero-buttons {
    display: flex;
    gap: 18px;
}

.rice-btn {
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rice-btn.primary {
    background: #ffcc33;
    color: #05382c;
}

.rice-btn.primary:hover {
    background: #ffd966;
}

.rice-btn.secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.rice-btn.secondary:hover {
    background: #ffffff;
    color: #05382c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .rice-hero {
        min-height: 80vh;
        padding: 80px 20px;
    }

    .rice-hero-content h1 {
        font-size: 32px;
    }

    .rice-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =====================================================
   RICE HERO – RESPONSIVE ONLY
   (DESKTOP UNCHANGED)
   ===================================================== */

/* Tablet */
@media (max-width: 992px) {

    .rice-hero {
        min-height: 80vh;
        padding: 90px 24px;
    }

    .rice-hero-content {
        max-width: 680px;
    }

    .rice-hero-content h1 {
        font-size: 38px;
    }

    .rice-hero-content p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .rice-hero {
        min-height: auto;
        padding: 80px 18px;
    }

    .rice-hero-content {
        text-align: center;
    }

    .rice-hero-tagline {
        font-size: 12px;
        letter-spacing: 1.6px;
    }

    .rice-hero-content h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    .rice-hero-content p {
        font-size: 15px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .rice-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .rice-btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
}



/* SECTION HEADER */
.services-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 30px;
}

.services-section-header h2 {
    font-size: 48px;
    font-weight: 350px;
    color: #03150e;
    margin-bottom: 12px;
}

.services-section-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5f57;
}
/* SECTION */
.rice-mill-services-circular {
    padding: 100px 0;
    background: #ffffff;
}


/* MAIN LAYOUT */
.services-diagram {
    display: flex;
    align-items: center;
    gap: 130px;
     margin-top: -20px;
}

/* LEFT SIDE */
.diagram-left {
    position: relative;
    width: 360px;
    margin-left: 50px;
    height: 360px;
}

/* CENTER CIRCLE */
.center-circle {
    width: 280px;
    height: 280px;
    background: #c5b64adf;
    border-radius: 50%;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 2;
}

/* OUTER DOTTED RING */
.outer-dotted {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed #010f0a;
}


.d1 { top: 20px; right: 80px; }
.d2 { top: 90px; right: 20px; }
.d3 { top: 170px; right: 0; }
.d4 { bottom: 110px; right: 20px; }
.d5 { bottom: 40px; right: 80px; }
.d6 { bottom: 10px; right: 140px; }

/* RIGHT SIDE */
.diagram-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* STEP */
.step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* CONNECTOR LINE */
.step::before {
    content: "";
    position: absolute;
    left: -100px;
    width: 60px;
    border-top: 2px dashed #000000;
}

/* NUMBER */
.num {
    width: 46px;
    height: 46px;
    left: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
}

/* LABEL */
.label {
    background: #3675c369;
    padding: 16px 26px;
    border-radius: 40px;
    font-size: 17px;
    color: #03150e;
    min-width: 600px;
}

/* COLORS */
.c1 { background: #00bcd4; }
.c2 { background: #4caf50; }
.c3 { background: #3f51b5; }
.c4 { background: #ff9800; }
.c5 { background: #e91e63; }
.c6 { background: #00acc1; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-diagram {
        flex-direction: column;
        gap: 80px;
    }

    .label {
        min-width: auto;
        text-align: center;
    }

    .step::before {
        display: none;
    }
}


/* =====================================================
   RICE MILL CIRCULAR SERVICES – RESPONSIVE ONLY
   (DESKTOP UNCHANGED)
   ===================================================== */

/* ================= TABLET ================= */
@media (max-width: 992px) {

    .services-diagram {
        flex-direction: column;
        gap: 70px;
        margin-top: 0;
    }

    .diagram-left {
        margin-left: 0;
        width: 320px;
        height: 320px;
    }

    .center-circle {
        width: 240px;
        height: 240px;
        font-size: 22px;
        top: 40px;
        left: 40px;
    }

    .diagram-right {
        align-items: center;
    }

    .step {
        justify-content: center;
    }

    .step::before {
        display: none;
    }

    .label {
        min-width: auto;
        max-width: 520px;
        text-align: center;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

    .services-section-header h2 {
        font-size: 32px;
    }

    .services-section-header p {
        font-size: 16px;
    }

    .rice-mill-services-circular {
        padding: 80px 0;
    }

    .diagram-left {
        width: 260px;
        height: 260px;
    }

    .center-circle {
        width: 200px;
        height: 200px;
        font-size: 20px;
        top: 30px;
        left: 30px;
    }

    .outer-dotted {
        border-width: 1.5px;
    }

    .diagram-right {
        gap: 16px;
    }

    .step {
        gap: 12px;
    }

    .num {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .label {
        font-size: 15px;
        padding: 14px 20px;
        max-width: 100%;
    }
}

/* ================= FEATURES – MODERN (2 PER ROW) ================= */

.rice-mill-features-modern {
    padding: 110px 0;
    background: #ffffff;
    
}
.features-modern-header {
    max-width: 720px;
    margin: 0 auto 70px;   /* ✅ center horizontally */
    text-align: center;   /* ✅ center text */
}
.features-modern-header p {
    margin-left: auto;
    margin-right: auto;
}


/* HEADER */
.features-modern-header {
    max-width: 720px;
    margin-bottom: 70px;
}

.features-modern-header h2 {
    font-size: 44px;
    font-weight: 800;
    color: #03150e;
    margin-bottom: 14px;
}

.features-modern-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5f57;
}

/* GRID – 2 FEATURES PER ROW */
.features-modern-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;   /* ✅ horizontal gap between columns */
    row-gap: 40px;      /* ✅ vertical gap between rows */
}


/* FEATURE ROW */
.feature-line {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

/* ICON */
.feature-icon {
    font-size: 28px;
    color: #0b4d3a;
    background: linear-gradient(135deg, #115273, #1e88e5);
    width: 56px;
    height: 56px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

/* 🔒 SCOPED ICON SIZE – RICE MILL FEATURES ONLY */
.rice-mill-features-modern .feature-line > i {
    font-size: 38px;              /* increase icon size */
    color: #f2f7f5;

    background: linear-gradient(135deg, #115273, #1e88e5);
    width: 68px;
    height: 68px;
    border-radius: 16px;
    
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}
.rice-mill-why-choose {
    scroll-margin-top: 120px; /* adjust based on navbar height */
}

/* TEXT */
.feature-line h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0b4d3a;
    margin-bottom: 6px;
}

.feature-line p {
    font-size: 16px;
    line-height: 1.7;
    color: #4f6f63;
    max-width: 520px;
    
}

/* SUBTLE HOVER (NO CARD EFFECT) */
.feature-line:hover .feature-icon {
    background: rgba(11, 77, 58, 0.14);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .rice-mill-features-modern {
        padding: 90px 0;
    }

    .features-modern-header h2 {
        font-size: 36px;
    }

    .features-modern-list {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.features-modern-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    column-gap: 60px;
    row-gap: 40px;

    max-width: 1000px;   /* ✅ controls total width */
    margin: 0 auto;      /* ✅ centers features block */
}

/* =====================================================
   RICE MILL FEATURES (MODERN) – RESPONSIVE ONLY
   (DESKTOP UNCHANGED)
   ===================================================== */

/* ================= TABLET ================= */
@media (max-width: 992px) {

    .rice-mill-features-modern {
        padding: 90px 20px;
    }

    .features-modern-header {
        margin-bottom: 60px;
    }

    .features-modern-header h2 {
        font-size: 36px;
    }

    /* Stack features vertically */
    .features-modern-list {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .feature-line {
        align-items: flex-start;
    }

    .feature-line h4 {
        font-size: 20px;
    }

    .feature-line p {
        font-size: 15.5px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

    .rice-mill-features-modern {
        padding: 80px 18px;
    }

    .features-modern-header h2 {
        font-size: 30px;
    }

    .features-modern-header p {
        font-size: 16px;
    }

    .feature-line {
        gap: 16px;
    }

    /* Scale icon slightly for phones */
    .rice-mill-features-modern .feature-line > i {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }

    .feature-line h4 {
        font-size: 18px;
    }

    .feature-line p {
        font-size: 15px;
        max-width: 100%;
    }
}


/* ================= WHY CHOOSE SECTION ================= */

.rice-mill-why-choose {
    padding: 40px 0;
    background: #f7faf9;
}

/* HEADER */
.why-choose-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 70px;
}

.why-choose-header h2 {
    font-size: 42px;
    font-weight: 500;
    color: #010911;
    margin-bottom: 12px;
}



/* GRID */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ✅ 4 in one row */
    gap: 60px;
    max-width: 1200px;  /* gives breathing space */
    margin: 20px auto;
}

/* CENTER ITEMS INSIDE GRID */
.why-choose-grid {
    justify-items: center;   /* ✅ centers each why-item horizontally */
}

/* CENTER CONTENT INSIDE EACH ITEM */
.why-item {
    text-align: center;      /* centers icon + heading */
}


/* CENTER ICON */
.why-item i {
    margin-left: auto;
    margin-right: auto;
}



/* ITEM */
.why-item {
    text-align: center;
}

.why-item i {
    font-size: 38px;
    color: #f4f6f5;

    width: 70px;
    height: 70px;
    border-radius: 16px;

    background: linear-gradient(135deg, #115273, #1e88e5);   /* soft green box */
    border: 1px solid rgba(7, 2, 0, 0.792);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;
}


.why-item h4 {
    font-size: 22px;
    font-weight: 650;
    color: #0b4d3a;
    margin-bottom: 6px;
}

.why-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4f6f63;
    max-width: 460px;
}
/* ICON HOVER EFFECT */
.why-item i {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.why-item:hover i {
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 18px 40px rgba(30, 136, 229, 0.45);
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-header h2 {
        font-size: 34px;
    }
}
@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr); /* tablet */
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .why-choose-grid {
        grid-template-columns: 1fr; /* mobile */
    }
}


/* ================= RMC HERO – IMAGE STYLE ================= */

.rmc-hero-alt {
    position: relative;
    margin-top: 68px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* RIGHT SIDE IMAGE */
.rmc-hero-bg {
    position: absolute;
    inset: 0;
    background: url("Assets/Concrete.jpg") center / cover no-repeat;
    z-index: 1;
}

/* LEFT CURVED PANEL */
.rmc-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
     max-width: 1400px;   /* prevents ultra-wide stretch */
    margin-left: 0;     /* ✅ LEFT LOCK */
    margin-right: auto;
    padding-left: 80px; /* spacing from left */

}

.rmc-hero-text {
    background: #8b3f34;
    color: #ffffff;

    padding: 100px 80px 190px 60px;
    max-width: 650px;
    margin-left: -120px;

    border-top-right-radius: 700px;
    border-bottom-right-radius: 700px;
}
@media (min-width: 1600px) {
    .rmc-hero-content {
        padding-left: 120px;
    }
}

/* SMALL TITLE */
.rmc-hero-text h6 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #ffffff;
}

/* MAIN TITLE */
.rmc-hero-text h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

/* DESCRIPTION */
.rmc-hero-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
}

/* BUTTON */
.rmc-btn-alt {
    display: inline-block;
    padding: 12px 34px;
    background: #ffffff;
    color: #8b3f34;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rmc-btn-alt:hover {
    background: #ffeb3b;
    color: #000;
}

/* =========================================================
   RESPONSIVE ONLY (NO DESIGN CHANGE)
   ========================================================= */

/* TABLET */
@media (max-width: 992px) {

    .rmc-hero-alt {
        min-height: auto;
    }

    .rmc-hero-text {
        max-width: 100%;
        margin-left: 0;
        padding: 70px 30px;
        border-radius: 0;
    }

    .rmc-hero-text h1 {
        font-size: 36px;
    }

    .rmc-hero-text p {
        max-width: 100%;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .rmc-hero-text {
        padding: 60px 24px;
    }

    .rmc-hero-text h1 {
        font-size: 30px;
    }

    .rmc-hero-text p {
        font-size: 15px;
    }
}


/* ===============================
   BASE
   =============================== */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #ffffff;
    color: #111827;
}

/* ===============================
   SECTION
   =============================== */
.rmc-outcomes-scroll {
    padding: 80px 0 120px;
    background: #ffffff;
    overflow: hidden;
    scroll-margin-top: 50px;
}

/* Header */
.section-header {
    max-width: 1100px;
    margin: 0 auto 60px;
    text-align: center;
}

.outcomes-eyebrow {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #00050d;
    display: block;
    margin-bottom: 12px;
}

.outcomes-title {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
}

/* ===============================
   AUTO SCROLL AREA
   =============================== */
.outcomes-scroll-wrap {
    width: 100vw;
    overflow: hidden;
    position: relative;
}

/* Moving track */
.outcomes-track {
    display: flex;
    gap: 36px;
    width: max-content;
    padding-left: 40px;
    animation: autoScroll 32s linear infinite;
}

/* Pause on hover */
.outcomes-scroll-wrap:hover .outcomes-track {
    animation-play-state: paused;
}

/* ===============================
   FEATURE CARD (FIXED SIZE)
   =============================== */
.outcome {
    width: 300px;
    height: 260px;
    box-sizing: border-box;
    
    background: #afadad6f;
    border-radius: 22px;
    padding: 26px 24px;

    display: flex;
    flex-direction: column;
    justify-content: center;   /* ✅ vertical centering */
    align-items: center;       /* ✅ horizontal centering */
    text-align: center;        /* ✅ text centering */

    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.outcome:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.14);
}

.outcome-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #115273, #1e88e5);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;
    flex-shrink: 0;

    align-self: center; /* ✅ THIS IS THE KEY */
}

.outcome-icon i {
    font-size: 22px;
    color: #ffffff;
}

/* Text */
.outcome h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    min-height: 44px;
}

.outcome p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #475569;
    margin:0 ;
}



/* ===============================
   AUTO SCROLL ANIMATION
   =============================== */
@keyframes autoScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 768px) {
    .outcomes-title {
        font-size: 30px;
    }

    .outcome {
        width: 260px;
        height: 250px;
    }
}



/* =====================================================
   SERVICES SHOWCASE – IMAGE STYLE
   ===================================================== */

/* =====================================================
   SERVICES SHOWCASE – IMAGE STYLE
   (RESPONSIVE ONLY – DESIGN UNCHANGED)
   ===================================================== */

.rmc-services-showcase {
    padding: 50px 20px;
    background:
        linear-gradient(
            180deg,
            rgba(252, 252, 252, 0),
            rgba(255, 255, 255, 0)
        ),
        url("Assets/mountains-bg.jpg") center / cover no-repeat;
    color: #040000;
    overflow: hidden;
    scroll-margin-top: 50px;
}

.rmc-services-showcase .container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ================= HEADER ================= */

.services-eyebrow {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: px;
    color: #000000;
    display: block;
    margin-bottom: 25px;
}

.services-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 120px;
}

/* ================= SHOWCASE WRAP ================= */

.showcase-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
}

/* ================= CARD BASE ================= */

.showcase-card {
    width: 260px;
    height: 460px;
    background: rgba(57, 119, 176, 0.836);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 28px;
    text-align: left;

    box-shadow:
        0 40px 90px rgba(238, 233, 233, 0.6),
        inset 0 0 0 1px rgba(255,255,255,0.08);

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* ================= TYPOGRAPHY ================= */

.showcase-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.showcase-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #f9f9fa;
}

/* ================= DEPTH POSITIONS ================= */

.showcase-card.left {
    transform: translateY(60px) scale(0.9);
    opacity: 0.75;
}

.showcase-card.mid-left {
    transform: translateY(30px) scale(0.95);
    opacity: 0.85;
}

.showcase-card.center {
    z-index: 5;
}

.showcase-card.mid-right {
    transform: translateY(30px) scale(0.95);
    opacity: 0.85;
}

.showcase-card.right {
    transform: translateY(60px) scale(0.9);
    opacity: 0.75;
}

/* ================= HOVER ================= */

.showcase-card:hover {
    transform: translateY(-10px) scale(1.03);
    opacity: 1;
    z-index: 10;
    box-shadow:
        0 60px 120px rgba(0, 0, 0, 0.004),
        inset 0 0 0 1px rgba(179, 181, 182, 0.4);
}

/* =====================================================
   TABLET RESPONSIVE (STACK CARDS)
   ===================================================== */

@media (max-width: 992px) {

    .showcase-wrap {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .showcase-card {
        transform: none !important;
        opacity: 1;
    }
}

/* =====================================================
   MOBILE RESPONSIVE (TEXT SCALE ONLY)
   ===================================================== */

@media (max-width: 576px) {

    .services-title {
        font-size: 32px;
    }
}


/* =====================================================
   SERVICE ICON – INSIDE SHOWCASE CARD
   ===================================================== */

/* =====================================================
   SERVICE ICON (NO DESIGN CHANGE)
   ===================================================== */

.service-icon {
    margin: 28px auto 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.service-icon i {
    font-size: 20px;
    color: #f5f7f8f9;
}

/* Hover reaction (desktop only behavior preserved) */
.showcase-card:hover .service-icon {
    background: rgba(236, 239, 241, 0.18);
    box-shadow: inset 0 0 0 1px rgba(233, 235, 237, 0.45);
}

.showcase-card:hover .service-icon i {
    color: #ffffff;
}

/* =====================================================
   WHY CHOOSE US – MODERN SPLIT DESIGN
   (RESPONSIVE ONLY – DESIGN UNCHANGED)
   ===================================================== */

.rmc-why-modern {
    padding: 110px 20px;
    background: linear-gradient(120deg, #f8fafc, #ffffff);
}

.rmc-why-modern .container {
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
}

/* ================= GRID ================= */

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* ================= LEFT VISUAL ================= */

.why-visual {
    position: relative;
    height: 420px;
}

/* BASE CARD */
.visual-card {
    position: absolute;
    background: #e5e7eb;
    border-radius: 22px;
}

/* LARGE IMAGE */
.visual-card.large {
    width: 240px;
    height: 400px;
    left: 0;
    top: 20px;
}

/* TOP SMALL IMAGE */
.visual-card.small.top {
    width: 220px;
    height: 210px;
    right: 0;
    top: 0;
}

/* BOTTOM SMALL IMAGE */
.visual-card.small.bottom {
    width: 220px;
    height: 200px;
    right: 0;
    bottom: 0;
}

/* IMAGE INSIDE VISUAL BOX */
.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* ================= RIGHT CONTENT ================= */

.why-content .eyebrow {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: #000000;
    margin-bottom: 12px;
    display: block;
    text-align: center;
}

.why-content h2 {
    font-size: 38px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 16px;
}

.why-content .intro {
    font-size: 16.5px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 50px;
    max-width: 520px;
}

/* ================= FEATURES GRID ================= */

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 48px;
}

/* FEATURE ITEM */
.why-item {
    position: relative;
    padding-left: 40px;
}

.why-item .num {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    font-weight: 700;
    color: #38bdf8;
}

.why-item h4 {
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}

.why-item p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #6b7280;
}

/* =====================================================
   RESPONSIVE (STACK ONLY WHEN REQUIRED)
   ===================================================== */

@media (max-width: 992px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-visual {
        height: 300px;
        margin-bottom: 40px;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .why-content h2 {
        font-size: 32px;
    }
}
/* =====================================================
   MOBILE IMAGE ARRANGEMENT – CLEAN & NEAT
   (NO DESKTOP CHANGE)
   ===================================================== */

   /* =====================================================
   WHY CONTENT – RESPONSIVE ONLY
   (DESKTOP UNCHANGED)
   ===================================================== */

/* ================= TABLET ================= */
@media (max-width: 992px) {

    .why-content .eyebrow {
        font-size: 30px;
        letter-spacing: 1.2px;
    }

    .why-content h2 {
        font-size: 32px;
    }

    /* Stack features (already defined, just spacing control) */
    .why-features {
        gap: 28px;
    }

    .why-item {
        padding-left: 36px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

    .why-content .eyebrow {
        font-size: 35px;
        letter-spacing: 1px;
    }

    .why-content h2 {
        font-size: 23px;
        line-height: 1.25;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .why-item {
        padding-left: 0;
        text-align: center;
    }

    /* Optional: center content when stacked */
    .why-item h4,
    .why-item p {
        text-align: center;
    }
}

@media (max-width: 576px) {

    /* Turn visual area into a clean stack */
    .why-visual {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    /* Disable absolute positioning only on mobile */
    .visual-card {
        position: relative;
        width: 100% !important;
        height: 180px !important;
        border-radius: 16px;
    }

    .visual-card.large,
    .visual-card.small.top,
    .visual-card.small.bottom {
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    /* Ensure images fit nicely */
    .visual-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }
}

.team-img-wrapper {
    width: 170px;
    height: 170px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5; /* soft background */
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* keeps proportions */
    object-position: center 22%; /* focus face area */
}
.team-img-2 {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.8) translateX(5%) translateY(15%);
}
.team-img-3 {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.5) translateX(5%) translateY(15%);
}

.team-img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.8) translateX(10%) translateY(15%);
}


.designation {
    font-size: 14px;
    color: #666;
}

.page-with-navbar-offset {
    padding-top: 70px; /* Adjust if navbar height changes */
}
