/* 
 * Stay N Meet - Redesigned Premium Stylesheet
 * Responsive, Modern, and Production-Ready UI matching reference design
 */

:root {
    /* Color Palette */
    --clr-brand-maroon: #4a0d1e;     /* Deep wine maroon for stats & footer */
    --clr-logo-red: #791b34;         /* Exact logo text maroon for buttons, links, accents */
    --clr-brand-green: #00932f;      /* Brand green for primary highlights */
    --clr-brand-green-dark: #006b22; /* Dark forest green for sections */
    --clr-brand-green-light: #e6f7ec;/* Soft green background tint */
    --clr-brand-yellow: #ffc300;     /* Brand Gold/Yellow for stats & accents */
    --clr-brand-yellow-light: #fffbeb;
    
    /* Typography colors (Pure Black for contrast and premium look) */
    --clr-dark: #000000;            /* Solid black body */
    --clr-dark-headings: #000000;   /* Solid black headings */
    --clr-muted: #000000;           /* Muted text now solid black */
    --clr-light: #f8fafc;           /* Slate 50 */
    --clr-border: #e2e8f0;          /* Slate 200 */
    
    /* Semantic scale */
    --fs-h1: clamp(2rem, 5vw, 3.25rem);
    --fs-h2: clamp(1.6rem, 3.8vw, 2.25rem);
    --fs-h3: clamp(1.25rem, 2.8vw, 1.65rem);
    --fs-h4: clamp(1.1rem, 2vw, 1.35rem);
    --fs-body: 0.95rem;
    --fs-sm: 0.875rem;
    --fs-xs: 0.75rem;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px -2px rgba(74, 13, 30, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 40px -4px rgba(74, 13, 30, 0.08), 0 8px 20px -6px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--clr-dark);
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Equal Section Padding */
.section-padding {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

/* Headings */
h1, h2, h3, h4, .h1-scale, .h2-scale, .h3-scale, .h4-scale {
    font-family: 'Outfit', sans-serif;
    color: var(--clr-dark-headings);
    line-height: 1.25;
}

h1 { font-size: var(--fs-h1); }
h2, .h2-scale { 
    font-size: var(--fs-h2) !important;
    color: var(--clr-dark-headings);
}
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p, .text-muted {
    font-size: var(--fs-body) !important;
    color: var(--clr-dark) !important;
}

.text-primary-color { 
    color: var(--clr-logo-red) !important; 
}

.text-accent-color { 
    color: var(--clr-brand-yellow) !important; 
}

.text-xs { font-size: var(--fs-xs) !important; }
.text-sm { font-size: var(--fs-sm) !important; }
.text-muted { color: var(--clr-muted) !important; }

/* Topbar Area */
.topbar-area {
    background-color: var(--clr-brand-maroon);
    font-size: var(--fs-sm);
    padding: 0 !important;
}

.topbar-list {
    display: flex;
    align-items: center;
    height: 100%;
}

.topbar-list li {
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
}

.topbar-list li a {
    transition: var(--transition-fast);
}

.topbar-list li a:hover {
    color: var(--clr-brand-yellow) !important;
}

.topbar-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.topbar-links li {
    display: inline-flex;
    align-items: center;
}

.btn-accent {
    background-color: var(--clr-logo-red);
    color: #ffffff !important;
    border: none;
    border-radius: 0 !important;
    padding: 10px 24px !important;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
    animation: blinkYellow 2s infinite ease-in-out;
}

@keyframes blinkYellow {
    0%, 60%, 100% {
        background-color: var(--clr-logo-red);
        color: #ffffff !important;
    }
    78%, 82% {
        background-color: var(--clr-brand-yellow);
        color: var(--clr-brand-maroon) !important;
    }
}

.btn-accent:hover {
    background-color: #5c061e;
    color: #ffffff !important;
    animation: none; /* pause animation on direct hover */
}


/* Header & Navbar */
.sticky-top {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.main-navbar {
    background-color: #ffffff;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    border-bottom: none !important;
}

.logo-img {
    max-height: 68px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--clr-dark-headings);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    padding: 0.5rem 1.25rem !important;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--clr-logo-red);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 1.25rem;
    right: 1.25rem;
    height: 3px;
    background-color: var(--clr-logo-red);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.dropdown-toggle::after {
    display: none !important;
}

.navbar-nav .dropdown-menu {
    background-color: #ffffff !important;
    box-shadow: var(--shadow-lg) !important;
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0px;
    border: 1px solid var(--clr-border) !important;
}

.navbar-nav .dropdown-item {
    color: var(--clr-dark) !important;
    font-size: var(--fs-sm);
    padding: 0.6rem 1.5rem;
    transition: var(--transition-fast);
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--clr-logo-red) !important;
    color: #ffffff !important;
    padding-left: 1.75rem;
}

/* Enable hover dropdown for large screen devices */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }
}

/* Hero Section with seamless background fade */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0 !important;
    background-image: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.4) 15%, rgba(255, 255, 255, 0.4) 85%, #ffffff 100%), url('../images/background-section.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-subtitle {
    letter-spacing: 0.12em;
    font-size: 0.85rem;
}

.hero-title {
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 540px;
}

.hero-actions {
    margin-top: 2rem;
}

.btn-explore {
    background-color: var(--clr-logo-red);
    color: #ffffff !important;
    border: 2px solid var(--clr-logo-red);
    padding: 0.8rem 2.2rem !important;
    border-radius: 6px !important;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-explore:hover {
    background-color: #5c061e;
    border-color: #5c061e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 27, 52, 0.25);
}

.btn-get-touch {
    background-color: transparent;
    color: var(--clr-brand-green) !important;
    border: 2px solid var(--clr-brand-green);
    padding: 0.8rem 2.2rem !important;
    border-radius: 6px !important;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-get-touch:hover {
    background-color: var(--clr-brand-green);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 147, 47, 0.15);
}

/* Hero Image Frame (Rounded Rectangle) */
.hero-circle-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 15px;
}

.hero-circle-image-frame {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 8px solid #ffffff;
    box-shadow: var(--shadow-lg);
}

.hero-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-circle-image-wrapper::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 30px;
    width: calc(100% - 30px);
    height: 380px;
    border-radius: 20px;
    border: 4px solid var(--clr-brand-green);
    pointer-events: none;
    z-index: 1;
}

.hero-contour-lines {
    display: none;
}

