:root {
    --theme-color: #f9f9f9;
    --font-family: "Poppins", sans-serif;
    --top-bar-family: "Lato", sans-serif;
    --hover-color: rgb(4, 84, 119);
    --theme-color-body: #f1f1f1;
    --font-weight: 900;
    --font-weight-p: 500;
    --font-size-p: 5px;
    --about-heading-font-color: #004b6e;
    --button-background: url(../images/button-background-image.jpg) no-repeat center center;
    --primary-color: #f9f9f9;
    --card-bg: #fff;
    --text-color: #333;
    --shadow: rgba(0, 0, 0, 0.1);
    --accent: #ff9800;
    --theme-background: url(../images/mdr_hero_img-scaled.jpg);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*================================
    Scroll top                      
==================================*/
/* Button Style */
.top-scroll {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    display: none;
    /* hidden by default */
    z-index: 1000;
}

.top-scroll:hover {
    background: #0056b3;
}

/* ===============================
   Base Styles
=================================*/
body {
    font-family: var(--font-family);
    color: #333;
}

/* --- Top Bar (Desktop) --- */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #000;
    font-size: 14px;
    font-family: var(--top-bar-family);
    font-weight: 500;
    padding: 12px 40px;
}

.top-bar i {
    margin-right: 6px;
}

.top-left {
    color: #000;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-right .divider {
    color: #999;
}

.top-right a {
    text-decoration: none;
    color: #333;
}

.top-right a:hover {
    color: #0056b3;
}

/* --- Header --- */
header.main-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0.5em 0;
    z-index: 1000;
    /* ✅ stays above content */
    position: sticky;
    /* ✅ sticky positioning */
    top: 0;
    /* ✅ sticks to top */
}

.header-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--top-bar-family);
    font-weight: 600;
    padding: 0 20px;
}

.logo img {
    height: 55px;
}

/* --- Navigation --- */
nav.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

nav.main-nav ul li {
    position: relative;
}

nav.main-nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.3s ease;
}

nav.main-nav ul li a:hover {
    color: var(--about-heading-font-color);
    font-weight: 500;
    border-bottom: 2px solid var(--about-heading-font-color);
}

/* --- Dropdown --- */
nav.main-nav ul li .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

nav.main-nav ul li:hover .dropdown {
    display: block;
}

nav.main-nav ul li .dropdown li {
    margin: 0;
}

nav.main-nav ul li .dropdown li a {
    display: block;
    padding: 10px 15px;
    color: #333;
}

nav.main-nav ul li .dropdown li a:hover {
    background: #f1f1f1;
}

/* --- Hamburger Button --- */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

/* --- Close Button inside Nav --- */
.close-btn {
    display: none;
    font-size: 24px;
    text-align: right;
    padding: 15px;
    cursor: pointer;
}

/* --- Top Bar inside Mobile Menu --- */
.top-bar-mobile {
    display: none;
}

/* --- Responsive Navbar Styles --- */
@media (max-width: 768px) {

    /* Hide desktop top-bar */
    .top-bar.desktop-only {
        display: none;
    }

    /* Hamburger visible */
    .hamburger {
        display: block;
    }

    nav.main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
        padding-top: 60px;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }

    nav.main-nav.active {
        right: 0;
    }

    nav.main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }

    nav.main-nav ul li a {
        font-size: 16px;
        color: #000;
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
        transition: background 0.3s ease, color 0.3s ease;
    }

    nav.main-nav ul li a:hover {
        background: #f9f9f9;
        color: rgb(4, 84, 119);
    }

    nav.main-nav ul li .dropdown {
        position: static;
        box-shadow: none;
    }

    /* Close button */
    .close-btn {
        display: block;
        position: absolute;
        top: 10px;
        right: 15px;
    }

    /* Top bar content inside hamburger */
    .top-bar-mobile {
        display: block;
        padding: 12px 17px;
        border-bottom: 1px solid #eee;
        background: var(--theme-color-body);
        margin-bottom: 14px;
        border-top: 1px solid #eee;
    }

    .top-bar-mobile p {
        font-size: 14px;

        margin: 8px 0;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
    }

    .top-bar-mobile i {
        color: #004b6e;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
}

/* ===================================
     Heading Hero           
=====================================*/
/* --- Hero Section --- */
.hero-section {
    background-image: url(../images/mdr_hero_img-scaled.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.heading-hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--theme-color);
    padding: 5% 5% 2%;
    flex-wrap: wrap;
}

