/* ==================== CSS VARIABLES & ROOT ==================== */
:root {
    --color-primary-green: #14044f;
    --color-teal: #06B6D4;
    --color-light-green: #3466d3;
    --color-orange: #F59E0B;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-slate: #64748B;
    --color-slate-dark: #1E293B;
    --color-slate-light: #F1F5F9;

    --font-display: 'Sora', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-mono: 'Space Mono', monospace;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-slate-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== ANNOUNCEMENT BAR ==================== */
.announcement-bar {
    background: linear-gradient(135deg, var(--color-primary-green) 0%, var(--color-teal) 100%);
    color: var(--color-white);
    padding: 12px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 999;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.announcement-icon {
    font-size: 18px;
    animation: bounce 2s infinite;
}

.announcement-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.announcement-link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: var(--color-white);
    padding: 16px 0;
    position: sticky;
    top: 45px;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-left {
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--color-slate-dark);
    font-family: var(--font-display);
}

.logo-icon {
    font-size: 28px;
    color: var(--color-primary-green);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 50px;
    flex: 1;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-slate);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ==================== DESKTOP MEGAMENU ==================== */
.nav-item-dropdown {
    position: relative;
}

.megamenu {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    width: calc(100vw - 80px);
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 40px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    transform-origin: top center;
}

.nav-item-dropdown:hover .megamenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

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

.megamenu-col h4 {
    color: var(--color-slate-dark);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

.megamenu-col ul li {
    margin-bottom: 12px;
}

.megamenu-col ul li a {
    color: var(--color-slate);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.megamenu-col ul li a:hover {
    color: var(--color-primary-green);
    padding-left: 5px;
}

.cta-button {
    background: linear-gradient(135deg, var(--color-primary-green) 0%, var(--color-teal) 100%);
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==================== HAMBURGER ==================== */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-slate-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==================== MOBILE MENU OVERLAY ==================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-white);
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--color-slate-light);
    gap: 20px;
}

.mobile-menu-header .logo {
    font-size: 20px;
}

.close-button {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-slate-dark);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-button:hover {
    color: var(--color-primary-green);
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.mobile-nav-links > li {
    border-bottom: 1px solid var(--color-slate-light);
}

.mobile-nav-links > li > .nav-link {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--color-slate-dark);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.mobile-nav-links > li > .nav-link:hover,
.mobile-nav-links > li > .nav-link.active {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: var(--color-primary-green);
    padding-left: 25px;
}

/* ==================== MOBILE DROPDOWN ==================== */
.mobile-dropdown {
    border-bottom: 1px solid var(--color-slate-light);
}

.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-slate-dark);
    transition: var(--transition);
}

.mobile-dropdown-header:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: var(--color-primary-green);
}

.dropdown-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-arrow {
    transform: rotate(90deg);
}

.mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: scroll;
    transition: max-height 0.3s ease;
    background: var(--color-slate-light);
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 800px;
}

.submenu-category {
    list-style: none;
    padding: 0;
}

.submenu-category .category-title {
    display: block;
    padding: 12px 20px 8px 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-slate-dark);
}

.submenu-category ul {
    list-style: none;
    padding: 0;
}

.submenu-category ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.submenu-category ul li a {
    display: block;
    padding: 10px 20px 10px 30px;
    color: var(--color-slate);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.submenu-category ul li a:hover {
    background: var(--color-white);
    color: var(--color-primary-green);
    padding-left: 35px;
}

.mobile-cta {
    padding: 20px;
    border-top: 1px solid var(--color-slate-light);
}

.mobile-cta .cta-button {
    width: 100%;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .navbar-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .megamenu {
        display: none;
    }
}

@media (max-width: 1024px) {
    .megamenu {
        width: 95vw;
        max-width: 800px;
    }

    .megamenu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
    min-height: 100vh;
}

.page-section {
    display: none;
    animation: fadeIn 0.6s ease-in;
}

.page-section.active {
    display: block;
}

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

/* ==================== PAGE HEADER ==================== */
.page-header {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-slate-dark);
    font-family: var(--font-display);
}

.page-header p {
    font-size: 18px;
    color: var(--color-slate);
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    animation: slideInLeft 0.8s ease-out;
}

.hero-heading {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-slate-dark);
    font-family: var(--font-display);
}