.hero-contour-lines::before {
    content: "";
    position: absolute;
    top: 15px; left: 15px; right: 15px; bottom: 15px;
    border-radius: 50%;
    border: 1px solid rgba(0, 147, 47, 0.08);
}

.hero-contour-lines::after {
    content: "";
    position: absolute;
    top: 30px; left: 30px; right: 30px; bottom: 30px;
    border-radius: 50%;
    border: 1px solid rgba(0, 147, 47, 0.04);
}

/* Carousel Controls */
.carousel-control-prev-icon-custom,
.carousel-control-next-icon-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    color: var(--clr-logo-red);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.carousel-control-prev-icon-custom:hover,
.carousel-control-next-icon-custom:hover {
    background-color: var(--clr-logo-red);
    color: #ffffff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 70px;
    opacity: 1;
}

/* Who We Are Section Card style removed */
.who-we-are-section {
    background: #ffffff !important;
    position: relative;
    z-index: 5;
}

.who-we-are-section .container {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.who-we-are-image-wrapper {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

.who-we-are-image-border {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.who-we-are-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-we-are-dots-bottom {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 10px 10px;
    z-index: 1;
}

.feature-icon-red {
    width: 44px;
    height: 44px;
    background-color: #fff2f5;
    border: 1px solid rgba(121, 27, 52, 0.1);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-logo-red);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-item-inline {
    background-color: #ffffff;
    border: 1px solid var(--clr-border);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.feature-item-inline:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(121, 27, 52, 0.2);
}

/* What We Do Cards with same background image (fades out at bottom to merge) */
.services-section-custom {
    background-image: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.4) 15%, rgba(255, 255, 255, 0.4) 85%, #ffffff 100%), url('../images/background-section.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.heading-line {
    width: 50px;
    height: 3px;
    background-color: var(--clr-logo-red);
    margin: 1rem auto 0 auto;
    border-radius: 2px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 2.5rem 1.8rem 2.2rem 1.8rem !important;
    position: relative;
    margin-top: 0;
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 13, 30, 0.06) !important;
}

.service-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem auto;
    font-size: 28px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
}

.service-card:hover .service-icon-circle {
    transform: scale(1.06);
}

.bg-maroon { background-color: var(--clr-logo-red) !important; }
.bg-green { background-color: var(--clr-brand-green) !important; }

.card-accent-maroon { 
    border: 1px solid var(--clr-border) !important; 
}
.card-accent-green { 
    border: 1px solid var(--clr-border) !important; 
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--clr-dark-headings);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--clr-muted) !important;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--clr-logo-red) !important;
    text-decoration: none;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.55rem 1.6rem !important;
    border: 2px solid var(--clr-logo-red) !important;
    border-radius: 50px !important;
    background-color: transparent !important;
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
}

.service-link:hover {
    background-color: var(--clr-logo-red) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(121, 27, 52, 0.25);
    transform: translateY(-2px) !important;
}

/* Stats Section */
.stats-section-wrapper {
    background-color: var(--clr-brand-maroon) !important;
    padding: 0rem 0 !important;
}

.stats-dark-panel {
    background-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.stat-item {
    padding: 1rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background-color: rgba(255, 255, 255, 0.12);
}

.stat-icon-new {
    font-size: 1.8rem;
    color: var(--clr-brand-yellow);
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--clr-brand-yellow) !important;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9) !important;
    letter-spacing: 0.05em;
}

@media (max-width: 991.98px) {
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .stat-item:last-child {
        border-bottom: none;
    }
}

/* Why Choose Us Section (fades out at bottom to merge) */
.choose-section-custom {
    background-image: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.4) 15%, rgba(255, 255, 255, 0.4) 85%, #ffffff 100%), url('../images/background-section.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.choose-item-new {
    background-color: #ffffff;
    border: 1px solid var(--clr-border);
    padding: 1rem 1.2rem !important;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02) !important;
    transition: var(--transition-base);
    height: 100%;
}

.choose-item-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 147, 47, 0.06) !important;
    border-color: rgba(0, 147, 47, 0.2);
}

.choose-icon-circle-new {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--clr-brand-green-light);
    color: var(--clr-brand-green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.choose-image-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.choose-image-frame {
    border-radius: 160px 40px 160px 40px; /* Elegant custom shape */
    overflow: hidden;
    border: 8px solid #ffffff;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.choose-img-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choose-image-wrapper::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border-radius: 170px 50px 170px 50px;
    border: 10px solid var(--clr-brand-green);
    pointer-events: none;
    z-index: 1;
}

.choose-image-dots {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 10px 10px;
    z-index: 0;
}

/* Connect Globally Section */
.connect-globally-section {
    background-color: var(--clr-brand-green-dark);
    padding: 1.5rem 0 !important;
    position: relative;
}

.play-btn-orange {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--clr-brand-yellow);
    color: var(--clr-brand-maroon);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(255, 195, 0, 0.4);
    transition: var(--transition-base);
    text-decoration: none;
}

.play-btn-orange:hover {
    background-color: #ffffff;
    color: var(--clr-brand-green-dark);
    transform: scale(1.1);
}

.globally-stat-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 16px !important;
    transition: var(--transition-base);
}

.globally-stat-card:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateX(-6px);
    border-color: rgba(255, 195, 0, 0.3) !important;
}

.globally-icon-box {
    font-size: 1.75rem;
    color: var(--clr-brand-yellow);
}

/* Question Support Section */
.question-section-custom {
    background: linear-gradient(135deg, var(--clr-brand-yellow-light) 50%, var(--clr-brand-maroon) 50%) !important;
    padding: 1.5rem 0 !important;
}

.questions-white-panel {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
    padding: 3rem 2.5rem !important;
}

.questions-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #fff2f5;
    color: var(--clr-logo-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.questions-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px 8px 8px;
    background-color: var(--clr-brand-yellow-light);
    border: 1px solid rgba(255, 195, 0, 0.25);
    border-radius: 50px;
    text-decoration: none;
    color: var(--clr-dark-headings) !important;
    transition: var(--transition-base);
}