.heading-section-1 h2,
.heading-section-2 h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
}

.heading-divider {
    width: 2px;
    height: 150px;
    background-color: #ffffff66;
}

/* --- Icon Box --- */
.icon-box-content {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
    padding-bottom: 5%;
}

.icon-box {
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 15px 25px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    min-width: 200px;
    justify-content: center;
}

.icon-box img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}

.icon-box a {
    text-decoration: none;
    color: var(--theme-color);
}

/* ===============================
   HERO SECTION RESPONSIVE STYLES
=================================*/
@media (max-width: 1024px) {

    .heading-section-1 h2,
    .heading-section-2 h2 {
        font-size: 26px;
    }

    .heading-divider {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .heading-hero-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .heading-divider {
        display: none;
    }

    .icon-box {
        min-width: 150px;
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero-section {
        min-height: 650px;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {

    .heading-section-1 h2,
    .heading-section-2 h2 {
        font-size: 20px;
    }

    .icon-box {
        width: 100%;
        justify-content: center;
    }

    .hero-section {
        min-height: 750px;
        padding: 50px 15px;
    }

    .heading-hero-section {
        padding: 10% 5% 5%;
    }
}

/*===========================================
        Slider section                      
===========================================*/
.slider-section {
    background-color: var(--theme-color-body);
    border: 1px solid var(--theme-color-body);
}

/* Wrapper */
#container-section {
    max-width: 1330px;
    background-color: var(--theme-color-body);
}

.slider-wrapper {
    position: relative;
    width: 99%;
    margin: auto;
    padding: 20px 0;
    border-radius: 12px;
    overflow: hidden;
}

/* Track */
.slide-track {
    display: flex;
    transition: transform 0.1s linear;

    /* smooth updates */
}

/* Card */
.slide-track .card {
    flex: 0 0 250px;
    height: 230px;
    margin: 0 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card */
.slide-track .card {
    flex: 0 0 250px;
    height: 280px;
    margin: 0 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: transform 0.3s;
    max-width: 1500px;
}

.slide-track .card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

/**********/
.slider-icon {
    height: 80vh;
    align-items: flex-start;
    text-align: left;
}

.slider-icon img {
    width: 40%;
    height: 30%;
}

.slider-icon h5 {
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-size: 18px;
}

.slide-icon p {
    font-size: var(--font-size-p);
    padding: 5px 20px 5px 20px;
    /* top right bottom left */
}

/**============================
     About us section           
===============================*/
.about-us-section {
    background-color: var(--theme-color-body);
    width: 100%;
    padding: 60px 0;
}

.about-section-internal {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    /* responsive */
}

/* Left text */
.about-text-section {
    flex: 1 1 50%;
}

.about-text-section .title-section {
    font-size: 2rem;
    font-weight: 700;
    color: var(--about-heading-font-color);
    /* your theme color */
    margin-bottom: 10px;
}

.about-text-section .subtitle {
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.about-text-section .description {
    font-size: 1rem;
    line-height: 1.6;
    color: black;
    margin-bottom: 25px;
}

/* Button */
.read-more-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--button-background);
    background-size: cover;
    /* ðŸ”¹ ensures image covers button fully */
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
    border: none;
}

.read-more-btn:hover {
    transform: scale(1.05);
}

/* Right image */
.about-image-section {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
}

.about-image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-section-internal {
        flex-direction: column;
        text-align: left;
        /* ✅ keep content aligned to left */
        align-items: flex-start;
        /* ✅ make flex children stick to left */
    }

    .about-text-section,
    .about-image-section {
        flex: 1 1 100%;
    }

    .about-image-section {
        margin-top: 30px;
    }
}

/**==================
Card service section 
====================*/
.services-section {
    width: 100%;
    background-color: var(--theme-color-body);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
    gap: 25px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 12px var(--shadow);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px var(--shadow);
}

.service-card img {
    width: 145px;
    height: 140px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: var(--font-weight);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-card a {
    display: inline-block;
    text-decoration: none;
    color: black;
    font-weight: 600;
    transition: background 0.3s ease;
    border-top: 1px solid grey;
    width: 100%;
    margin-top: 15px;
    /* ✅ space between text and border */
    padding: 12px 0;
    /* ✅ spacing inside the button area */
    text-align: center;
    /* ✅ keeps text centered */
}

.service-card a:hover {
    color: var(--hover-color);
}

@media (max-width: 600px) {
    .service-card {
        padding: 20px 15px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }
}

/**===================
CDSCO Simplified section
=======================*/

.cdsco-simplified {
    margin-top: 5%;
}

.about-text-section .subtitle {
    font-size: 20px;
    font-weight: var(--font-weight);
    line-height: 20px;
    font-family: var(--font-family);
    margin-top: 2%;
    margin-bottom: 3%;
}

/**===================
MDR Beyond Border Section
=======================*/
.mdrconsultants-section {
    margin-top: 2%;
    padding: 80px 20px;
    background: var(--theme-background);
    background-size: cover;
    background-position: center;
    /* ✅ Gradient like in image */
    color: #fff;
    text-align: left;
    /* ✅ left align instead of center */
}

.mdrconsultants-section .inner-section {
    max-width: 1100px;
    margin: auto;
}

.mdrconsultants-section h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.mdrconsultants-section p {
    font-size: 18px;
    line-height: 1.7;
    font-weight: var(--font-weight-p);
    max-width: 1000px;
    margin: 0;
    /* ✅ no auto centering */
}

/* ✅ Responsive Styles */
@media (max-width: 992px) {
    .mdrconsultants-section h2 {
        font-size: 1.7rem;
    }

    .mdrconsultants-section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .mdrconsultants-section {
        padding: 50px 15px;
    }

    .mdrconsultants-section h2 {
        font-size: 1.4rem;
    }

    .mdrconsultants-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/**====================
Authorized section-start
========================*/
.authorized-section {
    margin-top: 5%;
}

.authorized-section .agent-section {
    font-weight: var(--font-weight-p);
}

/**====================
Blog section-start
========================*/

.blog-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--heading-color);
}

.blog-slider {
    position: relative;
    overflow: hidden;
}

.blog-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.blog-card {
    flex: 0 0 300px;
    flex-shrink: 0;
    /* 👈 important */
    margin: 0 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 16px;
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
}

.blog-date {
    font-size: 14px;
    color: gray;
    display: block;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading-color, #1b3058);
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #555;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color, #1b3058);
    text-decoration: none;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--hover-color, #0056b3);
}

/* Slider buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1b3058;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: #162646;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 260px;
    }
}

@media (max-width: 480px) {
    .blog-card {
        flex: 0 0 240px;
    }
}

/**====================
Client section-start
========================*/
.client-section {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    overflow: hidden;
}

.client-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

.client-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

/*Speed track */
.slider-track {
    display: flex;
    width: calc(250px * 12);
    /* adjust based on number of logos */
    animation: scroll-left 12s linear infinite;
}

.slider-track.reverse {
    animation: scroll-right 12s linear infinite;
}

.slider-track img {
    width: 180px;
    height: auto;
    margin: 0 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    object-fit: contain;
    border: 1px solid rgb(182, 181, 181);
}

/* Keyframes for left-to-right and right-to-left */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ✅ Pause animation on hover */
.slider-track:hover {
    animation-play-state: paused;
    transform: translateY(-5px);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-track img {
        width: 130px;
        margin: 0 12px;
    }
}

@media (max-width: 480px) {
    .slider-track img {
        width: 100px;
        margin: 0 10px;
    }
}

/**====================
Testinomial section-start
========================*/

.testimonial-section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.testimonial-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.testimonial-section p.subtitle {
    font-size: 16px;
    color: gray;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-slider {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 15px;
    box-sizing: border-box;
}

.testimonial-card .card-inner {
    background: #ffffff;
    /* card background */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    /* stronger box-shadow */
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Hover effect */
.testimonial-card .card-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
    background: #fdfdfd;
    /* subtle background change on hover */
}

.testimonial-card p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.testimonial-user-icon {
    width: 40px;
    height: 40px;
    background: #004b6e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.testimonial-user h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #004b6e;
}

.testimonial-user span {
    font-size: 13px;
    color: gray;
}

/* Buttons */
.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 2;
}

.testimonial-btn:hover {
    background: #004b6e;
    color: #fff;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
}

.testimonial-dots button.active {
    background: #004b6e;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*=============================
Enquiry section         
============================*/

.enquiry-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    flex-wrap: wrap;
    /* ✅ makes it responsive */
}

/* Form Box */
.enquiry-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 -4px 12px rgba(0, 0, 0, 0.08);
}

.enquiry-form h3 {
    font-size: 36px;
    font-weight: var(--font-weight);
    margin-bottom: 5px;
    color: #111;
}

.enquiry-form p {
    color: gray;
    font-size: 14px;
    margin-bottom: 20px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: none;
    border-bottom: 2px solid #ddd;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s;
    background: transparent;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: #004b6e;
}

.enquiry-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #004b6e;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.enquiry-form button:hover {
    background: #006699;
}