.hero-heading span {
    background: linear-gradient(135deg, var(--color-primary-green) 0%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheading {
    font-size: 18px;
    color: var(--color-slate);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ==================== BUTTONS ==================== */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary-green) 0%, var(--color-teal) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary-green);
    border: 2px solid var(--color-primary-green);
}

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

/* ==================== STORY IMAGES WITH ANIMATIONS ==================== */
.story-image {
    perspective: 1000px;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

/* Flying in from right */
.flying-right {
    animation: flyInFromRight 1s ease-out, bubble 3s ease-in-out 1s infinite;
}

/* Flying in from left */
.flying-left {
    animation: flyInFromLeft 1s ease-out, bubble 3s ease-in-out 1s infinite;
}

@keyframes flyInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px) translateY(30px) rotateZ(5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0) rotateZ(0);
    }
}

@keyframes flyInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) translateY(30px) rotateZ(-5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0) rotateZ(0);
    }
}

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

/* Gradient variations */
.gradient-teal {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.gradient-cyan {
    background: linear-gradient(135deg, #06D6D6 0%, #00D9FF 100%);
}

.gradient-slate {
    background: linear-gradient(135deg, #64748B 0%, #475569 100%);
}

.image-placeholder svg {
    width: 80%;
    height: 80%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* ==================== 5 BOXES SECTION ==================== */
.boxes-section {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.boxes-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.box {
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.box:hover::before {
    opacity: 1;
}

.box-1 {
    background: linear-gradient(135deg, var(--color-primary-green) 0%, var(--color-teal) 100%);
    color: var(--color-white);
    grid-column: 1;
    grid-row: 1 / 3;
}

.box-1 h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.box-1 p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

.box-2 {
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-primary-green) 100%);
    color: var(--color-white);
    grid-column: 2;
    grid-row: 1;
}

.box-3 {
    background: linear-gradient(135deg, var(--color-teal) 0%, #06D6D6 100%);
    color: var(--color-white);
    grid-column: 3;
    grid-row: 1;
}

.box-4 {
    background: linear-gradient(135deg, var(--color-orange) 0%, #FBBF24 100%);
    color: var(--color-white);
    grid-column: 2;
    grid-row: 2;
}

.box-5 {
    background: linear-gradient(135deg, var(--color-slate) 0%, #475569 100%);
    color: var(--color-white);
    grid-column: 3;
    grid-row: 2;
}

.box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.box p {
    font-size: 14px;
    opacity: 0.9;
}

/* ==================== CONTENT SECTIONS ==================== */
.content-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-1 {
    animation: slideInLeft 0.8s ease-out;
}

.section-2 {
    animation: slideInRight 0.8s ease-out;
}

.section-3 {
    animation: slideInLeft 0.8s ease-out;
}

.section-4 {
    animation: slideInRight 0.8s ease-out;
}

.section-left h2,
.section-right h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-slate-dark);
    font-family: var(--font-display);
    line-height: 1.2;
}

.section-left p,
.section-right p {
    font-size: 16px;
    color: var(--color-slate);
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-slate);
    font-size: 15px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary-green);
    font-weight: 700;
    font-size: 18px;
}

/* ==================== TAGS ==================== */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.tag {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: var(--color-primary-green);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--color-primary-green);
}

.tag:hover {
    background: var(--color-primary-green);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== SERVICES PAGE ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(1) {
    border-top-color: var(--color-primary-green);
}

.service-card:nth-child(2) {
    border-top-color: var(--color-teal);
}

.service-card:nth-child(3) {
    border-top-color: var(--color-light-green);
}

.service-card:nth-child(4) {
    border-top-color: var(--color-orange);
}

.service-card:nth-child(5) {
    border-top-color: var(--color-slate);
}

.service-card:nth-child(6) {
    border-top-color: var(--color-primary-green);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary-green), var(--color-teal));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    color: var(--color-white);
}

.service-card:hover::before {
    opacity: 0.05;
}

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

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-slate-dark);
    font-family: var(--font-display);
}

.service-card:hover h3 {
    color: var(--color-primary-green);
}

.service-card p {
    font-size: 15px;
    color: var(--color-slate);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-link {
    color: var(--color-primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.service-link:hover {
    transform: translateX(5px);
    color: var(--color-teal);
}

/* ==================== BLOGS PAGE ==================== */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.blog-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    width: 100%;
    height: 250px;
    transition: var(--transition);
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: 32px;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: var(--color-primary-green);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-slate-dark);
    line-height: 1.4;
    font-family: var(--font-display);
}

.blog-card:hover h3 {
    color: var(--color-primary-green);
}

.blog-card p {
    font-size: 14px;
    color: var(--color-slate);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--color-slate);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-slate-light);
}

