:root {
    --primary: #2A2A2A; /* Dark Charcoal from logo */
    --secondary-dark: #9e0000;
    --secondary:#f70606;
    --accent: #06a354; /* Vibrant Orange/Yellow from logo */
    --accent-dark: #05914b; /* Darker accent for hover */
    --accent-gradient: linear-gradient(to right, #06a354, #05914b); /* Gradient for buttons/icons */
    --secondary-gradient: linear-gradient(to right, #f70606, #9e0000);
    --secondary-accent: #3F51B5; /* A subtle blue for contrast/highlight */

    --white: #fff;
    --light-grey: #F8F8F8; /* A very subtle off-white for backgrounds */
    --text-dark: #222222; /* Darker text for headings, almost black */
    --text-light: #555555; /* Lighter text for body/paragraphs */
    --border-color: #e0e0e0; /* Light border color */

    --shadow-light: rgba(0, 0, 0, 0.05); /* Lighter, more diffused shadow */
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.2);
    --transition-speed: 0.4s; /* Consistent transition speed */
    --border-radius-default: 12px; /* Slightly larger border radius for a softer look */

    /* New Navbar Specific Variables */
    --navbar-height-desktop: 90px;
    --navbar-height-mobile: 70px;
    --navbar-bg: rgba(255, 255, 255, 0.96);
    --menu-link-color: var(--text-dark);
    --menu-link-hover-color: var(--accent);
    --submenu-bg: var(--primary);
    --submenu-link-color: rgba(255, 255, 255, 0.9);
    --submenu-link-hover-color: var(--accent);
}

/*===================
===== Common =====
=====================*/
html,
body {
    font-family: 'Open Sans', sans-serif; /* Changed body font */
    font-weight: 400;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-light);
    background-color: var(--white);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* Changed heading font */
    color: var(--text-dark);
    font-weight: 700;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.section:nth-of-type(even) {
    background-color: var(--white); /* Alternate sections still have subtle distinction */
}

.section .main-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 2px;
    color: var(--accent);
}

.section .title {
    text-align: center;
    font-size: 3rem; /* Larger titles */
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
}

.section .subtitle {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.btn-primary {
    background-image: var(--accent-gradient);
    padding: 15px 40px;
    border-radius: 50px; /* Pill-shaped buttons */
    border: none;
    color: var(--white);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15); /* Softer shadow */
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--accent-dark), var(--accent));
    z-index: -1;
    transition: transform var(--transition-speed) ease;
    transform: translateX(-100%);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary:hover {
    color: var(--white);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}
.page-hero .service-logo{
    width: 80px;
    background-color: #fff;
    border-radius: 5px;
}

/*===================
===== Navbar =====
=====================*/
.main-header {
    background-color: var(--navbar-bg);
    height: var(--navbar-height-desktop);
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.main-header .container {
    height: 100%;
}

.main-header .logo img {
    height: 60px; /* Adjust logo height as needed */
    transition: all 0.3s ease;
}

/* Desktop Navigation */
.desktop-nav .main-menu {
    height: 100%;
}

.desktop-nav .menu-item {
    position: relative;
    margin: 0 10px;
}

.desktop-nav .menu-link {
    color: var(--menu-link-color);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 5px; /* Ample padding for click area */
    position: relative;
    display: block;
    transition: color 0.3s ease;
    text-decoration: none;
}

.desktop-nav .menu-link::after {
    content: '';
    position: absolute;
    bottom: 15px; /* Position underline */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-image: var(--accent-gradient);
    transition: width 0.3s ease-in-out;
    border-radius: 2px;
}

.desktop-nav .menu-item:hover .menu-link,
.desktop-nav .menu-item .menu-link.active {
    color: var(--menu-link-hover-color);
}

.desktop-nav .menu-item:hover .menu-link::after,
.desktop-nav .menu-item .menu-link.active::after {
    width: 30px;
}

.desktop-nav .menu-item.has-submenu .dropdown-arrow {
    transition: transform 0.3s ease;
}

.desktop-nav .menu-item.has-submenu:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Submenu Styling */
.desktop-nav .submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px); /* Initial hidden position */
    background-color: var(--submenu-bg);
    box-shadow: 0 8px 30px var(--shadow-medium);
    border-radius: var(--border-radius-default);
    min-width: 250px;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother transition */
    z-index: 1050; /* Above other content */
    display: block; /* Ensure it's block for row layout */
}

.desktop-nav .menu-item.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.desktop-nav .submenu.wide-menu {
    min-width: 800px;
}

.desktop-nav .submenu-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px; /* For the accent line */
}

.desktop-nav .submenu-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background-color: var(--accent);
    border-radius: 2px;
}

.desktop-nav .submenu-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.desktop-nav .submenu-link {
    display: block;
    color: var(--submenu-link-color);
    padding: 8px 0;
    font-size: 1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.desktop-nav .submenu-link:hover {
    color: var(--submenu-link-hover-color);
    transform: translateX(5px);
}

/* Header Actions (Contact Button) */
.header-actions .btn-primary {
    padding: 10px 28px;
    font-size: 0.95rem;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001; /* Above other mobile elements */
}

.mobile-menu-toggle .toggle-icon {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Hamburger to X animation */
.mobile-menu-toggle[aria-expanded="true"] .toggle-icon:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] .toggle-icon:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] .toggle-icon:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Offcanvas Menu */
.offcanvas {
    background-color: var(--white);
    width: 300px;
    box-shadow: -8px 0 20px var(--shadow-medium);
}

.offcanvas-header {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 25px;
}

.offcanvas-header .offcanvas-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.8rem;
}

.offcanvas-header .btn-close {
    background-color: transparent; /* Bootstrap's default close button is sometimes white, reset it */
    opacity: 0.8;
}
.offcanvas-header .btn-close:focus {
    box-shadow: none;
}

.offcanvas-body {
    padding: 20px 25px;
}

.mobile-menu-list .mobile-menu-link {
    display: block;
    padding: 12px 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    border-bottom: 1px dashed var(--border-color);
    transition: all 0.2s ease;
    text-decoration: none;
}

.mobile-menu-list li:last-child .mobile-menu-link {
    border-bottom: none;
}

.mobile-menu-list .mobile-menu-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.mobile-menu-list .mobile-has-dropdown .mobile-dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-menu-list .mobile-has-dropdown .mobile-menu-link[aria-expanded="true"] .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-submenu-list,
.mobile-sub-submenu-list {
    background-color: var(--light-grey);
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
}


.mobile-submenu-list .mobile-submenu-link,
.mobile-sub-submenu-list .mobile-sub-submenu-link {
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
    color: var(--text-dark);
}

.mobile-submenu-list li:last-child .mobile-submenu-link,
.mobile-sub-submenu-list li:last-child .mobile-sub-submenu-link {
    border-bottom: none;
}


/*===================
===== Main Carousel =====
=====================*/
.main-carousel-section {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: var(--navbar-height-desktop); /* Space for fixed navbar */
}

.main-carousel {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.main-carousel .slider-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.main-carousel .slider-wrapper img {
    width: 100%;
    height: 700px; /* Slightly taller hero */
    object-fit: cover;
    filter: brightness(0.4); /* Stronger dimming */
}

.main-carousel .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(6, 186, 42, 0.4), rgba(0, 0, 0, 0.7)); /* Stronger gradient overlay */
    color: var(--white);
    padding: 20px;
}

.main-carousel .slider-content {
    max-width: 950px; /* Wider content area */
    transform: translateY(30px);
    opacity: 0;
    animation-fill-mode: both;
}

.main-carousel .owl-item.active .slider-content {
    animation: fadeInSlideUp 1.2s forwards cubic-bezier(0.23, 1, 0.32, 1); /* Smoother animation */
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-carousel .slider-content h2 {
    font-size: 4.2rem; /* Even larger title */
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.6);
    color: var(--white);
}

.main-carousel .slider-content p {
    font-size: 1.45rem; /* Larger paragraph text */
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.98;
    color: var(--white);
}

/* Custom Owl Navigation and Dots */
.main-carousel .owl-nav button.owl-prev,
.main-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.65) !important; /* Darker nav buttons */
    color: var(--white) !important;
    font-size: 2.5rem !important; /* Larger arrows */
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50% !important;
    transition: background var(--transition-speed) ease, opacity var(--transition-speed) ease;
    opacity: 0.9;
}

.main-carousel .owl-nav button.owl-prev:hover,
.main-carousel .owl-nav button.owl-next:hover {
    background: var(--accent) !important;
    opacity: 1;
}

.main-carousel .owl-nav button.owl-prev {
    left: 40px; /* Further from edge */
}

.main-carousel .owl-nav button.owl-next {
    right: 40px;
}

.main-carousel .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.main-carousel .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.8) !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    transition: background 0.3s ease, transform 0.3s ease;
}

.main-carousel .owl-dots .owl-dot.active span,
.main-carousel .owl-dots .owl-dot:hover span {
    background: var(--accent) !important;
    transform: scale(1.4);
}