/* Services List */
.enquiry-services {
    flex: 1;
    min-width: 300px;
}

.enquiry-services h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #111;
}

.enquiry-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enquiry-services ul li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(105, 105, 105);
    font-weight: 500;
}

.enquiry-services ul .fa-angle-right {
    color: green;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .enquiry-section {
        flex-direction: column;
        gap: 30px;
    }

    .enquiry-form,
    .enquiry-services {
        max-width: 100%;
    }
}

/**=======================
Footer section
=========================*/
.footer-section {
    background: var(--theme-color-body);
    padding: 40px 20px 0;
    font-family: "Poppins", sans-serif;
    color: #004b6e;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    /* more spacing between cols */
    text-align: left;
}

/* Columns */
.footer-col {
    flex: 1;
    min-width: 250px;
    padding: 0 10px;
    /* spacing inside columns */
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: black;
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: #0073aa;
}

/* Logo + Center Info */
.footer-logo img {
    max-width: 280px;
    /* ✅ controlled width */
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* center logo in column */
}

.footer-center p {
    font-size: 15px;
    color: var(--about-heading-font-color);
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
    white-space: normal;
    /* ✅ allow wrapping on smaller screens */
}

/* Contact Info */
.footer-contact p {
    margin: 8px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    color: black !important;
    font-weight: 500;
}

