/********** Template CSS **********/
:root {
    --primary: #0b6623;
    --secondary: #F57E57;
    --light: #EEF9FF;
    --dark: #091E3E;
    --light-shadow: rgba(0, 0, 0, 0);

    --bg: #f7fbff;
    --text: #0b1220;
    --muted: rgba(11, 18, 32, 0.72);
    --surface: rgba(255, 255, 255, 0.62);
    --surface-strong: rgba(255, 255, 255, 0.78);
    --border: rgba(16, 24, 40, 0.14);
    --shadow: 0 18px 60px rgba(2, 10, 30, 0.18);
    --blur: 14px;
}

html[data-theme="dark"] {
    --bg: #070b13;
    --text: #eaf1ff;
    --muted: rgba(234, 241, 255, 0.72);
    --surface: rgba(10, 16, 28, 0.58);
    --surface-strong: rgba(10, 16, 28, 0.72);
    --border: rgba(255, 255, 255, 0.16);
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

body {
    color: var(--text);
    background: radial-gradient(1200px 600px at 10% 0%, rgba(253, 106, 2, 0.22), transparent 60%),
        radial-gradient(900px 520px at 90% 20%, rgba(11, 102, 35, 0.22), transparent 55%),
        radial-gradient(1000px 700px at 50% 110%, rgba(6, 163, 218, 0.16), transparent 55%),
        var(--bg);
}

.text-dark {
    color: var(--text) !important;
}

.text-body {
    color: var(--muted) !important;
}

.glass,
.banner-home-text,
.project-section .card,
.service-section .card,
.awards-section .award-item .card,
.testimonial-carousel {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
}

.contact-section .contact-form {
    /* background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow); */
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
}

.navbar {
    background: var(--surface-strong);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.navbar .navbar-brand h1 {
    margin: 0;
    line-height: 1;
}

.navbar.bg-white,
.bg-white {
    background: var(--surface-strong) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #fd6a02 !important;
}

.btn.btn-dark {
    background-color: rgba(0, 22, 56, 0.92);
    border-color: rgba(0, 22, 56, 0.92);
}

html[data-theme="dark"] .btn.btn-dark {
    background-color: rgba(0, 22, 56, 0.78);
    border-color: rgba(255, 255, 255, 0.16);
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.text-primary {
    color: #ffcc33 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: #0b6623;
    transform: skew(40deg);
}

.navbar .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    outline: none;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--primary);
    background: rgba(11, 102, 35, 0.08);
}

.navbar .navbar-nav .nav-link.active {
    color: #fd6a02;
    font-weight: 600;
}

.img-logo {
    height: 48px;
    width: auto;
    min-width: 140px;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transform: scale(1.4);
    transform-origin: left center;
}

.top-left-nav {
    color: #FFFFFF;
    font-weight: 300;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 5px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #fd6a02 !important;
}

.bg-light {
    background-color: #fd6a02 !important;
}

.bg-primary {
    background-color: #0b6623 !important;
}

.btn-navbar {
    color: #fff;
    background-color: #0b6623;
    border-color: #0b6623;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-navbar:hover {
    color: #fff;
    background-color: #fd6a02;
    border-color: #fd6a02;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 106, 2, 0.35);
}

#themeToggle {
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--surface);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