/*===================
===== About =====
=====================*/
.about {
    background-color: var(--white);
    padding: 100px 0; /* Keep consistent section padding */
}

.about .about-image-block {
    padding-right: 30px; /* Space for the overlapping badge */
}

.about .about-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.about .about-experience-badge {
    position: absolute;
    bottom: -30px; /* Overlap with the section below or just float */
    right: 0;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 5px solid var(--accent); /* Accent border for emphasis */
    box-shadow: 0px 10px 30px var(--shadow-medium);
    z-index: 2;
}

.about .about-experience-badge span {
    line-height: 1.2;
}

.about .about-content-block .main-title {
    text-align: start; /* Align main title to the left */
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.about .about-content-block .title {
    text-align: start; /* Align section title to the left */
    font-size: 3rem; /* Adjusted for sleek look */
    line-height: 1.2;
}

.about .about-content-block p.lead {
    font-size: 1.15rem; /* Slightly larger lead paragraph */
    color: var(--text-dark);
}

.about .about-feature-list .feature-item {
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
    margin-bottom: 20px !important;
}

.about .about-feature-list .feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0 !important;
}

.about .about-feature-list .feature-item i {
    min-width: 40px; /* Ensure icon has enough space */
}

.about .about-feature-list .feature-item h5 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.about .about-feature-list .feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}


/*===================
===== Services =====
=====================*/
.services {
    background-color: var(--light-grey); /* Use light-grey for alternate section background */
    padding: 100px 0;
}

.services .service-card {
    background-color: var(--white);
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color); /* Subtle border for definition */
    position: relative;
    overflow: hidden;
    padding-bottom: 70px; /* Space for absolute link */
}

.services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px; /* Thin accent bar at the top */
    background-image: var(--secondary-gradient);
    transition: transform var(--transition-speed) ease;
    transform: translateY(-120%);
}

.services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 40px var(--shadow-medium) !important;
}

.services .service-card:hover::before {
    transform: translateY(0);
}
.services .service-card:hover .service-link{
    color: var(--secondary-dark);
}

.services .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 25px;
    box-shadow: 0px 8px 20px var(--shadow-light);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
}
/* .services .service-icon img{
    padding: 10px;
} */

.services .service-card:hover .service-icon {
    background-color: var(--secondary-dark); /* Icon changes color on hover */
    box-shadow: 0px 12px 25px var(--shadow-medium);
}

.services .service-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.services .service-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 35px;
}

.services .service-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
    position: absolute;
    bottom: 25px; /* Position at the bottom */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.services .service-link:hover {
    color: var(--accent-dark);
    transform: translateX(-50%) translateY(-3px);
}

.services .service-link i {
    transition: transform 0.3s ease;
}

.services .service-link:hover i {
    transform: translateX(5px);
}

/* Specific styling for the 'Get in Touch' card */
.services .service-card.bg-primary {
    background-image: linear-gradient(to right, var(--primary), #4a4a4a); /* A subtle gradient for the dark card */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.services .service-card.bg-primary .service-title {
    color: var(--white);
}

.services .service-card.bg-primary .service-description {
    color: rgba(255, 255, 255, 0.85);
}

.services .service-card.bg-primary .btn-light {
    background-color: var(--white) !important;
    color: var(--primary) !important;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.services .service-card.bg-primary .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.25);
    background-color: #f0f0f0 !important;
}



/*===================
===== Why =====
=====================*/
.why {
    background-color: var(--light-grey); /* Use a subtle background */
    padding: 100px 0;
}

.why .why-card-minimal {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* Very light shadow */
}

.why .why-card-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Slightly more prominent on hover */
    border-color: var(--accent); /* Accent border on hover */
}

.why .why-icon-minimal {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secondary-dark); /* Primary color for icons */
    color: var(--white);
    font-size: 2.2rem;
    line-height: 1;
    transition: all var(--transition-speed) ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.why .why-card-minimal:hover .why-icon-minimal {
    background-color: var(--accent); /* Accent color on hover */
    transform: rotateY(180deg); /* Subtle flip effect */
}

.why .why-title-minimal {
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 700;
}

.why .why-description-minimal {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}


/*===================
===== Testimonials =====
=====================*/
.testimonials {
    background-color: var(--secondary-dark); /* Very dark charcoal for a sleek, contrasting background */
    padding: 100px 0;
}

/* Text color adjustments for the dark background */
.testimonials .main-title,
.testimonials .title,
.testimonials .subtitle {
    color: var(--white); /* White text for headings and subtitle */
}

/* Subtle adjustment for subtitle if needed, could use rgba(255,255,255,0.8) for softer look */
.testimonials .subtitle {
    color: rgba(255, 255, 255, 0.85);
}


.testimonials .brand-logo-card {
    background-color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle white border for cards on dark background */
    border-radius: var(--border-radius-default);
    transition: all var(--transition-speed) ease;
    min-height: 120px; /* Consistent height for logo cards */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Slightly more visible shadow on dark background */
    padding: 20px; /* Padding inside the card for the logo */
}

.testimonials .brand-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3) !important; /* More prominent shadow on hover */
    border-color: var(--accent); /* Accent border on hover */
}

.testimonials .brand-logo-card img {
    max-width: 80%; /* Constrain image size within the card */
    max-height: 80px; /* Max height for uniformity */
    filter: grayscale(100%); /* Desaturate logos for sleek look */
    opacity: 0.7; /* Slightly faded normally */
    transition: all var(--transition-speed) ease;
}

.testimonials .brand-logo-card:hover img {
    filter: grayscale(0%); /* Full color on hover */
    opacity: 1; /* Fully opaque on hover */
}

/* Owl Carousel Navigation & Dots Customization for Dark Background */
.testimonials .owl-nav button.owl-prev,
.testimonials .owl-nav button.owl-next {
    background: var(--accent) !important; /* Accent background for nav buttons */
    color: var(--white) !important; /* White arrow color */
    font-size: 1.5rem !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all var(--transition-speed) ease;
    opacity: 0.8; /* Slightly transparent */
}

.testimonials .owl-nav button.owl-prev {
    left: -60px; /* Position outside the container */
}

.testimonials .owl-nav button.owl-next {
    right: -60px; /* Position outside the container */
}

.testimonials .owl-nav button.owl-prev:hover,
.testimonials .owl-nav button.owl-next:hover {
    background-color: var(--primary) !important; /* Primary color on hover */
    opacity: 1;
}

.testimonials .owl-dots {
    margin-top: 40px !important; /* More space for dots below carousel */
}

.testimonials .owl-dots .owl-dot span {
    width: 12px !important; /* Larger dots */
    height: 12px !important;
    background: rgba(255, 255, 255, 0.3) !important; /* Lightly transparent white dots */
    transition: all var(--transition-speed) ease;
}

.testimonials .owl-dots .owl-dot.active span,
.testimonials .owl-dots .owl-dot:hover span {
    background: var(--accent) !important; /* Accent color for active/hover dot */
}


/*===================
===== Accreditations =====
=====================*/
.accreditations {
    background-color: var(--white); /* White background for contrast with dark testimonials */
    padding: 100px 0;
}

.accreditations .accreditation-card-redesigned {
    background-color: var(--light-grey); /* Light grey background for each card */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-default);
    transition: all var(--transition-speed) ease;
    min-height: 150px; /* Consistent height for accreditation cards */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* Subtle shadow */
    overflow: hidden;
}

.accreditations .accreditation-card-redesigned:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px var(--shadow-medium) !important;
    border-color: var(--accent); /* Accent border on hover */
}

.accreditations .accreditation-card-redesigned img {
    max-width: 85%; /* Max width for the logo */
    max-height: 100px; /* Max height for uniformity */
    filter: grayscale(100%); /* Grayscale by default for a clean look */
    opacity: 0.7; /* Slightly faded normally */
    transition: all var(--transition-speed) ease;
}

.accreditations .accreditation-card-redesigned:hover img {
    filter: grayscale(0%); /* Full color on hover */
    opacity: 1; /* Fully opaque on hover */
}


/*===================
===== Process Section =====
=====================*/
.process-horizontal-unique {
    background-color: var(--light-grey); /* Light background for the section */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process-horizontal-unique .process-steps-wrapper {
    position: relative;
}

.process-horizontal-unique .process-step-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px; /* Space for stacking on smaller screens */
}

.process-horizontal-unique .step-card {
    background-color: var(--white); /* White background for each step card */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-default);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Soft shadow */
    transition: all var(--transition-speed) ease;
    width: 100%; /* Ensure card fills column width */
    height: 100%; /* Ensure uniform height for all cards */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Align content to top */
}

.process-horizontal-unique .step-card:hover {
    transform: translateY(-8px); /* Lift effect on hover */
    box-shadow: 0 15px 40px var(--shadow-medium); /* More prominent shadow on hover */
    border-color: var(--secondary); /* Accent border on hover */
}

