@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css");

/* Root Variables */
:root {
    /* Primary Theme Colors */
    --primary-red: #d32f2f; /* strong red */
    --primary-red-dark: #b71c1c; /* darker shade for hover */
    --primary-red-light: #ef5350; /* lighter accent */

    --primary-gray: #4a4a4a; /* neutral gray */
    --gray-dark: #2e2e2e; /* darker gray */
    --gray-light: #e0e0e0; /* light gray background */
    --gray-lighter: #f5f5f5; /* very light gray / section bg */

    /* Text Colors */
    --text-dark: #222; /* almost black */
    --text-light: #fff; /* white text */
    --text-muted: #777; /* muted gray text */

    /* Backgrounds */
    --bg-main: var(--gray-lighter);
    --bg-contrast: var(--gray-dark);

    /* Accent */
    --accent: var(--primary-red);
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif; /* Changed from Poppins to Inter */
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* New container specifically for hero, services, why choose, gem stats, about sections */
.container-home {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-gray);
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--primary-red-dark);
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-red-dark);
}

/* New section heading specifically for hero, services, why choose, gem stats, about sections */
.section-heading-home {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-heading-home::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Header */
.main-header {
    background-color: var(--bg-contrast);
    color: var(--text-light);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 1.8em;
    font-weight: 700;
    text-transform: uppercase;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav ul li {
    position: relative;
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--accent);
}

.main-nav .dropdown-menu {
    /* display: none; */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-contrast);
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-top: 3px solid var(--accent);
    z-index: 100;
    padding: 10px 0;
     opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

@media (max-width: 992px) {
  .your-class {
    position: static;       /* Stack vertically on mobile */
    transform: translateY(0);
    margin-left: 20px;      /* Indent for visual hierarchy */
    width: auto;
    min-width: unset;
    box-shadow: none;       /* No shadow on mobile */
    border-top: none;       /* No border on mobile */
  }
}


.main-nav .dropdown-menu li {
    margin: 0;
}

.main-nav .dropdown-menu li a,
.main-nav .dropdown-menu li span {
    padding: 10px 20px;
    color: var(--text-light);
    display: block;
    white-space: nowrap;
    font-size: 0.95em;
}

.main-nav .dropdown-menu li a:hover {
    background-color: var(--primary-red-dark);
    color: var(--text-light);
}

.main-nav ul li:hover > .dropdown-menu {
    display: block;
}

.main-nav .fa-chevron-down {
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.main-nav ul li:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

.nav-register-btn .btn {
    background-color: var(--accent);
    color: var(--text-light);
    padding: 8px 18px;
    border-radius: 5px;
    margin-left: 20px;
}

.nav-register-btn .btn:hover {
    background-color: var(--primary-red-dark);
}

/* Hero Section */
.hero-section-home { 
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1500x700/d32f2f/ffffff?text=Tender+Bidding+Consultancy') no-repeat center center/cover; */
    background-color: white;
    color: var(--text-dark);
    text-align: center;
    padding: 100px 20px;
}

.hero-section-home h1 { 
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.hero-section-home p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section-home .btn { 
    font-size: 1.1em;
    padding: 12px 25px;
    border-radius: 7px;
}

/* Content Based Layout (Services Section) */
.services-section-home { 
    padding: 80px 0;
    background-color: var(--bg-main);
}

.services-grid-home { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card-home { 
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-home:hover { 
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card-home i { 
    font-size: 3em;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card-home h3 { 
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-gray);
}

.service-card-home p { 
    color: var(--text-muted);
    font-size: 0.95em;
}

/* Why Choose Pyramid Section */
.why-choose-us-home {
    padding: 80px 0;
    background-color: var(--gray-lighter);
}

.why-item-home { 
    display: flex;
    align-items: flex-start;
    background-color: var(--text-light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.why-item-home i { 
    font-size: 2.5em;
    color: var(--accent);
    margin-right: 20px;
    min-width: 40px; /* Ensure icon doesn't shrink */
}

.why-item-content-home h4 { 
    margin-bottom: 5px;
    color: var(--primary-gray);
}

.why-item-content-home p {
    font-size: 0.9em;
    color: var(--text-muted);
    margin-bottom: 0;
}

.why-choose-grid-home {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-choose-grid-home .row { 
    display: flex;
    justify-content: center; 
    gap: 20px;
}

.why-choose-us-home:hover .why-item-home { 
    transform: translateY(0);
    opacity: 1;
}

/* Hover effect on individual cards */
.why-item-home:hover { 
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #fff; /* subtle pop */
    border-color: var(--primary-red-dark);
}

/* Icon hover color accent */
.why-item-home:hover i { 
    color: var(--primary-red); /* or your accent color */
    transition: color 0.3s ease;
}

/* Pyramid spacing */
.row-1-home { 
    justify-content: center;
}
.row-2-home { 
    justify-content: center;
}
.row-3-home { 
    justify-content: center;
}

/* Optional: stagger widths for stronger pyramid shape */
.row-1-home .why-item-home { max-width: 350px; }
.row-2-home .why-item-home { max-width: 320px; } 
.row-3-home .why-item-home { max-width: 300px; } 

/* Animation */
.why-item-home { /* Changed class name */
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease;
}
.why-item-home:nth-child(1) { transition-delay: 0.1s; } 
.why-item-home:nth-child(2) { transition-delay: 0.3s; }
.why-item-home:nth-child(3) { transition-delay: 0.5s; } 

.why-choose-us-home:hover .why-item-home { 
    transform: translateY(0);
    opacity: 1;
}

/* Animated Pie Chart (GeM Portal Information) */
.gem-stats-section-home { 
    padding: 80px 0;
    background-color: var(--bg-contrast);
    color: var(--text-light);
}

.gem-stats-section-home .section-heading-home { 
    color: var(--text-light);
}
.gem-stats-section-home .section-heading-home::after { 
    background-color: var(--text-light);
}

.gem-chart-container-home { 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pie-chart-wrapper-home { 
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary-red) 0% 35%,
        /* 35% */
        var(--primary-red-light) 35% 65%,
        /* 30% */
        var(--gray-light) 65% 85%,
        /* 20% */
        var(--primary-gray) 85% 100% /* 15% */
    );
    animation: rotatePie 6s linear infinite;
    margin-bottom: 30px;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1);
}

.pie-chart-center-home { 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bg-contrast);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-size: 1.1em;
    font-weight: 600;
}

.pie-chart-center-home span { 
    font-size: 0.8em;
    font-weight: 400;
    opacity: 0.8;
}

.chart-legend {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.chart-legend li {
    display: flex;
    align-items: center;
    font-size: 0.95em;
}

.chart-legend li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border-radius: 3px;
}

.chart-legend li:nth-child(1)::before {
    background-color: var(--primary-red);
}
.chart-legend li:nth-child(2)::before {
    background-color: var(--primary-red-light);
}
.chart-legend li:nth-child(3)::before {
    background-color: var(--gray-light);
}
.chart-legend li:nth-child(4)::before {
    background-color: var(--primary-gray);
}

@keyframes rotatePie {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* About Section */
.about-section-home {
    padding: 80px 0;
    background-color: var(--bg-main);
}

.about-content-home { 
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image-home {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image-home img { 
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-text-home { 
    flex: 2;
    min-width: 300px;
}

.about-text-home h2 {
    font-size: 2.2em;
    color: var(--primary-gray);
    margin-bottom: 20px;
}

.about-text-home p { 
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Footer */
.main-footer {
    background-color: var(--bg-contrast);
    color: var(--text-light);
    padding: 60px 0 20px;
    font-size: 0.9em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.3em;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.footer-col p {
    color: var(--gray-light);
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--gray-light);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background-color: var(--primary-red-light);
    color: var(--text-light);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: var(--gray-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        background-color: var(--bg-contrast);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        padding-bottom: 20px;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .main-nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-nav ul li a,
    .main-nav .dropdown-menu li span {
        padding: 15px 20px;
        width: 100%;
    }

    .main-nav .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        padding-left: 20px;
    }

    .main-nav .dropdown-menu li a {
        padding-left: 40px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-register-btn {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    .nav-register-btn .btn {
        width: calc(100% - 40px);
        margin-left: 0;
    }

    .hero-section-home h1 { 
        font-size: 2.8em;
    }

    .hero-section-home p { 
        font-size: 1.1em;
    }

    .about-content-home {
        flex-direction: column;
    }
    .about-image-home,
    .about-text-home { 
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-heading-home { 
        font-size: 2em;
    }
    .hero-section-home { 
        padding: 80px 15px;
    }
    .hero-section-home h1 { 
        font-size: 2.2em;
    }
    .hero-section-home p { 
        font-size: 1em;
    }
    .services-section-home,
    .why-choose-us-home,
    .gem-stats-section-home,
    .about-section-home { 
        padding: 60px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }
    .hero-section-home h1 {
        font-size: 1.8em;
    }
    .hero-section-home p { 
        font-size: 0.9em;
    }
    .service-card-home h3 { 
        font-size: 1.3em;
    }
    .why-item-home i { 
        font-size: 2em;
        margin-right: 15px;
    }
    .why-item-content-home h4 { 
        font-size: 1.2em;
    }
    .pie-chart-wrapper-home { 
        width: 200px;
        height: 200px;
    }
    .pie-chart-center-home {
        width: 120px;
        height: 120px;
        font-size: 0.9em;
    }
    .chart-legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-left: 20px;
    }
}






















































 /* body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: var(--bg-main);
            color: var(--text-dark);
            line-height: 1.7;
        } */

        .hero-section {
            /* background: linear-gradient(135deg, var(--gray-dark) 0%, var(--primary-gray) 100%); */
            background-color: var(--gray-light);
            color: var(--text-dark);
            padding: 80px 20px;
            text-align: center;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-content h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.3;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.95;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background-color: var(--primary-red);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
        }

        .cta-button:hover {
            background-color: var(--primary-red-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            /* padding: 60px 20px; */
        }

        .section {
            margin-bottom: 70px;
        }

        .section-title {
            font-size: 2.2rem;
            color: var(--gray-dark);
            margin-bottom: 40px;
            text-align: center;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }

        .intro-box {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin-bottom: 50px;
            border-left: 5px solid var(--primary-red);
            margin-top: 50px;
        }

        .intro-box p {
            font-size: 1.1rem;
            color: var(--primary-gray);
            line-height: 1.9;
            margin-bottom: 15px;
        }

        .intro-box p:last-child {
            margin-bottom: 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-bottom: 50px;
        }

        .service-card {
            background: white;
            padding: 40px 35px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary-red);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-bottom: 4px solid var(--primary-red) ;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: var(--gray-dark);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .service-card p {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns:  repeat(4, 1fr);
            gap: 30px;
        }

        .benefit-card {
            background: white;
            padding: 35px 30px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.07);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
            transform: translateY(-5px);
            border-bottom: 4px solid var(--primary-red);
            border-top: 4px solid var(--primary-red);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-red-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: white;
        }

        .benefit-card h4 {
            font-size: 1.3rem;
            color: var(--gray-dark);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .benefit-card p {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 1.02rem;
        }

        .process-section {
            background: white;
            padding: 60px 40px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }

        .process-steps {
            display: grid;
            grid-template-columns:  repeat(4, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-red-light));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
            box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
        }

        .process-step h4 {
            font-size: 1.3rem;
            color: var(--gray-dark);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .process-step p {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 1.02rem;
        }

        .cta-section {
            /* background: linear-gradient(135deg, var(--primary-red), var(--primary-red-light)); */
            background-color: var(--primary-gray);
            color: white;
            padding: 70px 40px;
            border-radius: 15px;
            text-align: center;
            margin-top: 60px;
            box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
            margin-bottom: 60px;
        }

        .cta-section h2 {
            font-size: 2.3rem;
            margin-bottom: 20px;
            font-weight: 700;
            color: var(--gray-light);
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.95;
            line-height: 1.8;
        }

        .cta-button-secondary {
            display: inline-block;
            padding: 18px 45px;
            background-color: white;
            color: var(--primary-red);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            background-color: var(--gray-lighter);
            border: 5px solid var(--primary-red-dark);
        }

        .highlight-box {
            background: linear-gradient(135deg, #fff5f5, #ffe8e8);
            padding: 35px;
            border-radius: 12px;
            border-left: 5px solid var(--primary-red);
            margin: 40px 0;
        }

        .highlight-box h3 {
            color: var(--primary-red);
            font-size: 1.6rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .highlight-box p {
            color: var(--primary-gray);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1.05rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .services-grid,
            .benefits-grid,
            .process-steps {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 40px 15px;
            }

            .intro-box,
            .process-section {
                padding: 25px 20px;
            }

            .cta-section {
                padding: 50px 25px;
            }

            .cta-section h2 {
                font-size: 1.8rem;
            }
        }
























/* Inquiry */
/* Modal Overlay Styles */
.modal-overlay {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    justify-content: center;
    align-items: center;
    -webkit-animation: fadeIn 0.3s ease-out;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: #fff;
    margin: 20% auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    width: 90%; 
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    -webkit-animation: slideInTop 0.4s ease-out;
    animation: slideInTop 0.4s ease-out;
}

.modal-content h2 {
    text-align: center;
    color: var(--primary-red);
    margin-bottom: 25px;
    font-size: 1.5em;
}

.close-button {
    color: var(--gray-dark);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.register-form .form-group {
    margin-bottom: 20px;
}

.register-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="tel"] {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 12px 10px;
    border: 1px solid #D3D3D3;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.register-form input[type="text"]:focus,
.register-form input[type="email"]:focus,
.register-form input[type="tel"]:focus {
    border-color: var(--text-muted);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
    outline: none;
}

.register-form .checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.register-form input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2); /* Make checkbox slightly larger */
}

.register-form .checkbox-group label {
    display: inline; /* Keep label next to checkbox */
    font-weight: 400;
    font-size: 0.95em;
    color: var(--gray-dark);
}

.register-form .btn-submit {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: var(--primary-red);
    color:var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 25px;
}

.register-form .btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Animations */
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@-webkit-keyframes slideInTop {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes slideInTop {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

body.no-scroll {
    overflow: hidden;
}

/* Modal Overlay */
.modal-overlay {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    justify-content: center; 
    align-items: center;  
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.modal-overlay.active {
    display: flex; 
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    position: relative; 

   
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1; 
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
}


/* Dropdown specific styles */
.main-nav .dropdown-menu {
    display: none; 
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.main-nav .dropdown-menu.active-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav ul li.active-dropdown > a .fa-chevron-down {
    transform: rotate(180deg);
}



        /* Popup Overlay */
.popup-overlay {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0, 0, 0, 0.6); 
  justify-content: center;
  align-items: center;
}

/* Popup Content */
.popup-content {
  background-color: #fefefe;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  width: 90%;
  max-width: 450px;
  text-align: center;
  animation: fadeIn 0.3s ease-out;
}

/* Close Button */
.close-btn {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: #333;
  text-decoration: none;
}

/* Form Styling */
.popup-content h3 {
  color: var(--primary-red-dark);
  margin-bottom: 25px;
  font-size: 1.8em;
}

.form-group {
  margin-bottom: 18px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
  border-color: var(--primary-black);
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  accent-color: var(--primary-red-light); /* Colors the checkbox itself */
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  color: #333;
  cursor: pointer;
}

.popup-content button[type="submit"] {
  background-color: var(--primary-red-dark);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.popup-content button[type="submit"]:hover {
  background-color:var(--accent-orange);
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}