#themeToggle:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .img-logo {
        height: 60px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border);
    }

    .navbar .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-collapse {
        background: var(--surface-strong);
        border-radius: 8px;
        margin-top: 0.5rem;
        padding: 0.5rem;
        border: 1px solid var(--border);
    }

    .btn-navbar,
    #themeToggle {
        margin-top: 0.5rem;
        margin-left: 0 !important;
    }
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('../images/1.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 11, 19, 0.95) 0%,
        rgba(11, 102, 35, 0.85) 50%,
        rgba(253, 106, 2, 0.7) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(253, 106, 2, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(11, 102, 35, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
    animation: particleMove 20s ease-in-out infinite;
}

@keyframes particleMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(10px) translateY(-10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.min-vh-75 {
    min-height: 100%;
}

.hero-text-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(253, 106, 2, 0.15);
    border: 1px solid rgba(253, 106, 2, 0.3);
    color: #fd6a02;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.text-gradient {
    background: linear-gradient(135deg, #fd6a02, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #0b6623, #0d7a2b);
    color: #fff;
    padding: 1rem 1.75rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 102, 35, 0.3);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #fd6a02, #ff8534);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 106, 2, 0.4);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1rem 1.75rem;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: #fff;
    color: #0b6623;
    border-color: #fff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    padding-right: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat:last-child {
    border-right: none;
    padding-right: 0;
}

.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fd6a02;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Image Section */
.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(253, 106, 2, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-size: 0.85rem;
    font-weight: 600;
    color: #070b13;
}

.hero-floating-card i {
    font-size: 1.1rem;
}

.hero-floating-card-1 {
    top: 10%;
    left: -10%;
    animation: floatCard1 5s ease-in-out infinite;
}

.hero-floating-card-1 i {
    color: #fd6a02;
}

.hero-floating-card-2 {
    bottom: 15%;
    right: -5%;
    animation: floatCard2 5s ease-in-out infinite 0.5s;
}

.hero-floating-card-2 i {
    color: #0b6623;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-8px) rotate(-2deg); }
}

/* Hero Responsive Styles */
@media (max-width: 991px) {
    .hero-banner {
        min-height: 500px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat {
        padding-right: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-stat {
        padding-right: 1rem;
    }

    .hero-stat-number {
        font-size: 1.25rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }
}

/* About Section */
.about-section {
    background: var(--bg);
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
}

.about-content {
    padding: 1rem 0;
}

.about-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fd6a02;
    margin-bottom: 0.5rem;
}

.about-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.about-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text);
}

.about-features li i {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-features li span {
    line-height: 1.5;
}

.btn-about {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background-color: #fd6a02;
    border-color: #fd6a02;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(253, 106, 2, 0.35);
}

@media (max-width: 991px) {
    .about-image-wrapper {
        margin-bottom: 2rem;
    }

    .about-image-accent {
        bottom: -10px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .about-features li {
        font-size: 0.9rem;
    }
}

/* Core Capabilities Section */
.core-capabilities-section {
    background: var(--bg);
}

.capability-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #fd6a02);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.capability-card:hover::before {
    opacity: 1;
}

.capability-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.capability-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(11, 102, 35, 0.1), rgba(253, 106, 2, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.capability-card:hover .capability-icon {
    background: linear-gradient(135deg, var(--primary), #fd6a02);
    transform: scale(1.1);
}

.capability-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.capability-card:hover .capability-icon i {
    color: #fff;
}

.capability-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

.capability-description {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .capability-card {
        padding: 1.25rem;
    }

    .capability-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .capability-icon i {
        font-size: 1.25rem;
    }

    .capability-title {
        font-size: 0.95rem;
    }

    .capability-description {
        font-size: 0.85rem;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .85);
    z-index: 1;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.my-5-top {
    /* margin-top: 3rem !important; */
    margin-bottom: 3rem !important;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}


@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}


.hero-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../images/1.png) center center no-repeat;
    background-size: cover;
}

/* Services Section */
.services-section {
    background: var(--surface);
}

.section-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fd6a02;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.service-card {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.service-card-horizontal {
    flex-direction: row;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card-horizontal .service-img-wrapper {
    width: 220px;
    min-width: 220px;
    height: 220px;
    min-height: 220px;
    flex-shrink: 0;
}

.service-card-horizontal .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-card-horizontal .service-content {
    padding: 1.5rem;
    justify-content: center;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    padding: 0;
    background: none;
    border: none;
    transition: all 0.3s ease;
}

.btn-service:hover {
    color: #fd6a02;
    gap: 0.75rem;
}

.btn-service i {
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .service-card-horizontal {
        flex-direction: column;
    }

    .service-card-horizontal .service-img-wrapper {
        width: 100%;
        min-width: 100%;
        height: 200px;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .service-img-wrapper {
        height: 180px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.85rem;
    }
}

/* Subscription Section */
.subscription-section {
    background: var(--surface);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.subscription-card {
    background: var(--bg);
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.subscription-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.subscription-card-featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(11, 102, 35, 0.03) 0%, var(--bg) 100%);
}

.subscription-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary), #fd6a02);
    color: #fff;
    padding: 0.2rem 0.75rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscription-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.subscription-header-text {
    flex: 1;
}

.subscription-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(11, 102, 35, 0.1), rgba(253, 106, 2, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.subscription-card:hover .subscription-icon {
    background: linear-gradient(135deg, var(--primary), #fd6a02);
}

.subscription-icon i {
    font-size: 1.25rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.subscription-card:hover .subscription-icon i {
    color: #fff;
}

.subscription-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

.subscription-tagline {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0.125rem 0 0 0;
}

.subscription-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.subscription-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.8rem;
    color: var(--text);
}

.subscription-features li i {
    color: var(--primary);
    font-size: 0.75rem;
}

.btn-subscription {
    display: block;
    width: 100%;
    padding: 0.625rem 1rem;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-subscription:hover {
    background: var(--primary);
    color: #fff;
}

.btn-subscription-featured {
    background: var(--primary);
    color: #fff;
}

.btn-subscription-featured:hover {
    background: #fd6a02;
    border-color: #fd6a02;
}

@media (max-width: 768px) {
    .subscription-card {
        padding: 1rem;
    }

    .subscription-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .subscription-title {
        font-size: 0.95rem;
    }
}

/* Awards Section */
.awards-section {
    background: var(--bg);
}

.award-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.award-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.award-card:hover .award-img {
    transform: scale(1.1);
}

/* Award Modal Styles */
.award-modal-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.award-modal-content .modal-header {
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
}

.award-modal-content .modal-title {
    font-weight: 700;
    color: var(--text);
}

.award-modal-content .modal-body {
    padding: 1.5rem;
}

.award-modal-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-modal-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.award-modal-year,
.award-modal-org {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.award-modal-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 1rem;
}

@media (max-width: 576px) {
    .award-card {
        height: 120px;
        padding: 0.75rem;
    }

    .award-img {
        max-height: 100px;
    }
}

/* Latest Project Section */
.project-map-card {
    border-radius: 16px;
    padding: 1rem;
    min-height: 400px;
    transition: all 0.3s ease;
}

.project-map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-content-card {
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.project-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #0d8030 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(11, 102, 35, 0.3);
}

.project-badge i {
    font-size: 1rem;
}

.project-content-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.project-description {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .project-content-card {
        padding: 1.5rem;
    }

    .project-content-title {
        font-size: 1.5rem;
    }

    .project-map-card {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .project-content-card {
        padding: 1.25rem;
    }

    .project-content-title {
        font-size: 1.25rem;
    }

    .project-map-card {
        min-height: 300px;
    }
}

/* Partners Section */
.partners-section {
    background: var(--surface);
}

.partner-logo-wrapper {
    background: var(--bg);
    border-radius: 12px;
    padding: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo-wrapper:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.partner-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.partner-logo-wrapper:hover .partner-name {
    transform: translateY(0);
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo-wrapper:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .partner-logo-wrapper {
        height: 100px;
        padding: 1rem;
    }

    .partner-logo {
        max-height: 60px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: var(--surface);
}

.testimonial-intro {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin-top: 0.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-carousel-container {
    flex: 1;
    max-width: 700px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.testimonial-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.testimonial-slide {
    background: var(--bg);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    opacity: 0.1;
}

.testimonial-quote-icon i {
    font-size: 4rem;
    color: var(--primary);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar-wrapper {
    position: relative;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.25rem 0;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.testimonial-company {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0.25rem 0 0 0;
}

.testimonial-indicators {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 0 0;
}

.testimonial-indicators button {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    border: none;
    margin: 0 3px;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-indicators button.active {
    background: var(--primary);
    width: 40px;
}

#testimonialCarousel .carousel-item {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

@media (max-width: 768px) {
    .testimonial-wrapper {
        gap: 0.75rem;
    }

    .testimonial-nav-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.85rem;
    }

    .testimonial-slide {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
}

/* Footer Section */
.footer-section {
    background: #0a1628;
    color: #fff;
}

.footer-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fd6a02;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fd6a02;
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-copyright {
        text-align: center;
    }
}

/* Page Banner Section */
.page-banner {
    position: relative;
    padding: 1.5rem 0;
    background: url('../images/1.png') center center / cover no-repeat;
    overflow: hidden;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 11, 19, 0.92) 0%,
        rgba(11, 102, 35, 0.8) 50%,
        rgba(253, 106, 2, 0.7) 100%
    );
    z-index: 1;
}

.page-banner-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fd6a02;
    margin-bottom: 0.25rem;
}

.page-banner-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.page-banner-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-banner {
        padding: 1.25rem 0;
    }

    .page-banner-title {
        font-size: 1.25rem;
    }

    .page-banner-subtitle {
        font-size: 0.85rem;
    }
}

/* Contact Section */
.contact-section {
    background: var(--bg);
}

.contact-info-wrapper {
    height: 100%;
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-info-description {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.contact-info-details h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.contact-info-details p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.contact-info-details p:last-child {
    margin-bottom: 0;
}

.contact-social h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--surface);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #fd6a02 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(11, 102, 35, 0.3);
}

.form-header-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* Floating Label Input Groups */
.form-floating-group {
    position: relative;
    margin-bottom: 0.5rem;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 1.1rem;
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: none;
}

.textarea-wrapper .input-icon {
    top: 1.25rem;
    transform: none;
}

.form-control-icon {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    color: var(--text);
    transition: all 0.3s ease;
    width: 100%;
}

.form-select.form-control-icon {
    padding-right: 2.5rem;
}

.floating-label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--muted);
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 0.25rem;
}

.textarea-wrapper .floating-label {
    top: 1.25rem;
    transform: none;
}

.form-control-icon:focus,
.form-select.form-control-icon:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 102, 35, 0.1);
    outline: none;
}

.input-icon-wrapper.focused .input-icon,
.form-control-icon:focus ~ .input-icon {
    color: var(--primary);
}

.form-control-icon:focus + .floating-label,
.form-control-icon:not(:placeholder-shown) + .floating-label,
.form-control-icon.has-value + .floating-label,
.form-select.form-control-icon:focus + .floating-label,
.form-select.form-control-icon:not([value=""]) + .floating-label {
    top: 0;
    left: 2.5rem;
    font-size: 0.75rem;
    color: var(--primary);
    background: var(--bg);
    padding: 0 0.5rem;
    transform: translateY(-50%);
}

.textarea-wrapper .form-control-icon:focus + .floating-label,
.textarea-wrapper .form-control-icon:not(:placeholder-shown) + .floating-label {
    top: -0.5rem;
    transform: none;
}

.form-control-icon::placeholder {
    color: transparent;
}

.form-control-icon:focus::placeholder {
    color: var(--muted);
    opacity: 0.5;
}

textarea.form-control-icon {
    resize: vertical;
    min-height: 140px;
    padding-top: 1.25rem;
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

.char-counter.text-danger {
    color: #dc3545 !important;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-checkbox:hover {
    border-color: var(--primary);
}

.custom-checkbox .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    background-color: var(--bg);
    cursor: pointer;
    margin-top: 0;
    flex-shrink: 0;
}

.custom-checkbox .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.custom-checkbox .form-check-label {
    font-size: 0.9rem;
    color: var(--muted);
    cursor: pointer;
    line-height: 1.5;
}

/* Submit Button */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #0a5a1f 100%);
    border: none;
    color: #fff;
    transition: all 0.4s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fd6a02 0%, #e55a00 100%);
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-submit:hover::before {
    left: 0;
}

.btn-submit .btn-text,
.btn-submit .btn-loading,
.btn-submit .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(253, 106, 2, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}

.btn-submit .btn-icon {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px) rotate(-20deg);
}

.btn-submit .btn-loading {
    align-items: center;
}

/* Form Footer */
.form-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.secure-badge i {
    color: var(--primary);
    font-size: 1rem;
}

/* Form Validation Styles */
.was-validated .form-control-icon:invalid,
.form-control-icon.is-invalid {
    border-color: #dc3545;
}

.was-validated .form-control-icon:invalid:focus,
.form-control-icon.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.was-validated .form-control-icon:valid,
.form-control-icon.is-valid {
    border-color: var(--primary);
}

.invalid-feedback {
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .form-header-icon {
        width: 60px;
        height: 60px;
    }

    .form-header-icon i {
        font-size: 1.5rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }

    .form-control-icon {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.95rem;
    }

    .input-icon {
        left: 0.875rem;
        font-size: 1rem;
    }

    .floating-label {
        left: 2.75rem;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .contact-info-card {
        padding: 1rem;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .contact-info-icon i {
        font-size: 1.1rem;
    }
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
    pointer-events: none;
}

.custom-toast {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 350px;
    max-width: 450px;
    padding: 1.25rem 1.5rem;
    background: var(--bg);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.custom-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-icon i {
    font-size: 1.5rem;
}

.toast-success .toast-icon {
    background: rgba(11, 102, 35, 0.15);
}

.toast-success .toast-icon i {
    color: var(--primary);
}

.toast-error .toast-icon {
    background: rgba(220, 53, 69, 0.15);
}

.toast-error .toast-icon i {
    color: #dc3545;
}

.toast-warning .toast-icon {
    background: rgba(255, 193, 7, 0.15);
}

.toast-warning .toast-icon i {
    color: #ffc107;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.25rem 0;
}

.toast-message {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.toast-close {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: var(--surface);
    color: var(--text);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--primary);
    animation: toastProgress 5s linear forwards;
}

.toast-success .toast-progress {
    background: var(--primary);
}

.toast-error .toast-progress {
    background: #dc3545;
}

.toast-warning .toast-progress {
    background: #ffc107;
}

@keyframes toastProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

@media (max-width: 576px) {
    .toast-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .custom-toast {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
}

/* Map Section */
.map-section {
    background: var(--surface);
}

.map-header {
    background: var(--bg);
}

.map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%);
}

/* Values Section */
.values-section {
    background: var(--bg);
}

.value-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #fd6a02);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.value-card:hover::after {
    opacity: 1;
}

.value-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.75rem;
}

.value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(11, 102, 35, 0.12), rgba(253, 106, 2, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary), #fd6a02);
}

.value-icon i {
    font-size: 1.25rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.value-card:hover .value-icon i {
    color: #fff;
}

.value-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.value-description {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .value-card {
        padding: 1rem;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .value-icon i {
        font-size: 1.1rem;
    }

    .value-title {
        font-size: 1rem;
    }

    .value-description {
        font-size: 0.85rem;
    }
}

/* Mission & Vision Section */
.mission-vision-section {
    background: var(--surface);
}

.mission-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.mission-card-primary::before {
    background: linear-gradient(135deg, rgba(11, 102, 35, 0.08) 0%, rgba(253, 106, 2, 0.05) 100%);
}

.mission-card-secondary::before {
    background: linear-gradient(135deg, rgba(253, 106, 2, 0.08) 0%, rgba(11, 102, 35, 0.05) 100%);
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.mission-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.mission-header-text {
    flex: 1;
}

.mission-badge {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.mission-card-primary .mission-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #0d7a2b 100%);
    box-shadow: 0 8px 24px rgba(11, 102, 35, 0.3);
}

.mission-card-secondary .mission-badge {
    background: linear-gradient(135deg, #fd6a02 0%, #e55d00 100%);
    box-shadow: 0 8px 24px rgba(253, 106, 2, 0.3);
}

.mission-card:hover .mission-badge {
    transform: scale(1.1);
}

.mission-badge i {
    font-size: 1.75rem;
    color: #fff;
}

.mission-content {
    position: relative;
    z-index: 1;
}

.mission-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.mission-card-primary .mission-label {
    color: var(--primary);
}

.mission-card-secondary .mission-label {
    color: #fd6a02;
}

.mission-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

.mission-description {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 1.5rem 0;
}

.mission-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.mission-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text);
    font-weight: 500;
}

.mission-card-primary .mission-highlights li i {
    color: var(--primary);
}

.mission-card-secondary .mission-highlights li i {
    color: #fd6a02;
}

@media (max-width: 991px) {
    .mission-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .mission-card {
        padding: 1.5rem 1.25rem;
    }

    .mission-badge {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .mission-badge i {
        font-size: 1.25rem;
    }

    .mission-title {
        font-size: 1.1rem;
    }

    .mission-description {
        font-size: 0.9rem;
    }

    .mission-highlights {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Team Section */
.team-section {
    background: var(--surface);
}

.team-card {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.team-img-wrapper {
    position: relative;
    width: 100px;
    min-width: 100px;
    height: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(11, 102, 35, 0.1) 0%, rgba(253, 106, 2, 0.1) 100%);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
    display: block;
}

.team-card:hover .team-img {
    transform: scale(1.08);
}

.team-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img-placeholder i {
    font-size: 2.5rem;
    color: #fff;
}

.team-info {
    padding: 0.875rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.team-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-role {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-social {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.team-social-link {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(11, 102, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.team-social-link:hover {
    background: var(--primary);
    color: #fff;
}

.btn-team-profile {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #fd6a02);
    border: none;
    color: #fff;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.btn-team-profile:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(11, 102, 35, 0.3);
}

@media (max-width: 576px) {
    .team-img-wrapper {
        width: 80px;
        min-width: 80px;
        height: 80px;
    }

    .team-info {
        padding: 0.75rem;
    }

    .team-name {
        font-size: 0.9rem;
    }

    .team-social-link,
    .btn-team-profile {
        width: 26px;
        height: 26px;
    }
}

/* Team Modal Styles */
.team-modal-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.team-modal-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.team-modal-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.team-modal-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.team-modal-role {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-modal-bio {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Solutions Page Styles */
.solutions-overview {
    background: var(--bg);
}

.solution-detail {
    padding: 2rem 0;
}

.solution-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.solution-img-wrapper:hover img {
    transform: scale(1.05);
}

.solution-content {
    padding: 1rem 0;
}

.solution-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.solution-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.solution-description {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text);
}

.solution-features li i {
    color: var(--primary);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0a5a1f 50%, #fd6a02 100%);
}

.cta-card {
    padding: 3rem 2rem;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-buttons .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Subscription Form Section */
.subscription-form-section {
    background: var(--bg);
}

.subscription-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--muted);
    margin-bottom: 0;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.form-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.form-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.form-section-title i {
    color: var(--primary);
}

.subscription-form-card .form-control,
.subscription-form-card .form-select {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.subscription-form-card .form-control:focus,
.subscription-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 102, 35, 0.15);
}

.subscription-form-card .form-label {
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}

/* Plan Options */
.plan-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.plan-option {
    flex: 1;
    min-width: 150px;
}

.plan-option-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.plan-option-label:hover {
    border-color: var(--primary);
    background: rgba(11, 102, 35, 0.05);
}

.btn-check:checked + .plan-option-label {
    border-color: var(--primary);
    background: rgba(11, 102, 35, 0.1);
}

.plan-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #fd6a02);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.plan-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.plan-price {
    font-size: 0.8rem;
    color: var(--muted);
}

.plan-check {
    color: var(--primary);
    font-size: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-check:checked + .plan-option-label .plan-check {
    opacity: 1;
}

/* Additional Services */
.additional-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.additional-services .form-check {
    background: var(--bg);
    padding: 0.75rem 1rem;
    padding-left: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin: 0;
    transition: all 0.3s ease;
}

.additional-services .form-check:hover {
    border-color: var(--primary);
}

.additional-services .form-check-input:checked ~ .form-check-label {
    color: var(--primary);
}

/* Data Interest Options */
.data-interest-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.data-interest-options .data-option {
    background: var(--bg);
    padding: 1rem 1.25rem;
    padding-left: 3rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    margin: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.data-interest-options .data-option:hover {
    border-color: var(--primary);
    background: rgba(11, 102, 35, 0.05);
}

.data-interest-options .form-check-input:checked ~ .form-check-label {
    color: var(--primary);
}

.data-interest-options .form-check-input:checked + .form-check-label strong {
    color: var(--primary);
}

.data-interest-options .data-option:has(.form-check-input:checked) {
    border-color: var(--primary);
    background: rgba(11, 102, 35, 0.1);
}

/* JSON Preview Card */
.json-preview-card {
    background: #1e2432;
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.json-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #161b26;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.json-preview-header h5 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.json-preview-header .btn {
    padding: 0.25rem 0.5rem;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.json-preview-header .btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.json-preview-body {
    padding: 1rem;
    max-height: 450px;
    overflow-y: auto;
}

.json-preview-body pre {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
}

.json-preview-body code {
    color: #a5d6ff;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.json-preview-footer {
    padding: 0.75rem 1.25rem;
    background: #161b26;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.json-preview-footer small {
    color: rgba(255, 255, 255, 0.5);
}

/* Form Preview Card - Modern UI */
.preview-card {
    background: linear-gradient(165deg, #1e2538 0%, #121620 50%, #0a0d12 100%);
    border-radius: 20px;
    overflow: hidden;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.preview-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(11, 102, 35, 0.12) 0%, rgba(253, 106, 2, 0.08) 50%, rgba(6, 163, 218, 0.06) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
}

.preview-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.preview-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.preview-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #15803d 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    box-shadow: 
        0 8px 20px rgba(11, 102, 35, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
}

.preview-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.preview-card-header h5 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
}

.preview-subtitle {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    margin: 0.25rem 0 0 0;
}

/* Completion Badge */
.completion-badge {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.375rem 0.875rem;
    transition: all 0.3s ease;
}

.completion-badge.complete {
    background: rgba(74, 222, 128, 0.15);
    border-color: rgba(74, 222, 128, 0.3);
}

.completion-percent {
    color: #4ade80;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Header Progress Bar */
.header-progress-wrapper {
    height: 5px;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.header-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary) 0%, #22c55e 40%, #4ade80 100%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.5);
    border-radius: 0 3px 3px 0;
}

.header-progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
}

.header-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    animation: progressShimmer 1.5s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-80px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(80px); opacity: 0; }
}

.preview-card-body {
    padding: 1.25rem 1.5rem;
    max-height: 380px;
    overflow-y: auto;
}

.preview-card-body::-webkit-scrollbar {
    width: 4px;
}

.preview-card-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.preview-card-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.preview-section {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.preview-section:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.preview-section:last-child {
    margin-bottom: 0;
}

.preview-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-section-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-section-header h6 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.section-status {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.section-status.complete {
    color: #4ade80;
    animation: checkPop 0.3s ease;
}

@keyframes checkPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.preview-items {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.625rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    gap: 0.75rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.preview-item:hover {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.04);
}

.preview-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.preview-value {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    text-align: right;
    word-break: break-word;
    font-weight: 500;
    transition: all 0.25s ease;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.preview-value.empty {
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
    font-weight: 400;
    font-size: 0.75rem;
}

.preview-value.filled {
    color: #93c5fd;
}

.preview-card-footer {
    padding: 1rem 1.5rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-tip {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

.footer-tip i {
    color: #fbbf24;
    font-size: 1rem;
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.4));
}

@media (max-width: 991px) {
    .preview-card {
        position: static;
        margin-top: 2rem;
    }
}

/* API Info Card */
.api-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
}

.api-info-card h6 {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.api-endpoint {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.api-endpoint .method {
    background: var(--primary);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.api-endpoint code {
    color: var(--text);
    font-size: 0.85rem;
}

/* Success Modal */
.subscription-modal-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(11, 102, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.response-preview pre {
    background: #1e2432;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.75rem;
    max-height: 200px;
    overflow-y: auto;
}

.response-preview code {
    color: #a5d6ff;
}

@media (max-width: 991px) {
    .json-preview-card {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .subscription-form-card {
        padding: 1.5rem;
    }

    .plan-options {
        flex-direction: column;
    }

    .plan-option {
        min-width: 100%;
    }

    .additional-services {
        grid-template-columns: 1fr;
    }
}

/* Solutions Vertical Tabs */
.solutions-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: sticky;
    top: 100px;
}

.solution-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solution-tab-btn i {
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.solution-tab-btn span {
    flex: 1;
}

.solution-tab-btn:hover {
    background: var(--surface-strong);
    border-color: var(--primary);
    transform: translateX(4px);
}

.solution-tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, #0d7a2b 100%);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(11, 102, 35, 0.3);
}

.solution-tab-btn.active i {
    color: #fff;
}

.solutions-tab-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    min-height: 450px;
}

.solution-tab-pane {
    display: none;
    animation: fadeInTab 0.4s ease;
}

.solution-tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-tab-pane .solution-img-wrapper img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.solution-tab-pane .solution-img-wrapper:hover img {
    transform: scale(1.02);
}

.solution-tab-pane .solution-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(11, 102, 35, 0.1), rgba(253, 106, 2, 0.1));
    color: var(--primary);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.solution-tab-pane .solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.solution-tab-pane .solution-description {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.solution-tab-pane .solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.solution-tab-pane .solution-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text);
}

.solution-tab-pane .solution-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .solutions-tabs-nav {
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
        margin-bottom: 1.5rem;
    }

    .solution-tab-btn {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: 150px;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .solution-tab-btn i {
        font-size: 1rem;
    }

    .solution-tab-btn:hover {
        transform: translateY(-2px);
    }

    .solutions-tab-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .solution-tab-btn {
        flex: 1 1 100%;
    }

    .solution-tab-btn span {
        display: block;
    }

    .solutions-tab-content {
        padding: 1rem;
    }

    .solution-tab-pane .solution-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   ENHANCED SECTION SPACING & VISUAL HIERARCHY
   ============================================ */

/* Section Spacing Utilities */
.section-spacing {
    padding: 5rem 0;
}

.section-spacing-lg {
    padding: 6rem 0;
}

.section-spacing-sm {
    padding: 3.5rem 0;
}

/* Section Header Improvements */
.section-header {
    margin-bottom: 3.5rem;
}

.section-header .section-eyebrow {
    margin-bottom: 0.75rem;
}

.section-header .section-title {
    margin-bottom: 1rem;
}

.section-header .section-subtitle {
    margin-top: 1rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Dividers */
.section-divider {
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #fd6a02);
    border-radius: 2px;
}

.section-divider-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Alternating Section Backgrounds for Visual Rhythm */
.section-alt {
    background: var(--surface);
}

.section-primary-bg {
    background: var(--bg);
}

/* Card Grid Improvements */
.card-grid {
    gap: 2rem;
}

.card-grid-lg {
    gap: 2.5rem;
}

/* Content Spacing */
.content-block {
    margin-bottom: 2.5rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

/* Improved Row Gaps */
.row-gap-4 {
    row-gap: 2rem !important;
}

.row-gap-5 {
    row-gap: 3rem !important;
}

/* Visual Separators Between Sections */
.section-wave {
    position: relative;
}

.section-wave::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23f7fbff' d='M0,30 C360,60 720,0 1080,30 C1260,45 1350,45 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    pointer-events: none;
}

html[data-theme="dark"] .section-wave::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23070b13' d='M0,30 C360,60 720,0 1080,30 C1260,45 1350,45 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
}

/* Better White Space for Text Content */
.text-content-spaced p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.text-content-spaced p:last-child {
    margin-bottom: 0;
}

/* Feature List Improved Spacing */
.feature-list-spaced li {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.feature-list-spaced li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Responsive Section Spacing */
@media (max-width: 991px) {
    .section-spacing {
        padding: 4rem 0;
    }

    .section-spacing-lg {
        padding: 4.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .card-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 3rem 0;
    }

    .section-spacing-lg {
        padding: 3.5rem 0;
    }

    .section-spacing-sm {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .card-grid,
    .card-grid-lg {
        gap: 1.25rem;
    }

    .content-block {
        margin-bottom: 2rem;
    }
}

/* Smooth Scroll & Animations */
html {
    scroll-behavior: smooth;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 768px) {
    .solution-title {
        font-size: 1.5rem;
    }

    .cta-card {
        padding: 2rem 1rem;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Testimonials Section - Modern Clean Design */
.testimonials-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-section .section-eyebrow {
    color: #dc3545;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonials-section .section-title {
    color: #2c3e50;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.testimonials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #dc3545;
}

.testimonials-section .section-subtitle {
    color: #6c757d;
    font-size: 16px;
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.testimonials-slider {
    position: relative;
    margin-bottom: 60px;
}

.testimonialsSwiper {
    padding: 40px 0;
}

.testimonials-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f8ff 100%);
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.15);
    border-left-color: #dc3545;
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.quote-icon {
    font-size: 48px;
    color: #6c757d;
    margin-bottom: 20px;
    opacity: 0.3;
    display: block;
    text-align: center;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
    font-style: italic;
    text-align: center;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 24px;
    color: #dc3545;
    opacity: 0.6;
}

.rating {
    color: #ffc107;
    font-size: 18px;
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 20px;
}

.rating i {
    transition: all 0.2s ease;
}

.rating i:hover {
    transform: scale(1.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #007bff;
    transition: all 0.3s ease;
}

.author-image:hover {
    transform: scale(1.05);
    border-color: #dc3545;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #dc3545;
    margin: 0 0 5px 0;
    transition: color 0.3s ease;
}

.testimonial-card:hover .author-name {
    color: #007bff;
}

.author-position {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Swiper Customization */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #dee2e6 !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    margin: 0 5px !important;
}

.swiper-pagination-bullet:hover {
    background: #6c757d !important;
    transform: scale(1.1) !important;
}

.swiper-pagination-bullet-active {
    background: #dc3545 !important;
    transform: scale(1.2) !important;
}

/* Navigation Buttons */
.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev {
    color: #dc3545 !important;
    background: white !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    box-shadow: 0 3px 15px rgba(220, 53, 69, 0.3) !important;
    border: 2px solid #dc3545 !important;
    transition: all 0.3s ease !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.testimonials-slider .swiper-button-next:hover,
.testimonials-slider .swiper-button-prev:hover {
    background: #dc3545 !important;
    color: white !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.testimonials-slider .swiper-button-next::after,
.testimonials-slider .swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold !important;
}

.testimonials-slider .swiper-button-next {
    right: -60px !important;
}

.testimonials-slider .swiper-button-prev {
    left: -60px !important;
}

/* Testimonials Statistics */
.testimonials-stats {
    margin-top: 60px;
    padding: 40px 0;
    background: #f8f9fa;
    border-radius: 15px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin: 10px;
    border-top: 3px solid #007bff;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
    border-top-color: #dc3545;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #007bff;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
    color: #dc3545;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
  .testimonial-rating {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
  }
  
  .testimonial-text:before {
    content: '" ';
    font-size: 4rem;
    position: absolute;
    left: -15px;
    top: -15px;
    color: rgba(11, 102, 35, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
  }
  
  .testimonial-card img {
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .testimonial-card:hover img {
    transform: scale(1.05);
  }
  
  .testimonial-card h6 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 2px;
  }
  
  .testimonial-card .text-muted {
    font-size: 0.85rem;
  }
  
  /* Testimonial avatar with initials fallback */
  .testimonial-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .initials-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-avatar:hover .initials-circle {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-avatar:hover .testimonial-img {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Stats Section */
  .testimonials-stats {
    margin-top: 60px;
  }
  
  .testimonials-stats h3 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
  }
  
  .testimonials-stats p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .testimonials-section {
      padding: 60px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 32px;
    }
    
    .testimonial-card {
        margin: 10px;
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .testimonialsSwiper {
        padding: 30px 0;
    }
    
    .testimonials-slider .swiper-button-next,
    .testimonials-slider .swiper-button-prev {
        display: none;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .author-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonials-section .section-title {
        font-size: 28px;
    }
}