.process-horizontal-unique .step-icon-wrapper {
    position: relative; /* Container for icon and number */
    width: 100px; /* Match step-circle-icon width */
    height: 100px; /* Match step-circle-icon height */
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-horizontal-unique .step-circle-icon {
    width: 100px; /* Size for the icon circle */
    height: 100px;
    background-image: var(--accent-gradient); /* Use accent gradient for background */
    border-radius: 50%; /* Circular shape */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3); /* Stronger shadow for the circle */
    border: 3px solid var(--white); /* White border around the circle */
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-speed) ease;
    overflow: hidden; /* Ensure icon doesn't overflow during scaling */
}

.process-horizontal-unique .step-circle-icon i {
    font-size: 3.5rem; /* Size of the Font Awesome icon */
    color: var(--white); /* White color for the icon */
    transition: all var(--transition-speed) ease;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Subtle text shadow for depth */
}

.process-horizontal-unique .step-card:hover .step-circle-icon {
    background-image: linear-gradient(to right, var(--secondary), var(--secondary-dark)); /* Change to primary color gradient on card hover */
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
    transform: scale(1.05);
    color: var(--white);
}

.process-horizontal-unique .step-card:hover .step-circle-icon i {
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
    color: var(--white); /* Ensure icon stays white */
}

.process-horizontal-unique .step-number-badge {
    position: absolute;
    top: -10px; /* Position above the circle */
    right: -10px; /* Position to the right of the circle */
    width: 40px;
    height: 40px;
    background-color: var(--secondary); /* Primary color for the badge */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid var(--white); /* White border for emphasis */
    box-shadow: 0 3px 10px rgba(0,0,0,0.2); /* Shadow for the badge */
    z-index: 5; /* Ensure it's on top */
    transition: all var(--transition-speed) ease;
}

.process-horizontal-unique .step-card:hover .step-number-badge {
    background-color: var(--accent); /* Change badge color on card hover */
    box-shadow: 0 3px 10px rgba(var(--accent-rgb), 0.3);
}

.process-horizontal-unique .step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-horizontal-unique .step-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Horizontal Connector Styling (for larger screens) */
.process-horizontal-unique .horizontal-connector {
    position: absolute;
    top: 50%;
    right: -40px; /* Position to the right of the current step */
    transform: translateY(-50%);
    color: var(--accent); /* Accent color for the arrow */
    font-size: 2rem; /* Size of the arrow icon */
    z-index: 10; /* Ensure it's above other elements */
}

/* Hide connector for the last step */
.process-horizontal-unique .process-step-item:last-child .horizontal-connector {
    display: none;
}



/*===================
===== Footer =====
=====================*/
footer {
    background: linear-gradient(90deg, #06a354e0 0%, #05914be8 100%), url(../img/footer-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #e0e0e0;
    padding: 70px 0;
}

footer p {
    color: #e0e0e0;
    font-size: 0.98rem;
    line-height: 1.8;
}

footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 30px;
}

footer a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #e0e0e0;
    margin-right: 15px;
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
}

footer a:hover {
    text-decoration: underline;
}

footer .usefull-link ul {
    padding-left: 0 !important;
    list-style: none;
}

/* Social */
footer .social-icon a {
    color: var(--accent-dark);
    border-radius: 50%;
    background-color: var(--light-grey);
    width: 52px;
    height: 52px;
    font-size: 1.9rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all var(--transition-speed) ease;
    margin-right: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

footer .social-icon a:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

/* Specific social icon colors on hover */
footer .social-icon a:nth-child(1):hover { /* Facebook */
    background-color: #3b5998;
}
footer .social-icon a:nth-child(2):hover { /* YouTube */
    background-color: #cd201f;
}
footer .social-icon a:nth-child(3):hover { /* LinkedIn */
    background-color: #0077b5;
}
footer .social-icon a:nth-child(4):hover { /* Instagram */
    background-image: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
footer .social-icon a:nth-child(5):hover { /* Pinterest */
    background-color: #bd081c;
}
footer .social-icon a:nth-child(6):hover { /* Slideshare - using secondary accent for uniqueness */
    background-color: var(--secondary-accent);
}


/*===================
===== About Page =====
=====================*/
/* Page Hero Section - Unique Split Design */
.page-hero.about-hero {
    height: 450px; /* Slightly taller hero */
    background-color: var(--primary); /* Dark primary background */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* To account for fixed header */
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.page-hero.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%; /* Left side dark primary */
    height: 100%;
    background-color: var(--secondary-dark);
    z-index: 0;
}

.page-hero.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%; /* Right side subtle accent */
    height: 100%;
    background-color: #00ff7f;
    opacity: 0.1; /* Very subtle */
    z-index: 0;
}


.page-hero.about-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1000px; /* Wider content area */
}

.page-hero.about-hero .hero-subheading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #80ffbf; 
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-hero.about-hero .hero-heading {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white); /* White text on dark background */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero.about-hero .hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .btn-accent-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.page-hero .btn-accent-outline:hover {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
}


/* Our Story Section - Unique Layout with Overlap */
.about-story-unique {
    padding: 100px 0;
    background-color: var(--light-grey); /* Light background for contrast */
    position: relative;
    overflow: hidden;
}

.about-story-unique .row {
    align-items: center;
}

.about-story-unique .story-content-box {
    padding: 30px; /* Internal padding for text */
}

.about-story-unique .main-title {
    color: var(--accent);
    margin-bottom: 10px;
}

.about-story-unique .title {
    color: var(--primary);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-story-unique .lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-story-unique .detail-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-story-unique .story-highlights {
    padding-left: 0;
    margin-top: 25px;
}

.about-story-unique .story-highlights li {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
}

.about-story-unique .story-highlights li i {
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.2rem;
}

/* Image with Overlapping Quote Box */
.about-story-unique .story-image-overlap {
    position: relative;
    padding: 20px; /* Padding for the shadow/spacing effect */
    background-color: var(--white); /* Background for the overlap effect */
    border-radius: var(--border-radius-default);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.about-story-unique .story-image-overlap:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-story-unique .story-image-overlap img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-default);
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1; /* Ensure image is below quote box on top */
}

.about-story-unique .story-quote-box {
    position: absolute;
    bottom: 20px; /* Adjust as needed for desired overlap */
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 80%; /* Width of the quote box */
    background-color: var(--primary); /* Dark background for quote */
    color: var(--white);
    border-radius: var(--border-radius-default);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    padding: 25px 30px;
    z-index: 2; /* Ensure quote box is on top */
    text-align: center;
    border: 2px solid var(--accent); /* Accent border */
    transform: translateY(20px); /* Initial slight offset */
    opacity: 0;
    animation: fadeInSlideUp 0.8s forwards ease-out 0.3s; /* Animate in */
}

@keyframes fadeInSlideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.about-story-unique .story-quote-box .quote-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.about-story-unique .story-quote-box p {
    font-size: 1.1rem;
    line-height: 1.5;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}


/*======================================================
===== Mission, Vision, Values - Elegant Design Section =====
========================================================*/
.mvv-elegant-design {
    padding: 100px 0;
    background-color: var(--light-grey); /* Subtle background */
}

.mvv-elegant-design .main-title {
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 600;
}

.mvv-elegant-design .title {
    color: var(--primary);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.mvv-elegant-design .subtitle {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.mvv-elegant-design .mvv-cards-grid {
    margin-top: 40px;
}

.mvv-elegant-design .mvv-card {
    background-color: var(--white);
    border-radius: var(--border-radius-default);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* More pronounced shadow */
    transition: all var(--transition-speed) ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* Hide overflowing pseudo-elements */
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    text-align: center;
}

.mvv-elegant-design .mvv-card:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
    border-color: var(--accent); /* Accent border on hover */
}

/* Pseudo-elements for background shapes/gradients specific to each card */
.mvv-elegant-design .mvv-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: var(--primary); /* Dark primary color */
    border-radius: 50%;
    opacity: 0.05; /* Very subtle */
    transition: all var(--transition-speed) ease;
}

.mvv-elegant-design .mvv-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--accent); /* Accent color */
    border-radius: 50%;
    opacity: 0.05; /* Very subtle */
    transition: all var(--transition-speed) ease;
}

.mvv-elegant-design .mvv-card:hover::before {
    transform: scale(1.1);
    opacity: 0.1;
}

.mvv-elegant-design .mvv-card:hover::after {
    transform: scale(1.1);
    opacity: 0.1;
}


.mvv-elegant-design .card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent); /* Accent background for icons */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.2);
    transition: all var(--transition-speed) ease;
    color: var(--white);
}

.mvv-elegant-design .mvv-card:hover .card-icon {
    background-color: var(--accent-dark); 
    box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.3);
    
}

.mvv-elegant-design .card-icon i {
    font-size: 3rem;
    color: var(--white);
    transition: all var(--transition-speed) ease;
}
.mvv-elegant-design .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.mvv-elegant-design .card-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.mvv-elegant-design .values-list-elegant {
    padding: 0;
    margin-top: 15px;
    list-style: none; /* Remove default list style */
    text-align: left; /* Align values to left */
    width: 100%; /* Take full width within card */
    max-width: 250px; /* Limit width for aesthetics */
    margin-left: auto;
    margin-right: auto;
}