.read-more {
    color: var(--color-primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.read-more:hover {
    transform: translateX(5px);
}

/* ==================== CONTACT PAGE ==================== */
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-slate-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--color-slate-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: var(--font-body);
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-slate-dark);
    font-family: var(--font-display);
}

.info-item {
    margin-bottom: 24px;
}

.info-item h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-slate-dark);
    margin-bottom: 8px;
}

.info-item p {
    color: var(--color-slate);
    font-size: 14px;
    line-height: 1.6;
}

.info-item a {
    color: var(--color-primary-green);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--color-teal);
}

.contact-image {
    flex: 1;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #111214; /*var(--color-slate-dark);*/
    color: var(--color-white);
    padding: 60px 40px 0;

    background-image: url(https://localhost/shiventech/assets/images/arrow-side-up-3.png);
    background-repeat: no-repeat;
    background-position: left;
    /* background-size: cover; */
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--color-light-green);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-white);
    font-family: var(--font-display);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-contact {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-light-green);
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom-left {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-center {
    display: flex;
    gap: 32px;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--color-light-green);
}

.footer-bottom-right {
    display: flex;
    justify-content: flex-end;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    font-size: 14px;
}

.social-icon:hover {
    background: var(--color-primary-green);
    border-color: var(--color-primary-green);
    transform: translateY(-3px);
}

/* ==================== ANIMATIONS ==================== */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 20px;
    }

    .megamenu {
        width: 95vw;
        max-width: 800px;
    }

    .megamenu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hero-container,
    .section-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-heading {
        font-size: 42px;
    }

    .section-left h2,
    .section-right h2 {
        font-size: 32px;
    }

    .boxes-container {
        grid-template-columns: 1fr 1fr;
    }

    .box-1 {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .box-2, .box-3 {
        grid-row: 2;
    }

    .box-4, .box-5 {
        grid-row: 3;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }

    .navbar {
        top: 0px;
    }

    .navbar-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .megamenu {
        display: none;
    }

    .hero-container,
    .section-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-heading {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section-left h2,
    .section-right h2,
    .page-header h1 {
        font-size: 28px;
    }

    .boxes-container {
        grid-template-columns: 1fr;
    }

    .box-1, .box-2, .box-3, .box-4, .box-5 {
        grid-column: 1;
        grid-row: auto;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom-center {
        justify-content: center;
    }

    .footer-bottom-right {
        justify-content: center;
    }

    .contact-container {
        padding: 40px 20px;
    }

    .hero {
        padding: 40px 20px;
    }

    .content-section {
        padding: 40px 20px;
    }

    .page-header {
        padding: 40px 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 16px;
    }

    .navbar-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 28px;
    }

    .section-left h2,
    .section-right h2 {
        font-size: 22px;
    }

    .logo {
        font-size: 18px;
    }

    .mobile-menu-header .logo {
        font-size: 16px;
    }

    .nav-links {
        gap: 5px;
    }

    .nav-link {
        font-size: 12px;
    }

    .tags {
        flex-direction: column;
    }

    .tag {
        width: 100%;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .mobile-menu-overlay {
        max-width: 100%;
    }
}


/* Other pages */

.inner-hero{
    padding:55px 20px 55px; /*120px 20px 80px;*/
    background:linear-gradient(135deg,#0f172a,#0f766e);
    color:#fff;
    text-align:center;
}

.inner-hero-content{
    max-width:800px;
    margin:auto;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:50px;
    margin-bottom:20px;
}

.inner-hero h1{
    font-size:58px;
    margin-bottom:20px;
}

.inner-hero p{
    font-size:18px;
    opacity:0.9;
}

.services-page-section,
.blog-page-section,
.contact-page-section{
    padding:80px 20px;
}

.service-img,
.blog-image,
.contact-illustration{
    width:100%;
    border-radius:20px;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.contact-form-box,
.contact-info-box{
    background:#fff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

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

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
}

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .inner-hero h1{
        font-size:40px;
    }

}

.close-button{
    display:none;
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 909px;
    overflow: hidden;
    background: #0a0a1a;
}

.hero-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.hero-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Slide backgrounds using rich gradient scenes */
/*.slide-1 {
    background: linear-gradient(135deg, #0d0221 0%, #1a0533 30%, #0b1f4a 65%, #083042 100%);
}*/

.slide-1 {
    background-image: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 60%, transparent 100%),
                      url('https://shiventech.co.in/assets/images/custom-ai-solutions.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(6,182,212,0.18) 0%, transparent 70%),
                radial-gradient(ellipse 40% 50% at 20% 80%, rgba(52,102,211,0.22) 0%, transparent 60%);
}

/*.slide-2 {
    background: linear-gradient(135deg, #001428 0%, #002244 40%, #0a1f3a 70%, #071520 100%);
}*/

.slide-2 {
    background-image: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 60%, transparent 100%),
                      url('https://shiventech.co.in/assets/images/ecommerce-solutions.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 65% at 75% 40%, rgba(20,4,79,0.5) 0%, transparent 65%),
                radial-gradient(ellipse 50% 60% at 25% 70%, rgba(6,182,212,0.15) 0%, transparent 60%);
}

/*.slide-3 {
    background: linear-gradient(135deg, #060d1f 0%, #0f1e3a 35%, #192b52 65%, #0d1a30 100%);
}*/

.slide-3 {
    background-image: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 60%, transparent 100%),
                      url('https://shiventech.co.in/assets/images/custom-saas-solutions.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(245,158,11,0.12) 0%, transparent 65%),
                radial-gradient(ellipse 45% 55% at 30% 70%, rgba(20,4,79,0.35) 0%, transparent 60%);
}

.slide-4 {
    background: linear-gradient(135deg, #0a1628 0%, #122240 40%, #0e2240 65%, #091522 100%);
}
.slide-4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 65% at 72% 45%, rgba(52,102,211,0.2) 0%, transparent 65%),
                radial-gradient(ellipse 40% 50% at 28% 75%, rgba(6,182,212,0.12) 0%, transparent 60%);
}

/* Shared decorative animated orbs */
.hero-slide::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(6,182,212,0.12);
    right: -100px;
    top: -100px;
    animation: orbitSlow 20s linear infinite;
    pointer-events: none;
}

@keyframes orbitSlow {
    from { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.05); }
    to   { transform: rotate(360deg) scale(1); }
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    animation: slideContentIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.slide-icons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.slide-icon {
    font-size: 26px;
    background: #000; /* rgba(255,255,255,0.08);*/
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 8px 0px; /*12px;*/
    backdrop-filter: blur(6px);
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: default;
    text-align:center;
}
.slide-icon:hover {
    background: rgba(6,182,212,0.18);
    transform: translateY(-3px);
}

.slide-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 62px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
    max-width: 750px;
}