.questions-phone-btn:hover {
    background-color: #ffffff;
    border-color: var(--clr-brand-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.phone-btn-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--clr-brand-yellow);
    color: var(--clr-brand-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Footer Section with highly transparent texture overlay */
.footer-section {
    position: relative;
    background-color: var(--clr-brand-maroon);
    background-image: linear-gradient(rgba(74, 13, 30, 0.95), rgba(74, 13, 30, 0.95)), url('../images/footer-bg.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 5rem !important;
    padding-bottom: 2rem !important;
    border-top: none !important;
}

.footer-widget-header {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--clr-brand-yellow);
}

.footer-section p {
    color: #ffffff !important;
    font-size: 0.9rem;
}

.footer-section ul li {
    font-size: 0.9rem;
    color: #ffffff !important;
}

.footer-section ul li a {
    color: #ffffff !important;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: var(--clr-brand-yellow) !important;
    padding-left: 5px;
}

.footer-icon-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
}

.footer-icon-link:hover {
    background-color: var(--clr-brand-yellow);
    color: var(--clr-brand-maroon) !important;
    transform: translateY(-3px);
}

.designer-link {
    color: var(--clr-brand-yellow) !important;
    text-decoration: none;
}

.designer-link:hover {
    text-decoration: underline;
}

/* WhatsApp Floating Action */
.whatsapp-float-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #ffffff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 2rem;
    z-index: 999;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transition: var(--transition-base);
}

.whatsapp-float-widget:hover {
    background-color: #128c7e;
    color: #ffffff;
    transform: scale(1.1) rotate(6deg);
}

.pulse-bubble {
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: bubble 2s infinite;
    z-index: -1;
}