.mvv-elegant-design .values-list-elegant li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all var(--transition-speed) ease;
}

.mvv-elegant-design .values-list-elegant li:last-child {
    margin-bottom: 0;
}

.mvv-elegant-design .values-list-elegant li i {
    color: var(--primary); /* Primary color for check icons */
    margin-right: 10px;
    font-size: 1.1rem;
}

.mvv-elegant-design .values-list-elegant li:hover {
    color: var(--primary); /* Darker text on hover */
    transform: translateX(5px);
}
.mvv-elegant-design .values-list-elegant li:hover i {
    color: var(--accent); /* Accent color for icon on hover */
}


/* Leader Spotlight Section - Unique Layout */
.leader-spotlight {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.leader-spotlight .row {
    align-items: center;
}

.leader-spotlight .leader-image-wrapper {
    position: relative;
    height: 600px; /* Fixed height for visual impact */
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-spotlight .leader-image-wrapper img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translateX(0); /* Initial position */
    transition: transform 0.5s ease-in-out;
}

.leader-spotlight .leader-image-wrapper:hover img {
    transform: translateX(10px); /* Slight hover effect */
}

.leader-spotlight .leader-content-box {
    background-color: var(--light-grey); /* Light grey background for content */
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all var(--transition-speed) ease;
    /* Unique positioning to overlap with image on larger screens */
    margin-left: -50px;
    z-index: 2; /* Ensure it's above the image */
    position: relative;
}

.leader-spotlight .leader-content-box:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}


.leader-spotlight .main-title {
    color: var(--accent);
}

.leader-spotlight .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.leader-spotlight .lead-name {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.leader-spotlight .lead-position {
    font-size: 1rem;
    margin-bottom: 15px;
}

.leader-spotlight p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.leader-spotlight .btn-primary {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 50px;
}


/* Why Choose Us Section - Streamlined & Minimalist (Retained from previous step) */
.why-choose-us-minimalistic {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.why-choose-us-minimalistic .main-title {
    color: var(--accent);
}

.why-choose-us-minimalistic .title {
    color: var(--primary);
    font-size: 2.8rem;
    font-weight: 700;
}

.why-choose-us-minimalistic .subtitle {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.why-choose-us-minimalistic .why-feature-item {
    background-color: var(--white);
    border-radius: var(--border-radius-default);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    align-items: start; /* Changed to start for consistent icon alignment */
    min-height: 150px;
}

.why-choose-us-minimalistic .why-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: var(--accent);
}

.why-choose-us-minimalistic .why-feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
    flex-shrink: 0;
    transition: all var(--transition-speed) ease;
    color: #fff;
}

.why-choose-us-minimalistic .why-feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
    transition: all var(--transition-speed) ease;
}

.why-choose-us-minimalistic .why-feature-item:hover .why-feature-icon {
    background-color: var(--accent-dark);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.why-choose-us-minimalistic .why-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.why-choose-us-minimalistic .why-feature-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Call to Action Banner - Minimalist (Retained from previous step) */
.cta-minimal {
    background: var(--primary);
    padding: 100px 0;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.cta-minimal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(80px);
    z-index: 0;
}

.cta-minimal::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(80px);
    z-index: 0;
}

.cta-minimal .container {
    position: relative;
    z-index: 1;
}

.cta-minimal .title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    text-shadow: none;
}

.cta-minimal .lead {
    font-size: 1.15rem;
    color: var(--text-dark);
}

.cta-minimal .btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.cta-minimal .btn-primary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/*==========
/===Certification Page
==================*/


/* Common Section Styles */
.grs-overview,
.grs-benefits,
.grs-process,
.grs-why-choose {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.grs-overview {
    background-color: var(--white);
}

.grs-benefits {
    background-color: var(--light-grey); /* Light grey background for alternate section */
}

.grs-process {
    background-color: var(--white);
}

.grs-why-choose {
    background-color: var(--light-grey);
}

/* Feature Cards (for Overview Section) */
.features-grid .feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius-default);
    padding: 30px;
    text-align: left;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-speed) ease;
    height: 100%; /* Ensure cards are same height */
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    border: 1px solid var(--border-color);
}

.features-grid .feature-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.features-grid .feature-card .icon-box {
    width: 70px;
    height: 70px;
    background-image: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2.2rem;
    box-shadow: var(--shadow-medium);
}

.features-grid .feature-card h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.features-grid .feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.features-grid .feature-card .price{
    font-size: 2rem;
}

/* Benefit Cards */
.benefit-card {
    background-color: var(--white);
    border-radius: var(--border-radius-default);
    padding: 25px;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.benefit-card .icon {
    font-size: 2rem;
    color: var(--accent); /* Accent color for icons */
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px; /* Space between steps */
}

.process-step {
    background-color: var(--white);
    border-radius: var(--border-radius-default);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-speed) ease;
    flex: 1; /* Allow steps to grow and shrink */
    min-width: 250px; /* Minimum width for responsiveness */
    max-width: 280px;
    border: 1px solid var(--border-color);
}

.process-step:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.process-step .step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary); /* Primary color for step icons */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2.5rem;
    border: 4px solid var(--accent); /* Accent border */
    box-shadow: 0 0 0 5px rgba(240, 165, 0, 0.2); /* Soft accent glow */
}

.process-step h4 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Why Choose E-Tex List */
.grs-why-choose .why-choose-list li {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.grs-why-choose .why-choose-list li i {
    color: var(--accent); /* Accent color for list icons */
    font-size: 1.5rem;
    margin-top: 3px;
}

 /*==========
/===Training Page
==================*/

/* Page Hero Adjustments for Training Page */
.page-hero.training-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../img/training-hero-bg.jpg') center center no-repeat; /* Example background image */
    background-size: cover;
    height: 450px; /* Slightly shorter than main hero */
    padding-top: var(--navbar-height-desktop); /* Account for fixed navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero.training-hero .hero-heading {
    font-size: 3.8rem; /* Slightly larger for impact */
    font-weight: 800;
    margin-bottom: 25px; /* Increased margin */
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* Stronger shadow */
}

.page-hero.training-hero .hero-subheading {
    font-size: 1.4rem; /* Slightly larger */
    max-width: 850px; /* Wider text area */
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95; /* More opaque */
}

/* Training Details Section */
.training-details-section {
    padding: 100px 0; /* More vertical padding */
    background-color: var(--light-grey); /* Subtle background for the section */
}

.training-details-section .section-title {
    font-size: 2.5rem; /* Larger title */
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px; /* More space below title */
    padding-bottom: 12px;
    border-bottom: 4px solid var(--accent); /* Thicker accent underline */
    display: inline-block; /* Make border fit text */
    text-align: left; /* Ensure left alignment for section titles in content */
}

/* Training Summary Card */
.training-summary.card {
    border: none;
    border-radius: var(--border-radius-default);
    box-shadow: 0 15px 40px var(--shadow-medium); /* More prominent shadow */
    padding: 40px; /* Increased padding */
    margin-bottom: 40px; /* More space below summary */
    background-color: var(--white);
}

.training-summary .card-title {
    font-size: 2.5rem; /* Larger title */
    font-weight: 800; /* Bolder */
    color: var(--accent);
    margin-bottom: 30px; /* More space */
    border-bottom: 2px solid rgba(var(--accent-rgb), 0.3); /* Subtle underline for card title */
    padding-bottom: 15px;
}

.training-summary .training-meta {
    margin-bottom: 30px; /* More space */
    padding-left: 0;
    list-style: none;
    background-color: rgba(var(--primary-rgb), 0.03); /* Very light background for meta */
    padding: 20px;
    border-radius: var(--border-radius-default);
}

.training-summary .training-meta li {
    font-size: 1.15rem; /* Larger font */
    margin-bottom: 12px; /* More space */
    color: var(--text-dark);
    display: flex;
    align-items: center; /* Align text and strong tag */
}

.training-summary .training-meta li:last-child {
    margin-bottom: 0;
}

.training-summary .training-meta li strong {
    color: var(--primary);
    min-width: 120px; /* Align key details */
    display: inline-block;
    font-weight: 700;
}

.training-summary .card-text {
    font-size: 1.05rem; /* Slightly larger */
    line-height: 1.9; /* More spacious line height */
    color: var(--text-light);
    margin-bottom: 20px; /* More space */
}

/* Single Thumbnail Image */
.training-thumbnail-single {
    margin-top: 30px; /* Adjust margin for single image */
    text-align: center; /* Center the image if it's smaller than column width */
}

.training-thumbnail-single img {
    width: 100%;
    max-width: 450px; /* Max width for image to not be overly large */
    height: auto;
    border: 6px solid var(--white); /* White border for contrast */
    border-radius: var(--border-radius-default);
    box-shadow: 0 15px 40px var(--shadow-medium); /* Stronger shadow */
    transition: all 0.4s ease;
    display: block; /* Ensures centering works */
    margin: 0 auto; /* Center the image within its container */
}