.slide-subheading {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.6vw, 20px);
    color: rgba(255,255,255,0.78);
    max-width: 560px;
    line-height: 1.65;
}

.slide-cta {
    display: inline-block;
    padding: 15px 34px;
    background: linear-gradient(135deg, var(--color-primary-green), var(--color-teal));
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 30px rgba(6,182,212,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-top: 8px;
}
.slide-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(6,182,212,0.5);
    color: #fff;
    text-decoration: none;
}

/* Dots */
.hero-carousel-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
    padding: 0;
}
.carousel-dot.active {
    background: #06B6D4;
    width: 28px;
    border-radius: 5px;
    transform: none;
}

/* Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, transform 0.3s ease;
}
.carousel-arrow:hover {
    background: rgba(6,182,212,0.35);
    transform: translateY(-50%) scale(1.1);
}
.carousel-prev { left: 28px; }
.carousel-next { right: 28px; }

/* Progress bar */
.carousel-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 10;
}
.carousel-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary-green), #06B6D4);
    width: 0%;
    transition: width 0.1s linear;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .hero-carousel { max-height: 700px; }
    .hero-slide-content { padding: 0 50px; }
}
@media (max-width: 768px) {
    .hero-carousel { height: 85vh; max-height: 640px; }
    .hero-slide-content { padding: 0 24px; gap: 16px; }
    .slide-icons { gap: 10px; }
    .slide-icon { font-size: 20px; padding: 6px 0px;/* 9px;*/ }
    .carousel-arrow { width: 40px; height: 40px; font-size: 16px; }
    .carousel-prev { left: 14px; }
    .carousel-next { right: 14px; }
    .slide-cta { font-size: 14px; padding: 12px 26px; }
}
@media (max-width: 480px) {
    .hero-carousel { height: 90vh; }
    .hero-slide-content { align-items: flex-start; }
    .slide-heading { font-size: 26px; }
    .slide-subheading { font-size: 14px; }
}