/* Bottom Bar */
.footer-bottom {
    background: linear-gradient(90deg, #004b6e, #019d54);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.footer-bottom span {
    flex: 1;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
}

.footer-bottom .social-media-link a {
    color: #fff;
    margin-left: 10px;
    font-size: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: 0.3s;
}

.footer-bottom .creative-path {
    color: #fff;
    margin-left: 10px;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-bottom .creative-path:hover {
    color: #004b6e;
}

.footer-bottom .social-media-link a:hover {
    background: #fff;
    color: #004b6e;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-logo img {
        max-width: 220px;
        /* ✅ smaller on tablet */
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
        gap: 30px;
    }

    .footer-logo img {
        max-width: 180px;
        /* ✅ smaller on mobile */
    }

    .footer-center p {
        text-align: center;
    }

    .footer-contact p {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom span {
        text-align: center;
        margin-bottom: 10px;
    }
}

/**=================*/
/** =================
   Services Section
===================== */
.our-services-section {
    padding: 60px 20px;
    background: #fff;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.our-services-section .section-title {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    background: var(--theme-background);
    color: #fff;
    padding: 12px 20px;
    margin-bottom: 40px;
}

/* Grid Layout */
.our-services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 per row on large screens */
    gap: 30px;
}

/* Service Card */
.our-services-section .service-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 2px solid #019d54;
    cursor: pointer;
}

.our-services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Img Icon */
.our-services-section .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    color: #004b6e;
}

.our-services-section .service-icon img {
    width: 100%;
    height: auto;
}

/* Title + Text */
.our-services-section .service-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #004b6e;
    text-align: center;
}

.our-services-section .service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .our-services-section .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .our-services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .our-services-section .services-grid {
        grid-template-columns: 1fr;
        /* single column on mobile */
    }
}

/* ===========================
        About-us.html section
============================= */
.about-ushtml {
    display: flex;
    justify-content: flex-start;
    /* align items to left */
    align-items: flex-start;
    /* align vertically to top */
    flex-direction: column;
    margin-bottom: 0%;
    /* stack items */
}

.about {
    height: 50vh;
    background: var(--theme-background);
}

.aboutus-section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    color: #333;
    line-height: 1.6;
}

.aboutus-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--about-heading-font-color);
    text-align: center;
    /* ✅ center text */
}