.training-thumbnail-single img:hover {
    transform: translateY(-8px) scale(1.02); /* Slight lift and scale on hover */
    box-shadow: 0 25px 60px var(--shadow-strong);
    border-color: var(--accent); /* Accent border on hover */
}

/* Course Structure Accordion */
.training-course-structure .accordion-item {
    margin-bottom: 20px; /* More space between items */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-default);
    overflow: hidden;
    box-shadow: 0 8px 20px var(--shadow-light); /* Lighter shadow for individual items */
    transition: all 0.3s ease;
}

.training-course-structure .accordion-item:hover {
    box-shadow: 0 12px 30px var(--shadow-medium);
    transform: translateY(-3px);
}

.training-course-structure .accordion-button {
    background-color: var(--white);
    color: var(--primary);
    font-size: 1.25rem; /* Larger font */
    font-weight: 600;
    padding: 22px 30px; /* More padding */
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    border-top-left-radius: var(--border-radius-default); /* Ensure rounded corners */
    border-top-right-radius: var(--border-radius-default);
}

.training-course-structure .accordion-button:not(.collapsed) {
    background-color: var(--accent); /* Active state background */
    color: var(--white);
    border-color: var(--accent);
    box-shadow: none;
    border-bottom-color: var(--accent-dark); /* Darker border for active */
}

.training-course-structure .accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.training-course-structure .accordion-body {
    padding: 30px; /* More padding */
    background-color: var(--white);
    color: var(--text-light);
    line-height: 1.8;
}

.training-course-structure .accordion-body ul {
    margin-bottom: 0;
    padding-left: 25px; /* More indent */
    list-style: disc; /* Use discs for list items */
}

.training-course-structure .accordion-body li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Other Information Blocks */
.other-info .info-block.card {
    border: none;
    border-radius: var(--border-radius-default);
    box-shadow: 0 8px 20px var(--shadow-light); /* Consistent lighter shadow */
    background-color: var(--white);
    height: 100%; /* Ensure cards are same height in a row */
    transition: all 0.3s ease;
}

.other-info .info-block.card:hover {
    box-shadow: 0 12px 30px var(--shadow-medium);
    transform: translateY(-3px);
}

.other-info .info-block .card-body {
    padding: 30px; /* More padding */
}

.other-info .info-block .card-title {
    font-size: 1.4rem; /* Slightly larger title */
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px; /* More space */
    display: flex;
    align-items: center;
}

.other-info .info-block .card-title i {
    color: var(--accent);
    font-size: 1.8rem; /* Larger icon */
    margin-right: 12px;
}

.other-info .info-block .card-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.other-info .checkmark-list {
    list-style: none;
    padding-left: 0;
}

.other-info .checkmark-list li {
    margin-bottom: 12px; /* More space */
    font-size: 1.05rem; /* Slightly larger font */
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
}

.other-info .checkmark-list li i {
    font-size: 1.3rem; /* Larger icon */
    color: var(--accent); /* Use accent color for checkmarks */
    margin-top: 5px; /* Align icon with text */
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-right: 10px;
}

/* Call to Action Card */
.bg-accent-gradient {
    background-image: var(--accent-gradient) !important;
    border-radius: var(--border-radius-default);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25); /* Stronger shadow */
    padding: 35px; /* More padding */
    margin-top: 50px; /* Adjusted margin */
}

.bg-accent-gradient h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 2rem; /* Larger heading */
    margin-bottom: 20px;
}

.bg-accent-gradient p {
    color: rgba(255, 255, 255, 0.95); /* More opaque */
    font-size: 1.15rem; /* Larger text */
    margin-bottom: 30px;
}

.bg-accent-gradient .btn-light {
    padding: 15px 40px; /* Larger button */
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px; /* Pill shape */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.bg-accent-gradient .btn-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Instructor Profile Card */
.instructor-profile.card {
    border: none;
    border-radius: var(--border-radius-default);
    box-shadow: 0 8px 20px var(--shadow-light);
    padding: 30px;
    background-color: var(--white);
    text-align: center;
}

.instructor-profile .img-fluid.rounded-circle {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 5px solid var(--accent); /* Accent border for profile pic */
}

.instructor-profile .card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 15px;
    color: var(--primary);
}

.instructor-profile .card-text.text-muted {
    font-size: 1rem;
    color: var(--text-light) !important;
}

.instructor-profile .card-text.small {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

.instructor-profile .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.instructor-profile .btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
}


 /*==========
/=== Verify Certificate
==================*/
/* Certificate Verification Section */
.verify-certificate-section {
    padding: 80px 0;
    background-color: var(--light-grey); /* Subtle background */
}

.verification-card.card {
    border: none;
    border-radius: var(--border-radius-default);
    box-shadow: 0 15px 45px var(--shadow-medium); /* More prominent shadow */
    padding: 50px; /* Generous padding */
    background-color: var(--white);
    position: relative; /* For pseudo-elements */
    overflow: hidden; /* To contain background elements */
}

/* Enhancing card with subtle modern elements */
.verification-card.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px; /* Top accent bar */
    background: var(--accent-gradient);
    border-top-left-radius: var(--border-radius-default);
    border-top-right-radius: var(--border-radius-default);
}

.verification-card .card-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.verification-card p.text-muted {
    font-size: 1.05rem;
    color: var(--text-light) !important;
}

/* Verification Form Styling */
.verification-form .input-group {
    max-width: 550px; /* Limit input width for better aesthetics */
    margin: 0 auto 30px auto; /* Center input and button */
}

.verification-form .input-group-text {
    background-color: var(--primary); /* Dark background for icon */
    color: var(--white);
    border: 1px solid var(--primary);
    border-right: none;
    border-top-left-radius: var(--border-radius-default);
    border-bottom-left-radius: var(--border-radius-default);
    padding: 0 18px;
    font-size: 1.2rem;
}

.verification-form .form-control-lg {
    border: 1px solid var(--border-color);
    border-left: none;
    border-top-right-radius: var(--border-radius-default);
    border-bottom-right-radius: var(--border-radius-default);
    padding: 15px 20px; /* Generous padding */
    font-size: 1.1rem;
    color: var(--text-dark);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05); /* Subtle inner shadow */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.verification-form .form-control-lg:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(var(--accent-rgb), 0.25); /* Accent focus ring */
    outline: none;
}

.verification-form .verify-btn {
    background: var(--accent-gradient);
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--border-radius-default);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.3); /* Shadow for button */
}

.verification-form .verify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(var(--accent-rgb), 0.4);
    opacity: 0.95;
}

.verification-form .verify-btn i {
    font-size: 1.1em;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*==========
/=== Contact Page
==================*/

/* Contact Section */
.contact-section {
    padding: 100px 0; /* Generous padding for clean separation */
    background-color: var(--light-grey); /* Subtle background */
}

.contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px; /* Space above paragraph */
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent); /* Accent underline for titles */
    display: inline-block;
}

.contact-section p.text-muted {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light) !important;
}

/* Contact Form Card */
.contact-form-card {
    background-color: var(--white);
    border-radius: var(--border-radius-default);
    box-shadow: 0 15px 45px var(--shadow-medium); /* Prominent shadow */
    padding: 50px; /* Ample padding */
    height: 100%; /* Ensure full height for alignment */
    display: flex;
    flex-direction: column;
}

.contact-form-card .section-title {
    margin-bottom: 20px; /* Adjust spacing for card title */
}

/* Contact Form Inputs */
.contact-form .form-floating>.form-control,
.contact-form .form-floating>.form-control-plaintext,
.contact-form .form-floating>.form-select,
.contact-form .form-floating>label {
    height: 60px; /* Taller input fields */
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-default); /* Match card border-radius */
    padding: 15px 20px; /* Generous padding */
    font-size: 1.05rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(var(--accent-rgb), 0.25); /* Accent focus ring */
    outline: none;
}

.contact-form .form-floating>label {
    color: var(--text-light); /* Lighter placeholder color */
    font-size: 1.05rem;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.contact-form textarea.form-control {
    height: 180px !important; /* Taller textarea */
    resize: vertical; /* Allow vertical resizing */
}

.contact-form .send-message-btn {
    background: var(--accent-gradient);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--border-radius-default);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.3);
    color: var(--white);
}

.contact-form .send-message-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(var(--accent-rgb), 0.4);
    opacity: 0.95;
}

/* Contact Info Card */
.contact-info-card {
    /* Changed background to a sleek light grey with a subtle linear gradient */
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%); /* Sleek light gradient */
    color: var(--text-dark); /* Changed text color for readability on light background */
    border-radius: var(--border-radius-default);
    box-shadow: 0 15px 45px var(--shadow-medium); /* Prominent shadow */
    padding: 50px; /* Ample padding */
    height: 100%; /* Ensure full height for alignment */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color); /* Added subtle border */
}

/* Adding a subtle, unique overlay design element for light background */
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.08) 0%, transparent 70%); /* Lighter opacity */
    border-radius: 50%;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
    animation: rotateElement 15s linear infinite;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--secondary-accent-rgb), 0.05) 0%, transparent 70%); /* Lighter opacity */
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
    animation: rotateElementReverse 18s linear infinite;
}