/* ============================================================
   CLIENT LOGOS MARQUEE
   ============================================================ */
.clients-marquee-section {
    padding: 56px 0 52px;
    background: #f8faff;
    border-top: 1px solid #e8edf6;
    border-bottom: 1px solid #e8edf6;
    overflow: hidden;
}

.clients-marquee-header {
    text-align: center;
    margin-bottom: 30px;
}
.clients-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-slate);
}

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

/* Fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8faff, transparent);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8faff, transparent);
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 28s linear infinite;
    width: max-content;
}
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 44px;
    border-right: 1px solid #dde4f0;
    flex-shrink: 0;
    transition: background 0.3s ease;
}
.marquee-item:hover {
    background: rgba(6,182,212,0.04);
}

.client-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.marquee-item:hover .client-logo-text {
    color: var(--color-primary-green);
}

@media (max-width: 768px) {
    .clients-marquee-section { padding: 40px 0; }
    .marquee-item { padding: 12px 30px; }
    .client-logo-text { font-size: 15px; }
}


/* ============================================================
   CLIENT REVIEWS / TESTIMONIALS CAROUSEL
   ============================================================ */
.reviews-section {
    padding: 90px 0 80px;
    background: linear-gradient(160deg, #f0f4ff 0%, #fafcff 50%, #eef3ff 100%);
    overflow: hidden;
}

.reviews-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 56px;
}
.reviews-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    color: var(--color-slate-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.reviews-header p {
    font-size: 17px;
    color: var(--color-slate);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Outer wrapper: holds arrows + viewport in a row */
.reviews-carousel-outer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* The visible window that clips the sliding track */
.reviews-carousel-viewport {
    flex: 1;
    overflow: hidden;
}

/* The sliding track */
.reviews-track {
    display: flex;
    gap: 28px;
    transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

/* Each card — width is set by JS to exactly half the viewport minus gap */
.review-card {
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 4px 20px rgba(20,4,79,0.07), 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid rgba(20,4,79,0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* width is applied inline by JS */
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(20,4,79,0.11), 0 4px 12px rgba(0,0,0,0.05);
}

/* Stars */
.review-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stars {
    display: flex;
    gap: 2px;
}
.star {
    color: #f59e0b;
    font-size: 18px;
}
.review-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-slate-dark);
    margin: 0;
}

/* Review body */
.review-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
    font-style: italic;
    flex: 1;
    margin: 0;
}

/* Reviewer footer */
.review-footer {
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid #eef2f9;
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-green), var(--color-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    font-family: var(--font-display);
    flex-shrink: 0;
    letter-spacing: 0.03em;
}
.reviewer-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-slate-dark);
    margin: 0 0 2px;
}
.reviewer-role {
    font-size: 12.5px;
    color: var(--color-slate);
    margin: 0;
}

/* Arrows — sit outside the viewport */
.rev-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #dde4f0;
    color: var(--color-slate-dark);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
                box-shadow 0.25s ease, transform 0.25s ease;
    z-index: 2;
}
.rev-arrow:hover {
    background: var(--color-primary-green);
    color: #fff;
    border-color: var(--color-primary-green);
    box-shadow: 0 8px 24px rgba(20,4,79,0.28);
    transform: scale(1.1);
}
.rev-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Dots */
.rev-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}
.rev-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c7d2e8;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}
.rev-dot.active {
    background: var(--color-primary-green);
    width: 26px;
    border-radius: 5px;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .reviews-container { padding: 0 40px; }
}
@media (max-width: 768px) {
    .reviews-section { padding: 64px 0 56px; }
    .reviews-container { padding: 0 20px; }
    .reviews-carousel-outer { gap: 12px; }
    .rev-arrow { width: 40px; height: 40px; font-size: 15px; }
    /* On mobile cards go 1-at-a-time — handled by JS */
    .review-card { padding: 24px 22px; }
    .review-text { font-size: 14px; }
}
@media (max-width: 480px) {
    .reviews-header h2 { font-size: 24px; }
    .reviews-header p  { font-size: 15px; }
}