.aboutus-section p {
    text-align: center;
    /* ✅ center paragraph text */
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.aboutus-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* -------- Why Choose & Our Mission Layout -------- */
.why-choose,
.our-mission {
    display: flex;
    flex-direction: column;
    /* stack vertically */
    align-items: center;
    /* center items horizontally */
    text-align: center;
    /* center text */
    gap: 20px;
    margin: 50px 0;
}

.internal-about-section {
    width: 90%;
    margin: auto;
}

.why-choose h2,
h3 {
    text-align: left;
    margin-top: 3%;
}

.our-mission h2,
h3 {
    text-align: left;
}

.our-mission p {
    text-align: left;
}

.why-choose .text,
.our-mission .text {
    width: 100%;
    /* take full width */
}

.why-choose .image,
.our-mission .image {
    width: 100%;
    text-align: center;
}

.why-choose img,
.our-mission img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
}

/* -------- Mobile Responsive -------- */
@media (max-width: 992px) {

    .why-choose,
    .our-mission {
        flex-direction: column;
        text-align: center;
    }

    .why-choose .text,
    .our-mission .text {
        order: 1;
    }

    .why-choose .image,
    .our-mission .image {
        order: 2;
    }
}

@media (max-width: 600px) {
    .aboutus-section h2 {
        font-size: 22px;
    }

    .aboutus-section h3 {
        font-size: 16px;
    }

    .aboutus-section p {
        font-size: 14px;
    }
}

/* =========================
   Download Notification Section
   ========================= */
.download-notification-section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.download-notification-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1b3058;
}

/* Grid Layout */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Make the whole card clickable and look like a card */
.download-grid>a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Card */
.download-card {
    border: 2px solid #1b3058;
    /* default (blue) */
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: #fff;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.download-card h3 {
    font-size: 16px;
    color: #1b3058;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Alternate Border Colors: target the anchors (direct children) */
.download-grid>a:nth-child(odd) .download-card {
    border-color: #1b3058;
    /* blue */
}

.download-grid>a:nth-child(even) .download-card {
    border-color: #19a04b;
    /* green */
}

/* Hover */
.download-grid>a:hover .download-card {
    background: #f9f9f9;
    transform: translateY(-4px);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 992px) {
    .download-notification-section .section-title {
        font-size: 24px;
    }

    .download-card {
        padding: 18px;
        min-height: 110px;
    }

    .download-card h3 {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .download-grid {
        grid-template-columns: 1fr;
    }

    .download-card {
        padding: 16px;
        min-height: auto;
    }

    .download-card h3 {
        font-size: 14px;
    }
}

/* =============================
   CONTACT US SECTION
=============================== */
.contact-us-section {
    padding: 60px 20px;
    background: var(--theme-background, #f4f6f9);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1b3058;
}

.contact-card .subtitle {
    color: #555;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #1b3058;
    box-shadow: 0 0 5px rgba(27, 48, 88, 0.3);
}

/* Button */
.btn-send {
    background: #1b3058;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-send:hover {
    background: #162646;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .contact-card {
        padding: 20px;
    }

    .contact-card h2 {
        font-size: 20px;
    }
}

/* =============================
   PRIVACY POLICY PAGE
=============================== */
.privacy-policy {
    padding: 60px 20px;
    background: #f8f9fb;
}

.privacy-policy-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); */
    line-height: 1.7;
    color: #333;
    font-size: 15px;
}

.privacy-policy-container h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #1b3058;
}

.privacy-policy-container h3 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #444;
}

.privacy-policy-container p {
    margin-bottom: 15px;
}

.privacy-policy-container ul {
    margin: 10px 0 20px 20px;
    padding-left: 10px;
}

.privacy-policy-container ul li {
    margin-bottom: 6px;
    list-style-type: disc;
}

.privacy-policy-container a {
    color: #1b3058;
    text-decoration: none;
    font-weight: 600;
}

.privacy-policy-container a:hover {
    text-decoration: underline;
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 25px 20px;
    }

    .privacy-policy-container h2 {
        font-size: 18px;
    }

    .privacy-policy-container h3 {
        font-size: 16px;
    }
}

/* =============================
   TERMS & CONDITIONS PAGE
=============================== */
.terms-conditions {
    padding: 60px 20px;
    background: #f8f9fb;
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    line-height: 1.7;
    color: #333;
    font-size: 15px;
}