@keyframes rotateElement {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateElementReverse {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}


.contact-info-card .section-title {
    color: var(--primary); /* Changed title color for readability */
    border-bottom-color: var(--accent); /* Maintain accent underline */
    position: relative; /* Ensure title is above pseudo-elements */
    z-index: 1;
}

.contact-info-card p.text-muted {
    color: var(--text-light) !important; /* Changed text color for readability */
    position: relative;
    z-index: 1;
}

.contact-info-card .info-list {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.contact-info-card .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px; /* More space between items */
}

.contact-info-card .info-item:last-child {
    margin-bottom: 0;
}

.contact-info-card .info-icon {
    flex-shrink: 0; /* Prevent icon from shrinking */
    width: 60px; /* Fixed width for icon container */
    height: 60px; /* Fixed height */
    background-color: rgba(var(--primary-rgb), 0.05); /* Subtle background for icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px; /* Space between icon and content */
    border: 1px solid var(--border-color); /* Subtle border for icon */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-info-card .info-icon:hover {
    background-color: rgba(var(--accent-rgb), 0.1); /* Accent highlight on hover */
    transform: translateY(-3px);
}

.contact-info-card .info-icon i {
    font-size: 1.8rem;
    color: var(--accent); /* Accent color for icons */
}

.contact-info-card .info-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary); /* Changed title color for readability */
    margin-bottom: 8px;
}

.contact-info-card .info-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light); /* Changed text color for readability */
}

.contact-info-card .info-content a {
    color: var(--primary); /* Changed link color for readability */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card .info-content a:hover {
    color: var(--accent); /* Accent color on hover */
}

.social-icons-contact {
    margin-top: auto; /* Push social icons to bottom */
    padding-top: 30px;
    border-top: 1px solid var(--border-color); /* Changed border color */
    position: relative;
    z-index: 1;
}

.social-icons-contact h4 {
    color: var(--primary); /* Changed social heading color for readability */
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-icons-contact .social-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(var(--primary-rgb), 0.05); /* Subtle background for light theme */
    color: var(--primary); /* Changed icon color to primary for contrast */
    font-size: 1.2rem;
    margin: 0 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color); /* Subtle border */
}

.social-icons-contact .social-icon-circle:hover {
    background-color: var(--accent); /* Accent background on hover */
    color: var(--white); /* White icon on accent hover */
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

/* Map Section */
.map-container {
    background-color: var(--white);
    border-radius: var(--border-radius-default);
    box-shadow: 0 15px 45px var(--shadow-medium);
    padding: 50px;
    overflow: hidden; /* Ensure border-radius applies to iframe */
    border: 1px solid var(--border-color); /* Added subtle border */
}

.map-container .section-title {
    margin-bottom: 20px;
}

.map-container iframe {
    border-radius: var(--border-radius-default); /* Match container border-radius */
    display: block; /* Remove extra space below iframe */
    width: 100%; /* Ensure full width */
    height: 450px; /* Fixed height for map */
    box-shadow: 0 5px 15px var(--shadow-light); /* Subtle shadow for map */
}

/*==================
/=== Accreditation Page
==================*/


/* Accreditation Overview Section (Image & Text) */
.accreditation-overview {
    background-color: var(--white);
}

.accreditation-image-box {
    position: relative;
    padding: 15px; /* Creates a border effect */
    background-color: var(--accent-dark); /* Inner border color */
    border-radius: var(--border-radius-default);
    box-shadow: 0 15px 45px var(--shadow-medium);
    overflow: hidden;
    transition: transform 0.4s ease-in-out;
}

.accreditation-image-box:hover {
    transform: translateY(-8px);
}

.accreditation-image-box img {
    border-radius: var(--border-radius-default);
    display: block;
    width: 100%;
    height: auto;
}

/* Why Accreditation Matters Section (Benefit Cards) */
.why-accreditation-matters {
    background-color: var(--light-grey); /* Subtle background */
}

.accreditation-benefit-card {
    background-color: var(--white);
    border-radius: var(--border-radius-default);
    box-shadow: 0 10px 30px var(--shadow-light); /* Lighter shadow */
    padding: 35px;
    text-align: center;
    height: 100%; /* Ensures equal height cards */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color); /* Subtle border */
}

.accreditation-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px var(--shadow-medium); /* Enhanced shadow on hover */
    border-color: var(--accent); /* Accent border on hover */
}

.accreditation-benefit-card .card-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient); /* Gradient background for icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
    color: var(--white);
    transition: all 0.3s ease;
}

.accreditation-benefit-card:hover .card-icon {
    transform: rotate(10deg) scale(1.05);
}

.accreditation-benefit-card .card-icon i {
    font-size: 2.5rem;
}

.accreditation-benefit-card .card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.accreditation-benefit-card .card-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* E-Tex Accreditation Highlight Section (Modern & Sleek) */
.etex-accreditation-highlight {
    background: linear-gradient(45deg, #3a3a3ac4 0%, #3a3a3a 100%), url('https://images.unsplash.com/photo-1645536107287-59088714a788?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* Dark gradient for highlight */
    padding: 120px 0; /* More vertical padding */
}

.etex-accreditation-card {
    background-color: #ffffff; /* Very subtle transparent white overlay */
    border-radius: var(--border-radius-default);
    padding: 60px;
    border: 1px solid rgba(var(--white-rgb), 0.1); /* Subtle white border */
    box-shadow: 0 20px 60px var(--shadow-strong); /* Stronger shadow */
    backdrop-filter: blur(5px); /* Frosted glass effect */
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.etex-accreditation-card .section-title {
    color: var(--text-dark); /* White title */
    border-bottom-color: var(--accent); /* Accent underline */
    margin-bottom: 20px;
}

.etex-accreditation-card .section-description {
    color: rgba(var(--white-rgb), 0.85); /* Lighter text for contrast */
    line-height: 1.8;
}

.etex-accreditation-card .accreditation-badge {
    position: relative;
    display: inline-block;
    padding: 20px;
    border-radius: var(--border-radius-default);
    background-color: rgba(var(--white-rgb), 0.05);
}

.etex-accreditation-card .accreditation-badge img {
    max-width: 180px; /* Adjust size of badge */
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4)); /* Shadow for badge */
}

.etex-accreditation-card .btn-light {
    background-color: var(--white);
    color: var(--primary);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius-default);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.etex-accreditation-card .btn-light:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(var(--accent-rgb), 0.4);
}



/*===================
===== Responsive =====
=====================*/

@media (max-width:1200px) {
    .main-header {
        height: var(--navbar-height-mobile);
    }
    .main-header .logo img {
        height: 50px;
    }

    /* Main Carousel */
    .main-carousel-section {
        margin-top: var(--navbar-height-mobile);
    }

    /* Testimonials */
    .testimonials .owl-nav button.owl-prev {
        left: -40px;
    }
    .testimonials .owl-nav button.owl-next {
        right: -40px;
    }
    
}