@keyframes bubble {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Scroll to Top */
.go-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: var(--clr-logo-red);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.go-top.active {
    opacity: 1;
    visibility: visible;
}

.go-top:hover {
    background-color: var(--clr-brand-yellow);
    color: var(--clr-brand-maroon) !important;
    transform: translateY(-3px);
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 991.98px) {
    .who-we-are-section .container {
        padding: 2.5rem 1.5rem;
    }
    .topbar-links {
        justify-content: center;
        margin-top: 8px;
    }
    .btn-accent {
        width: 100%;
        justify-content: center;
    }
    .hero-circle-image-wrapper {
        height: auto;
        padding: 0;
        margin-top: 2rem;
    }
    .hero-circle-image-frame {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 440px;
        height: 320px;
        margin: 0 auto;
    }
    .hero-circle-image-wrapper::after {
        display: none;
    }

    .topbar-list li a {
            transition: var(--transition-fast);
        font-size: 13px;
        width: 156px;
        margin-left: 15px;
        margin-bottom: -15px;
}
}

@media (max-width: 575.98px) {
    .hero-slider-section {
        padding: 3rem 0;
    }
    .who-we-are-section {
        margin-top: 0;
    }
    .who-we-are-section .container {
        border-radius: 16px;
    }
    .choose-image-frame {
        border-radius: 80px 20px 80px 20px;
    }
    .choose-image-wrapper::after {
        border-radius: 90px 30px 90px 30px;
    }
}


@media (max-width: 375px) {
  
  .topbar-list li a {
    transition: var(--transition-fast);
    font-size: 13px;
    width: 156px;
    margin-left: -15px;
    margin-bottom: -15px;
  }

  .carousel-control-prev-icon-custom, .carousel-control-next-icon-custom{
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 256px;
    background-color: transparent;
  }
}



/* Color Helper Overrides for Bootstrap Compatibility */
.text-success {
    color: var(--clr-brand-green) !important;
}
.bg-brand-green {
    background-color: var(--clr-brand-green-dark) !important;
}
.hero-subtitle {
    color: var(--clr-brand-green) !important;
}
.bg-light-gray {
    background-color: var(--clr-light) !important;
}

/* Premium Hero Carousel Transitions & Animations */
@keyframes fadeInUpHero {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleInHero {
    from {
        opacity: 0;
        transform: scale(0.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.carousel-item .hero-subtitle,
.carousel-item .hero-title,
.carousel-item .hero-desc,
.carousel-item .hero-actions {
    opacity: 0;
    will-change: transform, opacity;
}

.carousel-item.active .hero-subtitle {
    animation: fadeInUpHero 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.carousel-item.active .hero-title {
    animation: fadeInUpHero 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.carousel-item.active .hero-desc {
    animation: fadeInUpHero 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.carousel-item.active .hero-actions {
    animation: fadeInUpHero 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.carousel-item.active .hero-circle-image-wrapper {
    animation: scaleInHero 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}


/* About us Page*/

/*==================================================
ABOUT HERO
==================================================*/

.about-hero{
    position: relative;
    background: url("../images/hero-bg-image.webp") center center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-overlay{
    position:absolute;
    inset:0;
    
}

.breadcrumb-wrapper{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    text-align: left;
}

.breadcrumb-wrapper h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
    color:black;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.breadcrumb{
    background:none;
    margin:0;
    padding:0;
    text-align:left;
}

.breadcrumb-item,
.breadcrumb-item a{
    color: black;
    text-decoration:none;
    font-size:16px;
    text-align:left;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before{
    color: black;
}



/*==================================================
ABOUT INTRO
==================================================*/

.section-space{
    padding:60px 0;
}

.about-image-wrapper{
    position:relative;
}

.about-main-image{

    width:100%;
    border-radius:10px;
    border:4px solid #f1c75b;
    box-shadow:0 25px 55px rgba(0,0,0,.12);

}






/*=========================
CONTENT
==========================*/

.about-content{

    padding-left:70px;

}

.sub-title{

    display:inline-block;
    color:#7d1732;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;

}



.about-content h2 span{

    color:#791b34;

}

.about-content p{

    font-size:18px;
    color:#000000;
    line-height:34px;
    margin-bottom:22px;
    text-align:justify;

}

.about-paragraph{

    font-size:18px;
    color:#000000;
    line-height:34px;
    margin-bottom:22px;
    text-align:justify;

}


/*==========================
BUTTON
==========================*/

.about-btn{

display:inline-flex;
align-items:center;
gap:12px;

padding:10px 28px;

background:#7d1732;

color:#fff;

font-weight:600;

border-radius:6px;

text-decoration:none;

transition:.4s;

}

.about-btn:hover{

background:#5f0f24;
color:#fff;

transform:translateY(-3px);

}

.about-btn i{

transition:.4s;

}

.about-btn:hover i{

transform:translateX(6px);

}


/*==================================================
COMPANY STORY
==================================================*/

.company-story{

padding:80px 0;
background:#fff;

}



.company-story p{

font-size:17px;
line-height:32px;
color:#666;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.about-content{

padding-left:0;
margin-top:50px;

}

.about-content h2{

font-size:38px;

}

.about-hero{

height:240px;

}

.breadcrumb-wrapper h1{

font-size:42px;

}

}

@media(max-width:767px){

.section-space{

padding:70px 0;

}

.about-content h2{

font-size:30px;

}

.about-content p{

font-size:16px;
line-height:29px;

}

.pattern-one,
.pattern-two{

display:none;

}

.about-btn{

padding:14px 26px;

}

.breadcrumb-wrapper h1{

font-size:34px;

}

.about-hero{

height:180px;

}

}


/*=============================
    TESTIMONIAL SECTION
==============================*/

.testimonial-section{
    background:#f5f7fb;
    padding:80px 0;
}



.section-title p{
    color:#777;
    font-size:16px;
}

/*=============================
        CARD
==============================*/

.testimonial-card{
    position:relative;
    background:#fff;
    height:488px;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.18);
    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,.25);
}

/*=============================
      CONTENT
==============================*/

.testimonial-content{
    padding:18px 28px 0;
    position:relative;
    z-index:5;
}

.testimonial-content h3{
    font-size:22px;
    color:#5aa3ef;
    letter-spacing:1px;
    font-weight:300;
    margin-bottom:0;
}

.testimonial-content h2{
    font-size:52px;
    color:#5aa3ef;
    font-weight:800;
    line-height:1;
    margin-bottom:45px;
}

.testimonial-content p{
    color:#555;
    line-height:1.9;
    font-size:15px;
    text-align:justify;
}

/*=============================
      QUOTE ICON
==============================*/

.quote-icon{
    position:absolute;
    right:55px;
    top:215px;
    z-index:10;
}

.quote-icon i{
    font-size:46px;
    color:#fff;
    opacity:.9;
}

/*=============================
      CLIENT INFO
==============================*/

.client-info{
    position:absolute;
    bottom:35px;
    left:35px;
    right:35px;
    display:flex;
    align-items:center;
    z-index:20;
}

.client-img{
    width:120px;
    height:120px;
    min-width:120px;
    border-radius:50%;
    border:8px solid #fff;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.client-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.client-text{
    margin-left:22px;
}

.client-text h4{
    font-size:22px;
    font-weight:700;
    color:#791b34;
    margin-bottom:3px;
}

.client-text span{
    color:#777;
    font-size:15px;
    display:block;
    margin-bottom:8px;
    font-style:italic;
}

.stars{
  
    color:#ffc300;
    font-size:16px;
}

.stars i{
    margin-right:2px;
}

/*=====================================
        TOP RIGHT BLUE SHAPE
======================================*/

.corner-top{
    position:absolute;
    top:0;
    right:0;
    width:437px;
    height:40px;
    background: #791b34;
    z-index:1;

    clip-path:polygon(0 0,100% 0,100% 100%,62% 100%,48% 76%,0 0);
}

/* Round Bottom */

.corner-top::after{
    content:"";
    position:absolute;
    bottom:-28px;
    left:52px;
    width:115px;
    height:58px;
    background:#791b34;
    border-radius:0 0 60px 60px;
}



/*=====================================
          BOTTOM BLUE AREA
======================================*/

.bottom-wave{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:83px;
    background:#791b34;
    z-index:1;
}



/* White Curve */

.bottom-wave::before{
    content:"";
    position:absolute;
    top:-95px;
    left:95px;

    width:255px;
    height:185px;


    border-radius:50%;
}



/* Right Triangle */

.bottom-wave::after{
    content:"";
    position:absolute;
    right:0;
    top:-92px;

    width:70px;
    height:95px;

    background: #791b34;

    clip-path:polygon(100% 0,100% 100%,0 100%);
}



/*=====================================
       IMAGE POSITION
======================================*/

.client-img{
    position:relative;
    z-index:30;
}

.client-text{
    position:relative;
    z-index:30;
}



/*=====================================
      CONTENT ABOVE SHAPES
======================================*/

.testimonial-content,
.quote-icon{
    position:relative;
    z-index:5;
}

/*==============================
        RESPONSIVE
===============================*/

@media (max-width:1199px){

    .testimonial-card{
        height:650px;
    }

    .testimonial-content h2{
        font-size:42px;
    }

    .client-img{
        width:105px;
        height:105px;
        min-width:105px;
    }

    .client-text h4{
        font-size:22px;
    }

}


@media (max-width:991px){

    .testimonial-section{
        padding:70px 0;
    }

    .testimonial-card{
        height:580px;
        margin-bottom:20px;
    }

    .testimonial-content{
        padding:45px 30px 0;
    }

    .testimonial-content h2{
        font-size:38px;
    }

    .quote-icon{
        top:190px;
        right:35px;
    }

}


@media (max-width:767px){

    .testimonial-card{
        height:auto;
        padding-bottom:180px;
    }

    .testimonial-content{
        padding:0px 25px 0;
    }

    .testimonial-content h3{
        font-size:18px;
    }

    .testimonial-content h2{
        font-size:34px;
        margin-bottom:30px;
    }

    .testimonial-content p{
        font-size:14px;
        line-height:1.8;
    }

    .quote-icon{
        right:25px;
        top:170px;
    }

    .quote-icon i{
        font-size:35px;
    }

    .corner-top{
        width:314px;
        height:30px;
    }

    .bottom-wave{
        height:150px;
    }

    .bottom-wave::before{
        width:210px;
        height:150px;
        top:-80px;
        left:70px;
    }

    .client-info{
        left:20px;
        right:20px;
        bottom:20px;
    }

    .client-img{
        width:90px;
        height:90px;
        min-width:90px;
        border-width:6px;
    }

    .client-text{
        margin-left:15px;
    }

    .client-text h4{
        font-size:18px;
        color:#fff;
    }

    .client-text span{
        font-size:13px;
    }

    .stars{
        font-size:13px;
    }

}


/*==============================
        HOVER EFFECT
===============================*/

.testimonial-card:hover .corner-top{
    background:#791b34;
}

.testimonial-card:hover .corner-top::after{
    background:#791b34;
}

.testimonial-card:hover .bottom-wave{
    background:#791b34;
}

.testimonial-card:hover .bottom-wave::after{
    background:#791b34;
}

.testimonial-card:hover .quote-icon i{
    transform:scale(1.15);
}

.quote-icon i{
    transition:.35s;
}

.client-img img{
    transition:.45s;
}

.testimonial-card:hover .client-img img{
    transform:scale(1.08);
}


/*==============================
       SMOOTH TRANSITIONS
===============================*/

.corner-top,
.corner-top::after,
.bottom-wave,
.bottom-wave::after{
    transition:.35s;
}


/*==================================
        CAREERS PAGE SECTION
==================================*/


/*==================================
        CAREERS HERO
===================================*/

.careers-hero{
    position: relative;
    background: url("../images/career-hero-bg.gif") center center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.careers-overlay{
    position: absolute;
    inset: 0;
}

.breadcrumb-wrapper{
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
}

.breadcrumb-wrapper h1{
    font-size: 48px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000;
}

.breadcrumb{
    background: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.breadcrumb-item,
.breadcrumb-item a{
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before{
    color: #000;
}

/*==================================
        CAREERS PAGE
===================================*/

.career-intro{
     background: #fff;
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.careers-section .section-title{
    font-size: 28px !important;
    font-weight: 700;
    color: #13294B;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.careers-section .section-subtitle{
    color: #444;
    font-size: 17px;
    margin-bottom: 0;
}

.careers-section .title-line{
    width: 70px;
    height: 2px;
    background: #000;
    display: block;
    margin-top: 18px;
}



.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    background:#fff5f7;
    border-radius:50px;
    color:#791b34;
    font-size:14px;
    font-weight:600;
    letter-spacing:.8px;
    text-transform:uppercase;
}

.section-tag i{
    color:#791b34;
}


.heading-line{

    width:80px;
    height:4px;
    border-radius:30px;
    background:#791b34;
    margin:20px 0 28px;
}

.section-desc,
.career-intro-content p{

    color:#666;
    font-size:17px;
    line-height:1.9;
    text-align: justify;
}

/*==================================
        IMAGE
==================================*/

.career-image{

    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.career-image img{

    width:100%;
    height: 472px;
    border-radius:25px;
    transition:.6s;
   
}



/*==================================
      FEATURE LIST
==================================*/

.career-feature-list{

    margin-top:35px;
}

.feature-item{

    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
}

.feature-item i{

    color:#791b34;
    font-size:18px;
}

.feature-item span{

    font-size:16px;
    color:#000000;
}

/*==================================
      WHY CARDS
==================================*/

.why-work{
    position: relative;
    overflow: hidden;
     padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
    background-image: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.4) 15%, rgba(255, 255, 255, 0.4) 85%, #ffffff 100%), url('../images/background-section.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.why-card{

    background:#fff;
    border-radius:20px;
    padding:40px 35px;
    height:100%;
    transition:.4s;
    border:1px solid #ececec;
    text-align:center;
}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.why-card .icon{

    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem auto;
    font-size: 28px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    background: #791b34;
}

.why-card .icon-2{

    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem auto;
    font-size: 28px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    background: #00932f;
}

.why-card:hover .icon{

    background:#791b34;
}

.why-card .icon  i{

    font-size:30px;
    color:#fff;
    transition:.4s;
}

.why-card .icon-2  i{

    font-size:30px;
    color:#fff;
    transition:.4s;
}


.why-card:hover .icon i{

    color:#fff;
}

.why-card h4{

    font-size:1.2rem;
    margin-bottom:15px;
    color:#222;
}

.why-card p{

    color:#666;
    line-height:1.8;
    margin:0;

}


/*========================================
        CAREER OPPORTUNITIES
========================================*/

.career-opportunities{
    background:#fafafa;
     padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.job-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:32px 35px;
    margin-top:0;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    min-height:220px;
}

.job-list{
    display:grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap:1.5rem;
}

@media (max-width: 1199px) {
    .job-list{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .job-list{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .job-list{
        grid-template-columns: 1fr;
    }
}

.job-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    transform:scaleY(0);
    transition:.35s;
}

.job-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.job-card:hover::before{
    transform:scaleY(1);
}

/*============================*/

.job-left{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
    text-align:center;
}

.job-left h4,
.job-left p{
    margin:0;
}

/*============================*/

.job-icon{

    width:72px;
    height:72px;

    min-width:72px;

    display:flex;
    justify-content:center;
    align-items:center;
       text-align:center;

    border-radius:50%;

    background:#791b34;

    transition:.35s;
}

.job-icon-2{

    width:72px;
    height:72px;

    min-width:72px;

    display:flex;
    justify-content:center;
    align-items:center;
   text-align:center;

    border-radius:50%;

    background:#00932f;

    transition:.35s;
}



.job-icon i{

    font-size:28px;
    color:#fff;
    transition:.35s;
}

.job-icon-2 i{

    font-size:28px;
    color:#fff;
    transition:.35s;
}



/*============================*/

.job-left h4{

    font-size:20px;
    color:#222;
    margin-bottom:15px;
    margin-top:15px;
    text-align:center;

}

/*============================*/

.job-meta{

    display:flex;
    flex-wrap:wrap;
    gap:20px;

    list-style:none;

    padding:0;
    margin:0;
}

.job-meta li{

    color:#666;
    font-size:15px;
}

.job-meta li i{

    color:#791b34;
    margin-right:8px;
}

/*============================*/

.apply-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:160px;
    height:45px;

    border-radius:50px;

   background-color: #fff;
    color: var(--clr-logo-red);
    border: 2px solid #791b34;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    margin-top:15px;
}

.apply-btn:hover{

    background-color: #5c061e;
    color: #fff;
    border-color: #5c061e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 27, 52, 0.25);
}

/*============================
        RESPONSIVE
============================*/

@media(max-width:991px){

.job-left{

    flex-direction:column;
    align-items: center;

}

.job-icon{

    width:75px;
    height:75px;

}

.job-left h4{

    font-size:24px;

}

}

@media(max-width:767px){

.job-card{

    padding:25px;

}

.job-meta{

    flex-direction:column;
    gap:12px;

}

.apply-btn{

    width:100%;
    margin-top:20px;

}

}


/*==============================
        CONTACT SECTION
==============================*/

.contact-us-hero{
    position: relative;
    background: url("../images/contact-hero-bg.webp") center center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-us-overlay{
    position: absolute;
    inset: 0;
}

.breadcrumb-wrapper{
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
}

.breadcrumb-wrapper h1{
    font-size: 48px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    margin-bottom: 15px;
    color: black;
}

.breadcrumb{
    background: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.breadcrumb-item,
.breadcrumb-item a{
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before{
    color: #000;
}

.contact-section{
    background:#fff;
    padding:60px 0 0;
}

.section-title{
    font-size:28px !important;
    font-weight:700;
    color:#13294B;
    margin-bottom:8px;
    text-transform:uppercase;
}

.section-subtitle{
    color:#444;
    font-size:17px;
    margin-bottom:0;
}

.title-line{
    width:70px;
    height:2px;
    background:#000;
    display:block;
    margin-top:18px;
}

/*==============================
      CONTACT INFO
==============================*/

.contact-top{
    row-gap:48px;
}

.info-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.info-box .icon{
    width:46px;
    height:46px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#00932f;
    font-size:28px;
    flex-shrink:0;
}

.info-box .icon:hover{
    color:#fff;
    background:#00932f;
}

.info-box h5{
    font-size:20px;
    font-weight:500;
    color:black;
    margin-bottom:5px;
}

.info-box p{
    margin:0;
    color:#444;
    font-size:18px;
    line-height:1.8;
}

.contact-divider{
    margin:35px 0;
    border-color:#d9d9d9;
}

.address-box{
    align-items:flex-start;
}

.contact-link{
    color:#444;
    text-decoration:none;
    transition:all .3s ease;
    font-size:15px;
}

.contact-link:hover{
    color:#00932f; 
}

/*==============================
        MAP
==============================*/

.map-section{
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.4) 15%, rgba(255, 255, 255, 0.4) 85%, #ffffff 100%), url('../images/background-section.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.map-area{
    overflow:hidden;
    border:1px solid #dcdcdc;
}

.map-area iframe{
    width:100%;
    height:500px;
    border:0;
    display:block;
}

/*==============================
        FORM
==============================*/

.contact-form{
    margin-top:45px;
}

.contact-form .row .mb-3 {
    margin-bottom: 0.75rem !important;
}

.contact-form .form-control{
    height:60px;
    border-radius:0;
    border:1px solid #999;
    box-shadow:none;
    font-size:17px;
    padding:15px 18px;
}

.contact-form textarea.form-control{
    height:120px;
    resize:none;
    padding-top:15px;
}

.contact-form .form-control:focus{
    border-color:#00932f;
    box-shadow:none;
}

/*==============================
      BUTTON
==============================*/

.contact-submit-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:56px;
    padding:0 36px;
    border:none;
    border-radius:0;
    background: #791b34;
    color:#fff;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
    cursor:pointer;
    transition:all .35s ease;
}

.contact-submit-btn:hover{
    background:#791b34;
    color:#fff;
}

.contact-submit-btn:focus{
    outline:none;
    box-shadow:none;
}

@media (max-width:767px){
    .contact-submit-btn{
        width:100%;
    }
}

/*==============================
      RESPONSIVE
==============================*/

@media(max-width:1199px){

.section-title{
    font-size:40px;
}

.info-box h5{
    font-size:24px;
}

}

@media(max-width:991px){

.contact-section{
    padding:70px 0;
}

.contact-left{
    margin-bottom:45px;
}

}

@media(max-width:767px){

.section-title{
    font-size:34px;
}

.section-subtitle{
    font-size:15px;
}

.contact-form{
    margin-top:35px;
}

.contact-form .form-control{
    height:55px;
    font-size:15px;
}

.contact-form textarea.form-control{
    height:150px;
}

.info-box{
    margin-bottom:25px;
}

.info-box h5{
    font-size:22px;
}

.info-box p{
    font-size:16px;
}

.contact-btn{
    width:100%;
}

.map-area iframe{
    height:250px;
}

}

/*==============================
      PREMIUM CARD DESIGN
==============================*/

.contact-left,
.contact-form-box{
    background:#fff;
    padding:30px;
    border:1px solid #ececec;
    transition:.35s ease;
}

.contact-left:hover,
.contact-form-box:hover{
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transform:translateY(-4px);
}

/*==============================
      SECTION GAP
==============================*/

.contact-section .row{
    --bs-gutter-x:4rem;
}

/*==============================
      INPUT PREMIUM
==============================*/

.contact-form .form-control{
    background:#fff;
    border:1px solid #d7d7d7;
    transition:.3s;
    font-size:16px;
    font-weight:500;
}

.contact-form .form-control::placeholder{
    color:#888;
    font-weight:400;
}

.contact-form .form-control:hover{
    border-color:#bfbfbf;
}

.contact-form .form-control:focus{
    border-color:#f4a000;
    box-shadow:0 0 0 .15rem rgba(244,160,0,.15);
}

/*==============================
      ICONS
==============================*/

.info-box .icon{
    width:38px;
    height:38px;
    border:1px solid #ececec;
    border-radius:50%;
    background:#fffdf8;
    font-size:18px;
    transition:.3s;
}

.info-box .icon:hover{
    color:#fff;
    background:#00932f;
}

.info-box{
    transition:.35s;
}

.info-box:hover{
    transform:translateX(6px);
}

/*==============================
      BUTTON
==============================*/

.contact-btn{
    min-width:180px;
    height:58px;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.contact-btn i{
    margin-left:8px;
}

/*==============================
      MAP
==============================*/

.map-area{
    border-radius:4px;
    overflow:hidden;
}

.map-area iframe{
    transition:.35s;
}

.map-area:hover iframe{
    transform:scale(1.02);

}

/*==================================================
INNER PAGE CUSTOM STYLES & SIDEBAR
==================================================*/

.sidebar-widget {
    background: #ffffff;
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-lg);
}

.sidebar-title {
    font-size: 20px;
    color: var(--clr-dark-headings);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.sidebar-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--clr-logo-red);
    border-radius: 2px;
}

.sidebar-services-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-services-list li {
    margin-bottom: 12px;
}

.sidebar-services-list li:last-child {
    margin-bottom: 0;
}

.sidebar-service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background-color: #f8fafc;
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    color: var(--clr-dark) !important;
    text-decoration: none;
    transition: var(--transition-base);
}

.sidebar-service-link i {
    font-size: 14px;
    transition: var(--transition-base);
}

.sidebar-service-link:hover {
    background-color: var(--clr-brand-green-light);
    border-color: rgba(0, 147, 47, 0.2);
    color: var(--clr-brand-green-dark) !important;
    padding-left: 22px;
}

.sidebar-service-link:hover i {
    transform: translateX(4px);
}

.sidebar-service-link.active {
    background-color: var(--clr-logo-red);
    border-color: var(--clr-logo-red);
    color: #ffffff !important;
}

.sidebar-service-link.active:hover {
    background-color: #5c061e;
    border-color: #5c061e;
    color: #ffffff !important;
}

/* Sidebar Contact Form */
.sidebar-form .form-control {
    background-color: #f8fafc;
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    height: auto;
    font-weight: 400;
    transition: var(--transition-base);
}

.sidebar-form .form-control:focus {
    background-color: #ffffff;
    border-color: var(--clr-logo-red);
    box-shadow: 0 0 0 0.2rem rgba(121, 27, 52, 0.1);
}

.sidebar-form textarea.form-control {
    height: 100px;
    resize: none;
}

.sidebar-submit-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 8px;
    background-color: var(--clr-logo-red);
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-base);
}

.sidebar-submit-btn:hover {
    background-color: #5c061e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(121, 27, 52, 0.2);
}

/* Offer layout styles */
.offer-box {
    margin-top: 30px;
}

.offer-item-card {
    background-color: #ffffff;
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.offer-item-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-logo-red), var(--clr-brand-green));
    opacity: 0;
    transition: all 0.3s ease;
}

.offer-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(121, 27, 52, 0.12);
}

.offer-item-card:hover::before {
    opacity: 1;
}

.offer-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background-color: var(--clr-brand-green-light);
    color: var(--clr-brand-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 147, 47, 0.08);
}

.offer-item-card:hover .offer-icon-wrapper {
    background-color: var(--clr-logo-red);
    color: #ffffff;
    border-color: var(--clr-logo-red);
    transform: scale(1.05);
}

.offer-title {
    font-family: 'Outfit', sans-serif;
    font-size: var(--fs-h4);
    margin-bottom: 12px;
    color: var(--clr-dark-headings);
}

.offer-desc {
    font-family: 'Inter', sans-serif;
    font-size: var(--fs-body);
    font-weight: 400;
    color: var(--clr-dark) !important;
    line-height: 1.7;
}

.offer-sublist {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

.offer-sublist-item {
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: var(--fs-sm);
    font-weight: 400;
    line-height: 1.6;
    color: var(--clr-dark) !important;
}

.offer-sublist-item:last-child {
    margin-bottom: 0;
}

.offer-sublist-item::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--clr-brand-green);
    font-size: 15px;
    transition: all 0.3s ease;
}

.offer-item-card:hover .offer-sublist-item::before {
    color: var(--clr-logo-red);
}

.offer-sublist-item strong {
    color: var(--clr-dark-headings);
}

/* Modern Testimonial Card Styling */
.testimonial-card-modern {
    background: #ffffff;
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px -10px rgba(74, 13, 30, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, #ffffff 0%, #fff8f9 100%);
    box-shadow: 0 25px 50px -15px rgba(74, 13, 30, 0.15);
    border-color: rgba(121, 27, 52, 0.2);
}

.testimonial-quote-icon {
    font-size: 72px;
    color: var(--clr-logo-red);
    opacity: 0.04;
    position: absolute;
    bottom: 20px;
    right: 25px;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card-modern:hover .testimonial-quote-icon {
    transform: scale(1.2) rotate(-8deg);
    opacity: 0.09;
}

.testimonial-stars {
    color: var(--clr-brand-yellow);
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
    transition: all 0.3s ease;
}

.testimonial-stars i {
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover .testimonial-stars i {
    transform: scale(1.15);
    color: #ffb300;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: var(--fs-body);
    font-weight: 400;
    color: #333333 !important;
    margin-bottom: 30px;
    flex-grow: 1;
    font-style: italic;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    z-index: 2;
    transition: all 0.3s ease;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-brand-green-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card-modern:hover .testimonial-avatar {
    border-color: var(--clr-logo-red);
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(121, 27, 52, 0.15);
}

.testimonial-client-name {
    font-family: 'Outfit', sans-serif;
    font-size: 16.5px;
    font-weight: 600;
    color: var(--clr-dark-headings);
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover .testimonial-client-name {
    color: var(--clr-logo-red);
}

.testimonial-client-role {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--clr-brand-green-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.testimonial-client-role::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--clr-brand-green);
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover .testimonial-client-role::before {
    background-color: var(--clr-logo-red);
}

/*====================================================
TEAM INTRO SECTION
====================================================*/

.team-intro-section{
    position:relative;
    overflow:hidden;

    background-image: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.4) 15%, rgba(255, 255, 255, 0.63) 45%, #ffffff 100%), url(../images/background-section.png) !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-intro-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("../images/section-bg.webp") center center/cover no-repeat;
    opacity:.08;
    pointer-events:none;
}

.section-subtitle{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--clr-logo-red);
}

.section-title{
    font-size:48px;
    font-weight:700;
    line-height:1.2;
    color:#121212;
}

.section-description{
    max-width:760px;
    margin:auto;
    font-size:17px;
    line-height:1.9;
    color:#666;
}


/*=================================
LEFT IMAGE
=================================*/

.team-image-wrapper{

    position:relative;
    overflow:hidden;
    border-radius:24px;
   

    box-shadow:
    0 18px 45px rgba(0,0,0,.12);
    border-right: 4px solid var(--clr-brand-green);
     border-bottom: 4px solid var(--clr-brand-green);

}

.team-image-wrapper img{

    width:98%;
    border-radius:20px;
    transition:.6s;
    
    

}

.team-image-wrapper:hover img{

    transform:scale(1.05);

}


/*=================================
FLOATING CARD
=================================*/

.team-floating-box{

    position:absolute;

    left:25px;
    top:25px;

    z-index:5;

    display:flex;
    align-items:center;
    gap:18px;

    padding:18px 24px;

    background:linear-gradient(135deg,#7c1634,#992348);

    border-radius:18px;

    color:#fff;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.floating-icon{

    width:60px;
    height:60px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    font-size:28px;

}

.team-floating-box h3{

    margin:0;
    font-size:38px;
    font-weight:700;
    line-height:1;

}

.team-floating-box span{

    display:block;
    margin-top:6px;
    font-size:15px;
    font-weight:500;

}


/*=================================
RIGHT CONTENT
=================================*/

.mini-title{

    color:var(--clr-logo-red);

    text-transform:uppercase;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}

.content-title{

    font-size:42px;

    margin:15px 0 25px;

    font-weight:700;

    line-height:1.3;

}

.content-title span{

    color:var(--clr-logo-red);

}

.ps-lg-4 p{

    color:#666;

    line-height:2;

    font-size:16px;

}


/*=================================
FEATURES
=================================*/

.team-feature{

    background:#fff;

    padding:25px;

    border-radius:18px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    height:100%;

}

.team-feature:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.feature-icon{

    width:50px;
    height:50px;

    margin:auto auto 18px;

    border-radius:50%;

    background:#f8f0f3;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--clr-brand-green);

    font-size:24px;

    transition:.4s;

}

.team-feature:hover .feature-icon{

    background:var(--clr-logo-red);

    color:#fff;

    transform:rotateY(180deg);

}

.team-feature h6{

    font-size:13px;

    line-height:1.6;

    margin:0;

    font-weight:600;

}

/*====================================================
CORE SERVICES
====================================================*/

.team-services-section{

    padding-top:30px;
    padding-bottom:120px;

}

.service-card{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:.45s;

    border:1px solid #f1f1f1;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:var(--clr-logo-red);

    transform:scaleX(0);

    transition:.45s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.service-icon{

    width:85px;
    height:85px;

    margin:auto auto 25px;

    border-radius:50%;

    background:#f8f1f3;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    color:var(--clr-logo-red);

    transition:.45s;

}

.service-card:hover .service-icon{

    background:var(--clr-logo-red);

    color:#fff;

    transform:rotateY(180deg);

}

.service-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:18px;

    color:#222;

}

.service-card p{

    color:#666;

    line-height:1.9;

    margin:0;

}


/*====================================================
STATS SECTION
====================================================*/

.stats-wrapper{

    margin-top:80px;

    border-radius:22px;

    overflow:hidden;

    background:linear-gradient(135deg,#7d1735,#a3284d);

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.stat-box{

    display:flex;

    align-items:center;

    gap:20px;

    padding:25px 35px;

    border-right:1px solid rgba(255,255,255,.15);

    color:#fff;

    transition:.35s;

}

.stat-box:hover{

    background:rgba(255,255,255,.06);

}

.stat-box i{

    width:72px;
    height:72px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

}

.stat-box h2{

    margin:0;

    font-size:42px;

    font-weight:700;

    color:#fff;

}

.stat-box p{

    margin-top:8px;

    margin-bottom:0;

    color:#f8f8f8 !important;

    font-size:16px;

}


/*====================================================
ANIMATIONS
====================================================*/

.service-card,
.team-feature,
.team-image-wrapper,
.stat-box{

    transition:all .45s ease;

}

.team-image-wrapper:hover{

    transform:translateY(-8px);

}

.team-image-wrapper::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
    180deg,
    transparent,
    rgba(0,0,0,.12));

    opacity:0;

    transition:.45s;

}

.team-image-wrapper:hover::after{

    opacity:1;

}


/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:1199px){

.section-title{

font-size:40px;

}

.content-title{

font-size:36px;

}

}


@media(max-width:991px){

.section-title{

font-size:34px;

}

.content-title{

font-size:30px;

}

.team-image-wrapper{

margin-bottom:50px;

}

.team-floating-box{

left:20px;
top:20px;

padding:15px 20px;

}

.stat-box{

border-right:none;

border-bottom:1px solid rgba(255,255,255,.12);

}

}


@media(max-width:767px){

.section-title{

font-size:28px;

}

.content-title{

font-size:26px;

}

.section-description{

font-size:15px;

}

.team-floating-box{

position:relative;

left:0;
top:0;

margin-bottom:20px;

display:inline-flex;

}

.team-feature{

padding:22px;

}

.service-card{

padding:30px 22px;

}

.stat-box{

padding:28px 20px;

gap:15px;

}

.stat-box h2{

font-size:32px;

}

.stat-box i{

width:60px;
height:60px;
font-size:24px;

}

}


@media(max-width:575px){

.team-floating-box{

width:100%;

justify-content:center;

}

.service-icon{

width:75px;
height:75px;
font-size:28px;

}

.feature-icon{

width:60px;
height:60px;
font-size:24px;

}

}

.experience-card{

position:absolute;

bottom:10px;
right:30px;

background: rgba(255, 255, 255, 0.911); 

padding:10px 10px;

border-radius:18px;
border:2px solid var(--clr-brand-green);

box-shadow:0 15px 40px rgba(0,0,0,.15);

text-align:center;

z-index:10;

}

.experience-card h2{

margin:0;

font-size:32px;

font-weight:700;

color:var(--clr-logo-red);

}

.experience-card span{

display:block;

margin-top:6px;

font-size:13px;

font-weight:600;

color: var(--clr-brand-green);

}

@media(max-width:767px){

.experience-card{

position:relative;

right:0;
bottom:0;

margin-top:20px;

display:inline-block;

}

}



/* About Collage & Stats Styling */
.about-collage-wrapper {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
    max-width: 520px;
    margin: 0 auto;
}

.about-collage-main {
    width: 85%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 3px solid #00932f;;
    z-index: 2;
    position: relative;
    display: block;
}

.about-collage-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 3px solid #fff;;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.about-collage-wrapper:hover .about-collage-secondary {
    transform: translate(-8px, -8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.about-stat-box {
    padding: 20px 15px;
    background-color: var(--clr-logo-red);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.about-stat-box h3 {
    color: #ffffff !important;
    font-size: 26px;
    transition: all 0.4s ease;
}

.about-stat-box p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px;
    transition: all 0.4s ease;
}

.about-stat-box:hover {
    background-color: #00932f;
    box-shadow: 0 10px 20px rgba(0, 147, 47, 0.15);
    transform: translateY(-4px);
}

.about-introduction {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.5) 15%, rgba(255, 255, 255, 0.5) 85%, #ffffff 100%), url('../images/background-section.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Rebuilt Team Page Styling */
.leader-featured-box {
    background: #ffffff;
    border: 1px solid var(--clr-border);
    border-radius: 24px;
    padding: 45px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.leader-featured-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(121, 27, 52, 0.15);
}

.leader-quote {
    font-size: 16.5px;
    font-style: italic;
    color: var(--clr-muted);
    line-height: 1.8;
    position: relative;
    padding-left: 25px;
    border-left: 4px solid var(--clr-logo-red);
}

.dept-card {
    background: #ffffff;
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.dept-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(121, 27, 52, 0.15);
}

.dept-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.team-section {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.5) 15%, rgba(255, 255, 255, 0.5) 85%, #ffffff 100%), url('../images/background-section.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}