.terms-container h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #1b3058;
}

.terms-container p {
    margin-bottom: 15px;
}

.terms-container ul {
    margin: 10px 0 20px 20px;
    padding-left: 10px;
}

.terms-container ul li {
    margin-bottom: 6px;
    list-style-type: disc;
}

.terms-container a {
    color: #1b3058;
    text-decoration: none;
    font-weight: 600;
}

.terms-container a:hover {
    text-decoration: underline;
}

.effective-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-container {
        padding: 25px 20px;
    }

    .terms-container h2 {
        font-size: 18px;
    }
}

/* =============================
   CDSCO Section Styling
=============================== */
.cdsco .cdsco-background {
    /* Gradient background */
    background: linear-gradient(90deg, #004680 0%, #009f66 100%);
    padding: 77px 130px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 300px;
}

/* Text styling */
.cdsco h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 700px;
}

.cdsco h1 span {
    font-weight: 800;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .cdsco h1 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .cdsco .cdsco-background {
        text-align: center;
        justify-content: center;
    }

    .cdsco h1 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .cdsco h1 {
        font-size: 22px;
    }
}

/* =============================
   CDSCO Info Section
=============================== */
.cdsco-info {
    padding: 80px 20px;
    background: #fff;
}

.cdsco-info .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    /* ✅ makes responsive */
}

.cdsco-text {
    flex: 1 1 55%;
}

.cdsco-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #004680;
    margin-bottom: 10px;
}

.cdsco-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.cdsco-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 16px;
}

.cdsco-image {
    flex: 1 1 40%;
    text-align: center;
}

.cdsco-image img {
    max-width: 100%;
    height: auto;
}

/* ✅ Responsive */
@media (max-width: 992px) {
    .cdsco-info .container {
        flex-direction: column;
        text-align: center;
    }

    .cdsco-text {
        flex: 1 1 100%;
    }

    .cdsco-image {
        flex: 1 1 100%;
        margin-top: 30px;
    }
}

/* =============================
   CDSCO SUGAM Section
=============================== */
.cdsco-sugam {
    background: linear-gradient(90deg, #004680 0%, #009f66 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.cdsco-sugam .sugam-container {
    max-width: 1000px;
    margin: auto;
}

.cdsco-sugam h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cdsco-sugam p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.btn-readmore {
    display: inline-block;
    background: #002d52;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-readmore span {
    margin-left: 8px;
    font-weight: bold;
}

.btn-readmore:hover {
    background: #001e38;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    .cdsco-sugam h2 {
        font-size: 24px;
    }

    .cdsco-sugam p {
        font-size: 15px;
    }
}

/* Import & Manufacturing Section */
.registration-types {
    padding: 80px 20px;
    background: #fff;
}

.registration-types .container {
    max-width: 1200px;
    margin: auto;
}

.section-heading {
    text-align: center;
    margin: 40px 0 20px;
}

.section-heading h3 {
    display: inline-block;
    background: #0a8a3e;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
}

.section-heading span {
    margin-left: 8px;
    font-size: 16px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    margin-bottom: 40px;
}

.item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.item a {
    text-decoration: none;
    color: #333;
}

.item:hover {
    color: #0a8a3e;
    font-weight: 500;
}


.item img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .item {
        font-size: 15px;
    }
}

/* =============================
   ISO -section  Section
=============================== */
/* ==========================
   ISO Expertise Section
========================== */
.iso-expertise {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Top paragraph */
.iso-top-text {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.iso-top-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Bottom expertise list */
.iso-bottom {
    background: #004466;
    /* dark blue background */
    color: #fff;
    padding: 60px 20px;
    text-align: left;
}

.iso-bottom h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

.iso-bottom ul {
    max-width: 1000px;
    margin: 0 auto 30px auto;
    padding: 0;
    list-style: disc inside;
}

.iso-bottom li {
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 16px;
}

.iso-bottom li strong {
    font-weight: 700;
}

.iso-footer {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .iso-bottom h2 {
        font-size: 22px;
    }

    .iso-bottom li {
        font-size: 15px;
    }

    .iso-footer {
        font-size: 15px;
    }
}

/**************************/
.error {
    color: red;
    font-size: 14px;
    margin-top: 4px;
    display: none;
}

input.error-input,
select.error-input,
textarea.error-input {
    border: 1px solid red;
}