@media (max-width:992px){
    html,
    body {
        font-size: 15px;
    }

    .section {
        padding: 80px 0;
    }

    .section .title {
        font-size: 3rem;
    }

    .section .subtitle {
        font-size: 1.05rem;
        margin-bottom: 50px;
    }

    /* Main Carousel */
    .main-carousel .slider-wrapper img {
        height: 580px;
    }

    .main-carousel .slider-content h2 {
        font-size: 3.8rem;
    }

    .main-carousel .slider-content p {
        font-size: 1.25rem;
    }

    /* About */
    .about .about-image-block {
        padding-right: 0;
        margin-bottom: 50px !important;
    }

    .about .about-experience-badge {
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .about .about-content-block .main-title,
    .about .about-content-block .title {
        text-align: center;
    }

    /* Services */
    .services .service-card {
        padding-bottom: 50px; /* Adjust padding for smaller screens */
    }
    .services .service-link {
        bottom: 20px;
    }

    /* Why */
    .why .why-card-minimal {
        padding: 30px;
    }
    .why .why-icon-minimal {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    .why .why-title-minimal {
        font-size: 1.4rem;
    }
    .why .why-description-minimal {
        font-size: 0.9rem;
    }

    /* Testimonials */
    .testimonials .owl-nav button.owl-prev,
    .testimonials .owl-nav button.owl-next {
        position: relative; /* Bring buttons inline on smaller screens */
        left: auto;
        right: auto;
        margin: 0 10px;
        transform: none;
    }
    .testimonials .owl-nav {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    /* Accreditations */
    .accreditations .accreditation-card-redesigned {
        min-height: 130px;
    }
    .accreditations .accreditation-card-redesigned img {
        max-height: 90px;
    }

    /* Process */
    .process-horizontal-unique .process-step-item {
        margin-bottom: 40px; /* More space when stacking */
    }
    .process-horizontal-unique .step-card {
        padding: 30px;
    }
    .process-horizontal-unique .step-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    .process-horizontal-unique .step-circle-icon {
        width: 80px;
        height: 80px;
    }
    .process-horizontal-unique .step-circle-icon i {
        font-size: 2.8rem; /* Adjust icon size for smaller screens */
    }
    .process-horizontal-unique .step-number-badge {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        top: -8px;
        right: -8px;
    }
    .process-horizontal-unique .step-title {
        font-size: 1.3rem;
    }
    /* Hide horizontal connectors on smaller screens as items stack */
    .process-horizontal-unique .horizontal-connector {
        display: none;
    }

    /* Footer */
    footer .usefull-link,
    footer .social-wrapper {
        justify-content: flex-start !important;
    }
    
    footer h5 {
        text-align: left;
    }

    footer .usefull-link ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    flex-direction: column;
    align-items: start;
}
    footer .usefull-link ul li {
        margin: 0;
    }
    footer .social-icon {
        justify-content: center;
    }


    /*==========
    /===About Page
    ==================*/
    /* Mission Section */
    .mvv-elegant-design {
        padding: 80px 0;
    }
    .mvv-elegant-design .title {
        font-size: 2.5rem;
    }
    .mvv-elegant-design .subtitle {
        margin-bottom: 50px;
    }
    .mvv-elegant-design .mvv-card {
        padding: 30px 25px;
    }
    .mvv-elegant-design .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    .mvv-elegant-design .card-icon i {
        font-size: 2.5rem;
    }
    .mvv-elegant-design .card-title {
        font-size: 1.6rem;
    }
    .mvv-elegant-design .card-description {
        font-size: 0.95rem;
    }
    .mvv-elegant-design .values-list-elegant li {
        font-size: 0.95rem;
    }


    .page-hero.about-hero {
        height: 430px;
    }
    .page-hero.about-hero .hero-heading {
        font-size: 3rem;
    }
    .page-hero.about-hero .hero-description {
        font-size: 1rem;
    }
    .page-hero.about-hero::before,
    .page-hero.about-hero::after {
        width: 100%; /* Full width for background elements on smaller screens */
        opacity: 0.05; /* Make both more subtle */
    }

    /* About Story Unique Adjustments */
    .about-story-unique {
        padding: 80px 0;
    }
    .about-story-unique .story-image-overlap {
        margin-top: 40px; /* Space between text and image on smaller screens */
        padding: 15px;
    }
    .about-story-unique .story-quote-box {
        position: relative; /* Make it flow naturally */
        width: 90%;
        margin-top: -50px; /* Pull it up to overlap the image slightly */
        bottom: auto;
        left: auto;
        right: auto;
        transform: translateY(0); /* Remove animation for smaller screens */
        opacity: 1;
        animation: none;
        padding: 20px 25px;
    }
    .about-story-unique .title {
        font-size: 2.2rem;
    }
    .about-story-unique .lead-text {
        font-size: 1.05rem;
    }
    .about-story-unique .detail-text {
        font-size: 0.95rem;
    }
    .about-story-unique .story-highlights li {
        font-size: 0.95rem;
    }

    .mvv-minimalistic,
    .why-choose-us-minimalistic,
    .cta-minimal {
        padding: 80px 0;
    }

    .mvv-minimalistic .title,
    .why-choose-us-minimalistic .title {
        font-size: 2.2rem;
    }

    .mvv-minimalistic .mvv-icon-box,
    .why-choose-us-minimalistic .why-feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    .mvv-minimalistic .mvv-icon-box i,
    .why-choose-us-minimalistic .why-feature-icon i {
        font-size: 2.2rem;
    }
    .mvv-minimalistic .mvv-item-title,
    .why-choose-us-minimalistic .why-feature-title {
        font-size: 1.4rem;
    }
    .mvv-minimalistic .mvv-item-description,
    .why-choose-us-minimalistic .why-feature-description {
        font-size: 0.9rem;
    }

    /* Leader Spotlight adjustments for tablets */
    .leader-spotlight {
        padding: 80px 0;
    }
    .leader-spotlight .leader-image-wrapper {
        height: 450px;
        margin-left: 0; /* Remove offset */
        margin-bottom: 40px; /* Add space below image */
    }
    .leader-spotlight .leader-content-box {
        margin-left: 0; /* Remove offset */
        padding: 40px;
        text-align: center; /* Center content on smaller screens */
    }
    .leader-spotlight .title {
        font-size: 2rem;
    }
    .leader-spotlight .lead-name,
    .leader-spotlight .lead-position {
        font-size: 1.2rem;
    }
    .leader-spotlight p {
        font-size: 0.95rem;
    }

    /*==========
    /===Certification Page
    ==================*/
    .grs-overview,
    .grs-benefits,
    .grs-process,
    .grs-why-choose,
    .cta-banner {
        padding: 60px 0;
    }

    .features-grid .feature-card,
    .benefit-card,
    .process-step {
        margin-bottom: 30px;
    }

    .process-steps {
        gap: 20px;
    }

    .process-step {
        max-width: 48%; /* Two columns on smaller desktops/tablets */
    }

    .grs-why-choose img {
        margin-bottom: 30px;
    }

     /*==========
    /===Training Page
    ==================*/
    .training-details-section {
        padding: 70px 0;
    }

    .training-details-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .training-summary.card {
        padding: 30px;
        margin-bottom: 30px;
    }

    .training-summary .card-title {
        font-size: 2rem;
    }

    .training-thumbnail-single {
        margin-top: 40px; /* Adjust margin for mobile/tablet layout */
        margin-bottom: 40px;
    }

    
    /*==========
    /===Verification Page
    ==================*/
    
    .verify-certificate-section {
        padding: 60px 0;
    }

    .verification-card.card {
        padding: 40px;
    }

    .verification-card .card-title {
        font-size: 2rem;
    }

    .verification-form .form-control-lg {
        padding: 12px 18px;
        font-size: 1rem;
    }

    .verification-form .verify-btn {
        padding: 12px 25px;
        font-size: 1.1rem;
    }

    /*==========
    /===Contact Page
    ==================*/

    .contact-section {
        padding: 70px 0;
    }

    .contact-form-card,
    .contact-info-card,
    .map-container {
        padding: 40px;
        margin-bottom: 30px; /* Add space between cards vertically on smaller screens */
    }

    .contact-section .section-title {
        font-size: 2rem;
        text-align: center; /* Center titles on tablet/mobile */
        width: 100%; /* Ensure underline spans full width */
    }
    .contact-section p.text-muted {
        text-align: center;
    }
    .contact-form .send-message-btn {
        width: 100%; /* Full width button on smaller screens */
    }
    .social-icons-contact {
        text-align: center !important;
    }


    /*==========
    /===Accreditation
    ==================*/
    .accreditation-image-box {
        margin-bottom: 40px;
    }

    .accreditation-benefit-card {
        margin-bottom: 25px;
    }

    .etex-accreditation-highlight {
        padding: 80px 0;
    }
    .etex-accreditation-card {
        padding: 40px;
        text-align: center;
    }
    .etex-accreditation-card .accreditation-badge {
        margin-top: 30px;
    }

}

@media (max-width:768px){
    html,
    body {
        font-size: 14px;
    }

    p {
        font-size: 0.95rem;
    }

    .btn-primary {
        font-size: 0.95rem;
        padding: 13px 32px;
    }

    .section {
        padding: 60px 0;
    }

    .section .title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .section .subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    /* Main Carousel */
    .main-carousel .slider-wrapper img {
        height: 480px;
    }

    .main-carousel .slider-content h2 {
        font-size: 3.2rem;
        margin-bottom: 20px;
    }

    .main-carousel .slider-content p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .main-carousel .owl-nav button {
        font-size: 2rem !important;
        width: 48px;
        height: 48px;
        right: 20px;
    }


    /* About */
    .about .about-content-block .title {
        font-size: 2.5rem;
    }
    .about .about-experience-badge {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
        bottom: -50px;
    }
    .about .about-experience-badge span.fs-2 {
        font-size: 1.8rem !important;
    }


    /* Services */
    .services .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    .services .service-title {
        font-size: 1.5rem;
    }
    .services .service-description {
        font-size: 0.9rem;
    }

    /* Why */
    .why .why-card-minimal {
        padding: 25px;
    }
    .why .why-icon-minimal {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    .why .why-title-minimal {
        font-size: 1.25rem;
    }

    /* Testimonials */
    .testimonials .brand-logo-card {
        min-height: 100px;
        padding: 15px;
    }
    .testimonials .brand-logo-card img {
        max-height: 70px;
    }

    /* Accreditations */
    .accreditations .accreditation-card-redesigned {
        min-height: 110px;
        padding: 10px;
    }
    .accreditations .accreditation-card-redesigned img {
        max-height: 80px;
    }

    /* Process */
    .process-horizontal-unique .process-step-item {
        margin-bottom: 30px;
    }
    .process-horizontal-unique .step-card {
        padding: 25px;
    }
    .process-horizontal-unique .step-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    .process-horizontal-unique .step-circle-icon {
        width: 70px;
        height: 70px;
    }
    .process-horizontal-unique .step-circle-icon i {
        font-size: 2.5rem; /* Adjust icon size further for small screens */
    }
    .process-horizontal-unique .step-number-badge {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        top: -6px;
        right: -6px;
    }
    .process-horizontal-unique .step-title {
        font-size: 1.2rem;
    }
    .process-horizontal-unique .step-description {
        font-size: 0.95rem;
    }

    /* Footer */
    footer .social-icon a {
        width: 45px;
        height: 45px;
        font-size: 1.7rem;
        margin-right: 12px;
    }


    /*==========
    /===About Page
    ==================*/
    /* Mission Section */
    .mvv-elegant-design {
        padding: 60px 0;
    }
    .mvv-elegant-design .title {
        font-size: 2rem;
    }
    .mvv-elegant-design .subtitle {
        margin-bottom: 40px;
        font-size: 1rem;
    }
    .mvv-elegant-design .mvv-card {
        padding: 25px 20px;
    }
    .mvv-elegant-design .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    .mvv-elegant-design .card-icon i {
        font-size: 2rem;
    }
    .mvv-elegant-design .card-title {
        font-size: 1.4rem;
    }
    .mvv-elegant-design .card-description {
        font-size: 0.9rem;
    }
    .mvv-elegant-design .values-list-elegant li {
        font-size: 0.9rem;
    }

    .page-hero.about-hero {
        height: 370px;
    }
    .page-hero.about-hero .hero-heading {
        font-size: 2.5rem;
    }
    .page-hero.about-hero .hero-description {
        font-size: 0.9rem;
    }

    /* About Story Unique Adjustments */
    .about-story-unique {
        padding: 60px 0;
    }
    .about-story-unique .story-image-overlap {
        padding: 10px;
    }
    .about-story-unique .story-quote-box {
        width: 95%;
        padding: 18px 20px;
        margin-top: -40px;
    }
    .about-story-unique .story-quote-box .quote-icon {
        font-size: 2rem;
    }
    .about-story-unique .story-quote-box p {
        font-size: 1rem;
    }
    .about-story-unique .title {
        font-size: 2rem;
    }

    .mvv-minimalistic,
    .why-choose-us-minimalistic,
    .cta-minimal,
    .leader-spotlight {
        padding: 60px 0;
    }

    .mvv-minimalistic .title,
    .why-choose-us-minimalistic .title {
        font-size: 2rem;
    }
    .mvv-minimalistic .mvv-item,
    .why-choose-us-minimalistic .why-feature-item {
        padding: 30px 20px;
    }

    /* Leader Spotlight adjustments for phones */
    .leader-spotlight .leader-image-wrapper {
        height: 350px;
    }
    .leader-spotlight .leader-content-box {
        padding: 30px;
    }
    .leader-spotlight .title {
        font-size: 1.8rem;
    }

    .cta-minimal .title {
        font-size: 2rem;
    }
    .cta-minimal .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }


    /*==========
    /===Certification Page
    ==================*/
    .grs-overview .title,
    .grs-benefits .title,
    .grs-process .title,
    .grs-why-choose .title,
    .cta-banner .title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .grs-overview .subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .process-step {
        min-width: 100%; /* Stack on small screens */
        max-width: 100%;
    }


     /*==========
    /===Training Page
    ==================*/
    .training-details-section {
        padding: 50px 0;
    }

    .training-details-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        text-align: center; /* Center section titles on mobile */
        width: 100%;
    }

    .training-summary.card,
    .training-course-structure,
    .other-info .info-block.card {
        padding: 25px;
        margin-bottom: 25px;
    }

    .training-summary .card-title {
        font-size: 1.8rem;
        text-align: center; /* Center summary title on mobile */
    }

    .training-summary .training-meta li {
        font-size: 1rem;
    }

    .training-course-structure .accordion-button {
        font-size: 1.1rem;
        padding: 18px 20px;
    }

    .training-course-structure .accordion-body {
        padding: 20px;
    }

    .other-info .info-block .card-title {
        font-size: 1.2rem;
    }

    .other-info .info-block .card-title i {
        font-size: 1.5rem;
    }

    .training-thumbnail-single {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .bg-accent-gradient {
        padding: 30px;
        margin-top: 30px;
    }

    .bg-accent-gradient h4 {
        font-size: 1.6rem;
    }

    .bg-accent-gradient p {
        font-size: 1rem;
    }

    .bg-accent-gradient .btn-light {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .instructor-profile.card {
        margin-top: 30px;
        padding: 25px;
    }


     /*==========
    /===Verification Page
    ==================*/
    .verify-certificate-section {
        padding: 40px 0;
    }

    .verification-card.card {
        padding: 30px;
    }

    .verification-card .card-title {
        font-size: 1.8rem;
    }

    .verification-form .input-group {
        margin-bottom: 25px;
    }

    .verification-form .input-group-text {
        font-size: 1rem;
        padding: 0 15px;
    }

    .verification-form .form-control-lg {
        padding: 10px 15px;
        font-size: 0.95rem;
    }

    .verification-form .verify-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }

    /*==========
    /===Contact Page
    ==================*/

    .contact-section {
        padding: 50px 0;
    }

    .contact-form-card,
    .contact-info-card,
    .map-container {
        padding: 30px;
        margin-bottom: 25px;
    }

    .contact-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .contact-form .form-control {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .contact-form .form-floating>label {
        font-size: 0.95rem;
    }

    .contact-form .send-message-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .contact-info-card .info-item {
        margin-bottom: 25px;
    }
    .contact-info-card .info-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    .contact-info-card .info-icon i {
        font-size: 1.5rem;
    }
    .contact-info-card .info-content h4 {
        font-size: 1.1rem;
    }
    .contact-info-card .info-content p {
        font-size: 0.95rem;
    }
    .social-icons-contact .social-icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 5px;
    }

    .map-container iframe {
        height: 350px;
    }

    /*==========
    /===Accreditation
    ==================*/

    .accreditation-image-box {
        padding: 10px;
    }

    .accreditation-benefit-card {
        padding: 30px;
    }
    .accreditation-benefit-card .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    .accreditation-benefit-card .card-icon i {
        font-size: 2rem;
    }
    .accreditation-benefit-card .card-title {
        font-size: 1.4rem;
    }
    .etex-accreditation-highlight {
        padding: 60px 0;
    }
    .etex-accreditation-card {
        padding: 30px;
    }
    .etex-accreditation-card .accreditation-badge img {
        max-width: 150px;
    }
    .etex-accreditation-card .btn-light {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width:576px){
    /* Main Carousel */
    .main-carousel .slider-wrapper img {
        height: 380px;
    }

    .main-carousel .slider-content h2 {
        font-size: 2.5rem;
    }

    .main-carousel .slider-content p {
        font-size: 1rem;
    }

    .main-carousel .slider-content .btn {
        padding: 11px 28px;
        font-size: 0.95rem;
    }

    .main-carousel .owl-nav button {
        right: 15px;
    }

    /* Accreditations */
    .accreditations .accreditation-card-redesigned {
        min-height: 90px;
        padding: 8px;
    }
    .accreditations .accreditation-card-redesigned img {
        max-height: 70px;
    }

    /*==========
    /===About Page
    ==================*/
    /* Mission Section */
    .mvv-elegant-design .mvv-card {
        margin-bottom: 20px; /* Add space between cards vertically */
    }


    .page-hero.about-hero {
        height: 370px;
    }
    .page-hero.about-hero .hero-heading {
        font-size: 2rem;
    }
    .page-hero.about-hero .hero-subheading {
        font-size: 0.9rem;
    }
    .page-hero.about-hero .hero-description {
        font-size: 0.85rem;
    }
    .page-hero .btn-accent-outline {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    /* About Story Unique Adjustments */
    .about-story-unique .story-image-overlap {
        padding: 5px;
    }
    .about-story-unique .story-quote-box {
        width: 100%; /* Full width on smallest screens */
        padding: 15px 18px;
        margin-top: -30px;
    }
    .about-story-unique .story-quote-box p {
        font-size: 0.9rem;
    }
    .about-story-unique .story-content-box {
        padding: 15px;
    }
    .about-story-unique .title {
        font-size: 1.7rem;
    }
    .about-story-unique .lead-text,
    .about-story-unique .detail-text,
    .about-story-unique .story-highlights li {
        font-size: 0.9rem;
    }

    .leader-spotlight .leader-image-wrapper {
        height: 280px;
    }

    /*==========
    /===Certification Page
    ==================*/

    .grs-overview .main-title,
    .grs-benefits .main-title,
    .grs-process .main-title,
    .grs-why-choose .main-title,
    .cta-banner .main-title {
        font-size: 1rem;
    }

    .features-grid .feature-card,
    .benefit-card,
    .process-step {
        padding: 20px;
    }

    .features-grid .feature-card h4 {
        font-size: 1.3rem;
    }

    .benefit-card h4 {
        font-size: 1.1rem;
    }

    .process-step h4 {
        font-size: 1.4rem;
    }

    .grs-why-choose .why-choose-list li {
        font-size: 1rem;
    }
}