:root {
    --primary: hsl(189, 94%, 43%);
    --primary-foreground: hsl(222, 47%, 11%);
    --secondary: #f5af36;
    --dark: #0e1a33;
    --light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #333;
    background: #f5f7fa;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e8ecf1 100%);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle 100px at 20% 30%, rgba(6, 163, 199, 0.1), transparent 50%),
        radial-gradient(circle 80px at 75% 25%, rgba(179, 232, 245, 0.15), transparent 50%),
        radial-gradient(circle 120px at 15% 75%, rgba(7, 184, 224, 0.08), transparent 50%),
        radial-gradient(circle 70px at 85% 70%, rgba(6, 163, 199, 0.12), transparent 50%),
        radial-gradient(circle 90px at 50% 50%, rgba(179, 232, 245, 0.1), transparent 50%);
    animation: float-circles 20s ease-in-out infinite;
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(135deg, rgba(6, 163, 199, 0.08) 25%, transparent 25%),
        linear-gradient(225deg, rgba(179, 232, 245, 0.12) 25%, transparent 25%),
        linear-gradient(45deg, rgba(7, 184, 224, 0.06) 25%, transparent 25%),
        linear-gradient(315deg, rgba(6, 163, 199, 0.05) 25%, transparent 25%);
    background-size: 150px 150px, 180px 180px, 200px 200px, 160px 160px;
    background-position: 0 0, 40px 40px, 80px 80px, 120px 120px;
    animation: float-squares 25s linear infinite;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0e1a33;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.page-header p {
    font-size: 1.3rem;
    color: #64748b;
    margin: 0;
}

/* Navigation */
.navbar {
    background: #ffffff;
    backdrop-filter: blur(20px);
    padding: 0.4rem 0;
    box-shadow: 0 2px 16px rgba(14, 26, 51, 0.08);
    border-bottom: 1px solid rgba(6, 163, 199, 0.15);
    /* sits in normal document flow by default */
    position: relative;
    top: auto;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

/* Sticky state — added by JS on scroll */
.navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: navSlideDown 0.35s ease both;
    box-shadow: 0 4px 24px rgba(14, 26, 51, 0.13);
}

@keyframes navSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.navbar-toggler {
    border-color: rgba(6, 163, 199, 0.5);
    order: 1;
    margin-right: 1rem;
    background: rgba(6, 163, 199, 0.1);
    border-radius: 8px;
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(6, 163, 199, 0.3);
}

/* Hamburger lines — dark navy */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230e1a33' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0e1a33 !important;
    line-height: 1;
    order: 2;
}

.navbar-collapse {
    order: 4;
    flex-basis: 100%;
}

@media (min-width: 992px) {
    .navbar-collapse {
        flex-basis: auto;
        order: 3;
    }
}

.navbar-nav {
    background: transparent;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    box-shadow: none;
}

/* Nav links — dark on white, primary pill on hover/active */
.nav-link {
    color: #0e1a33 !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
    background: #06a3c7;
    color: #ffffff !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e8ecf1 100%);
    padding: 140px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle 100px at 20% 30%, rgba(6, 163, 199, 0.1), transparent 50%),
        radial-gradient(circle 80px at 75% 25%, rgba(179, 232, 245, 0.15), transparent 50%),
        radial-gradient(circle 120px at 15% 75%, rgba(7, 184, 224, 0.08), transparent 50%),
        radial-gradient(circle 70px at 85% 70%, rgba(6, 163, 199, 0.12), transparent 50%),
        radial-gradient(circle 90px at 50% 50%, rgba(179, 232, 245, 0.1), transparent 50%);
    animation: float-circles 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(135deg, rgba(6, 163, 199, 0.08) 25%, transparent 25%),
        linear-gradient(225deg, rgba(179, 232, 245, 0.12) 25%, transparent 25%),
        linear-gradient(45deg, rgba(7, 184, 224, 0.06) 25%, transparent 25%),
        linear-gradient(315deg, rgba(6, 163, 199, 0.05) 25%, transparent 25%);
    background-size: 150px 150px, 180px 180px, 200px 200px, 160px 160px;
    background-position: 0 0, 40px 40px, 80px 80px, 120px 120px;
    animation: float-squares 25s linear infinite;
}

.hero .container {
    position: relative;
    z-index: 1;
}

@keyframes float-circles {
    0%, 100% { 
        transform: translate(0, 0);
        opacity: 1;
    }
    50% { 
        transform: translate(30px, -30px);
        opacity: 0.7;
    }
}

@keyframes float-squares {
    0% { 
        background-position: 0 0, 40px 40px, 80px 80px, 120px 120px;
    }
    100% { 
        background-position: 150px 150px, 190px 190px, 230px 230px, 270px 270px;
    }
}

/* Services - Light */
.services-section {
    background: white;
    padding: 100px 0;
    position: relative;
}

.services-section .section-badge {
    background: transparent;
    color: #06a3c7;
    border: 1px solid #06a3c7;
}

.services-section .section-title {
    color: #0e1a33;
}

.services-section .lead {
    color: #64748b;
}

.capability-visual {
    background: linear-gradient(135deg, #06a3c7, #07b8e0);
}

.capability-visual i {
    color: #b3e8f5;
}

.capability-content h3 {
    color: #06a3c7;
}

.capability-content p {
    color: #64748b;
}

/* Industries - Light */
.industries-section {
    background: white;
    padding: 100px 0;
}

.industries-section .section-badge {
    background: transparent;
    color: #06a3c7;
    border: 1px solid #06a3c7;
}

.industries-section .section-title {
    color: #0e1a33;
}

.industries-section .lead {
    color: #64748b;
}

.industry-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.industry-item:hover {
    background: white;
    border-color: #06a3c7;
}

.industry-item i {
    color: #06a3c7;
}

.industry-item h6 {
    color: #0e1a33;
}

/* Our Process Section */
.our-process-section {
    background: linear-gradient(135deg, #06a3c7 0%, #07b8e0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.our-process-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle 150px at 80% 20%, rgba(179, 232, 245, 0.15), transparent),
        radial-gradient(circle 200px at 20% 80%, rgba(179, 232, 245, 0.1), transparent);
    animation: float-circles 25s ease-in-out infinite;
}

.our-process-section .section-badge {
    background: rgba(179, 232, 245, 0.2);
    color: #06a3c7;
    border: 2px solid rgba(6, 163, 199, 0.3);
}

.our-process-section .section-title {
    color: #0e1a33;
}

.our-process-section p {
    color: #64748b;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #b3e8f5, rgba(179, 232, 245, 0.3));
    z-index: 0;
}

.process-step {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0;
    transition: all 0.4s;
    position: relative;
    text-align: center;
}

.process-step::before {
    display: none;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #b3e8f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06a3c7;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 8px rgba(179, 232, 245, 0.2);
}

.process-step:hover .step-icon {
    transform: scale(1.2);
    box-shadow: 0 0 0 12px rgba(179, 232, 245, 0.3);
}

.step-number {
    color: #06a3c7;
    font-weight: 700;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.step-content h5 {
    font-weight: 800;
    font-size: 1.2rem;
    color: #0e1a33;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }
    .process-steps::before {
        display: none;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(179, 232, 245, 0.2);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    color: #06a3c7;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-size: 0.95rem;
    border: 1px solid rgba(179, 232, 245, 0.3);
}

.hero-badge i {
    margin-right: 0.5rem;
}

/* h1 — shared between standalone .hero and slider .hero-slide */
.hero h1,
.hero-slide h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0e1a33;
    text-shadow: 0 4px 12px rgba(0,0,0,0.08);
    letter-spacing: -2px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.hero h1 .highlight,
.hero-slide h1 .highlight {
    color: #06a3c7;
    font-style: normal;
    background: linear-gradient(135deg, #06a3c7 0%, #07b8e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after,
.hero-slide h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(179, 232, 245, 0.4);
    z-index: -1;
}

.hero-subtitle {
    color: #0e1a33;
    font-size: 1.4rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.4;
}

.hero-subheadline {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero .btn-primary,
.hero-slide .btn-primary {
    background: #06a3c7;
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(6, 163, 199, 0.25);
}

.hero .btn-primary:hover,
.hero-slide .btn-primary:hover {
    background: #07b8e0;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(6, 163, 199, 0.35);
    color: white;
}

.hero-image {
    position: relative;
    margin: 3rem auto 0;
    max-width: 700px;
}

.side-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.side-card.left {
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.side-card.right {
    right: -100px;
    bottom: 100px;
}

.side-card h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.side-card p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.side-card .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #06a3c7 0%, #07b8e0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

/* Services - Staggered Cards */
.services-section {
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
    padding: 100px 0;
}

.services-staggered {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.capability-row {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.capability-row:nth-child(even) {
    flex-direction: row-reverse;
}

.capability-visual {
    flex: 0 0 200px;
    height: 200px;
    background: linear-gradient(135deg, #06a3c7, #07b8e0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.capability-visual::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(179, 232, 245, 0.2), transparent);
    animation: pulse 3s ease-in-out infinite;
}

.capability-visual i {
    font-size: 4rem;
    color: #b3e8f5;
    position: relative;
    z-index: 1;
}

.capability-content {
    flex: 1;
}

.capability-content h3 {
    font-weight: 900;
    font-size: 2rem;
    color: #06a3c7;
    margin-bottom: 1rem;
}

.capability-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Industries - Minimal Cards */
.industries-section {
    background: #f8fafc;
    padding: 100px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.industry-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.industry-item:hover {
    border-color: #06a3c7;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(6, 163, 199, 0.1);
}

.industry-item i {
    font-size: 2.5rem;
    color: #06a3c7;
    margin-bottom: 1rem;
}

.industry-item h6 {
    font-weight: 700;
    color: #0e1a33;
    margin: 0;
}

/* Process - Timeline */
.our-process-section {
    background: white;
    padding: 100px 0;
}

.process-timeline {
    position: relative;
    padding-left: 100px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #06a3c7, #b3e8f5);
}

.process-item {
    position: relative;
    margin-bottom: 3rem;
}

.process-number {
    position: absolute;
    left: -100px;
    width: 80px;
    height: 80px;
    background: #06a3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b3e8f5;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 5px 20px rgba(6, 163, 199, 0.3);
}

.process-content {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #06a3c7;
}

.process-content h5 {
    font-weight: 800;
    font-size: 1.5rem;
    color: #06a3c7;
    margin-bottom: 0.5rem;
}

.process-content p {
    color: #64748b;
    margin: 0;
}

@media (max-width: 768px) {
    .capability-row, .capability-row:nth-child(even) {
        flex-direction: column;
    }
    .why-features-grid, .industries-grid {
        grid-template-columns: 1fr;
    }
    .why-bottom-cta {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
.about-section {
    background: #ffffff;
    padding: 100px 0;
    color: #0e1a33;
}

.about-section .section-badge {
    background: rgba(6, 163, 199, 0.1);
    color: #06a3c7;
    border: 1px solid rgba(6, 163, 199, 0.25);
    font-weight: 700;
    font-size: 0.95rem;
}

.about-section .section-title {
    color: #0e1a33;
}

.about-section .lead {
    color: #64748b;
    font-size: 1.3rem;
    font-weight: 500;
}

.specialization-text {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #06a3c7 !important;
    background: rgba(6, 163, 199, 0.08);
    padding: 1rem 2rem;
    border-radius: 12px;
    display: inline-block;
    border: 2px solid rgba(6, 163, 199, 0.2);
}

.about-content-text {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
    text-align: left;
    padding-left: 2rem;
    border-left: 4px solid rgba(6, 163, 199, 0.35);
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .about-services-grid {
        grid-template-columns: 1fr;
    }
}

.about-service-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.4s;
    border: 3px solid rgba(6, 163, 199, 0.15);
    position: relative;
    overflow: hidden;
}

.about-service-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(6, 163, 199, 0.08);
    transition: height 0.4s;
    z-index: 0;
}

.about-service-row:hover::before {
    height: 100%;
}

.about-service-row:hover {
    border-color: #06a3c7;
    transform: scale(1.05);
}

.about-service-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #06a3c7;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

.about-service-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-service-content h5 {
    font-weight: 800;
    font-size: 1.2rem;
    color: #0e1a33;
    margin-bottom: 0;
    line-height: 1.4;
}

.about-cta-banner {
    background: linear-gradient(135deg, #06a3c7 0%, #07b8e0 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    border: none;
}

.about-cta-banner h3 {
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.about-cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
}

.section-badge {
    display: inline-block;
    color: #06a3c7;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.2rem;
    background: rgba(179, 232, 245, 0.2);
    border-radius: 50px;
    border: 2px solid rgba(6, 163, 199, 0.2);
}

.section-badge i {
    font-size: 0.4rem;
    margin-right: 0.6rem;
    vertical-align: middle;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #0e1a33;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    letter-spacing: -1px;
}

.about-section .lead {
    color: #64748b;
    font-size: 1.3rem;
    font-weight: 500;
    font-weight: 500;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    padding: 0.5rem 0;
    color: #333;
}

.why-list li i {
    color: var(--primary);
    margin-right: 0.75rem;
}

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

.about-image {
    background: var(--primary);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.about-quote {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 2rem;
    font-weight: 600;
}

.about-quote i {
    color: var(--primary);
    font-size: 0.5rem;
    margin-right: 0.5rem;
}

/* Services */
.services-section {
    background: #f8fafc;
    padding: 100px 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 163, 199, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.capability-card {
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 163, 199, 0.05) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-card:hover::before {
    transform: scale(1);
}

.capability-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(6, 163, 199, 0.2);
    border-color: #06a3c7;
    background: white;
}

.capability-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #06a3c7, #07b8e0);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b3e8f5;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(6, 163, 199, 0.2);
}

.capability-card:hover .capability-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(6, 163, 199, 0.4);
}

.capability-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border-radius: 22px;
    border: 2px solid #b3e8f5;
    opacity: 0;
    transition: opacity 0.3s;
}

.capability-card:hover .capability-icon::after {
    opacity: 1;
}

.capability-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.capability-card:hover .capability-icon i {
    transform: scale(1.1);
}

.capability-card h5 {
    font-weight: 900;
    font-size: 1.5rem;
    color: #0e1a33;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.capability-card:hover h5 {
    color: #06a3c7;
}

.capability-card p {
    color: #64748b;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.capability-card:hover p {
    color: #475569;
}

.services-cta {
    margin-top: 3rem;
}

.btn-view-services {
    background: linear-gradient(135deg, #06a3c7, #07b8e0);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(6, 163, 199, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-view-services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(179, 232, 245, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-view-services:hover::before {
    width: 400px;
    height: 400px;
}

.btn-view-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(6, 163, 199, 0.5);
    color: white;
}

.btn-view-services i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.btn-view-services:hover i {
    transform: translateX(5px);
}

/* Services Page */
.service-detail-section {
    padding: 2rem 0;
}

.service-number-badge {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06a3c7, #07b8e0);
    color: #b3e8f5;
    border-radius: 15px;
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detail-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0e1a33;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.service-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    color: #06a3c7;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.client-benefit {
    background: rgba(179, 232, 245, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #06a3c7;
    color: #0e1a33;
    font-size: 0.95rem;
}

.client-benefit strong {
    color: #06a3c7;
}

.service-list-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
}

.service-list-card h5 {
    font-weight: 800;
    color: #0e1a33;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.8rem 0;
    color: #64748b;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-features li i {
    color: #06a3c7;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Services Page */
.service-detail {
    padding: 2rem 0;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: #e8f2ff;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
}

.service-list-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: #333;
}

.service-list li i {
    color: var(--primary);
    margin-right: 0.75rem;
}

.benefit-box {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Why Choose Us Section */

.process-image-wrapper {
    max-width: 400px;
}

.process-steps {
    padding-left: 2rem;
}

/* Industries Section */
.industries-section {
    background: linear-gradient(135deg, #06a3c7 0%, #07b8e0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.industries-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(179, 232, 245, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Overlay shown only when a bg image is set */
.industries-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 26, 51, 0.72) 0%, rgba(6, 163, 199, 0.45) 100%);
    z-index: 0;
    pointer-events: none;
}

/* Push all section content above the overlay */
.industries-has-bg .container {
    position: relative;
    z-index: 1;
}

.industries-section .section-badge {
    background: rgba(179, 232, 245, 0.2);
    color: #b3e8f5;
    border: 1px solid rgba(179, 232, 245, 0.3);
}

.industries-section .section-title {
    color: white;
}

.industries-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

.industry-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(179, 232, 245, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #b3e8f5;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.industry-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(179, 232, 245, 0.2);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.industry-card:hover .industry-icon-wrapper {
    background: #b3e8f5;
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(179, 232, 245, 0.4);
}

.industry-icon-wrapper i {
    color: #b3e8f5;
    font-size: 2.5rem;
    transition: all 0.3s;
}

.industry-card:hover .industry-icon-wrapper i {
    color: #06a3c7;
    transform: scale(1.1);
}

.industry-card h6 {
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.industry-card:hover h6 {
    color: #b3e8f5;
    transform: translateY(-3px);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,102,255,0.3);
}

.btn-outline-light {
    border: 2px solid white;
    border-radius: 50px;
    padding: 12px 30px;
}

.btn-outline-light:hover {
    background: white;
    color: #06a3c7;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #06a3c7 0%, #07b8e0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(179, 232, 245, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #b3e8f5;
    color: #06a3c7;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(179, 232, 245, 0.3);
    text-decoration: none;
}

.btn-cta-primary:hover {
    background: white;
    color: #06a3c7;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid white;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: white;
    color: #06a3c7;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e8ecf1 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle 100px at 20% 30%, rgba(6, 163, 199, 0.08), transparent 50%),
        radial-gradient(circle 120px at 80% 70%, rgba(179, 232, 245, 0.12), transparent 50%);
    animation: float-circles 20s ease-in-out infinite;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.contact-form-wrapper .form-control:focus {
    border-color: #06a3c7;
    box-shadow: 0 0 0 4px rgba(6, 163, 199, 0.1);
}

.btn-contact {
    background: linear-gradient(135deg, #06a3c7, #07b8e0);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(6, 163, 199, 0.3);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(6, 163, 199, 0.4);
    color: white;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.contact-info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(6, 163, 199, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06a3c7, #07b8e0);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b3e8f5;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-weight: 800;
    font-size: 1.1rem;
    color: #0e1a33;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

.text-teal {
    color: #06a3c7 !important;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #475569;
    padding: 60px 0 0;
    border-top: 1px solid rgba(6, 163, 199, 0.15);
}

.footer-about p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(6, 163, 199, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06a3c7;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: #06a3c7;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-links h5,
.footer-contact h5 {
    color: #0e1a33;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #06a3c7;
    transform: translateX(5px);
}

.footer-contact ul li {
    color: #64748b;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact ul li i {
    color: #06a3c7;
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(6, 163, 199, 0.12);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1,
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .side-card {
        display: none;
    }
    
    .navbar-nav {
        border-radius: 15px;
        margin-top: 1rem;
    }
}

/* Why Choose Us */
.why-choose-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e8ecf1 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle 100px at 20% 30%, rgba(6, 163, 199, 0.1), transparent 50%),
        radial-gradient(circle 80px at 75% 25%, rgba(179, 232, 245, 0.15), transparent 50%),
        radial-gradient(circle 120px at 15% 75%, rgba(7, 184, 224, 0.08), transparent 50%),
        radial-gradient(circle 70px at 85% 70%, rgba(6, 163, 199, 0.12), transparent 50%);
    animation: float-circles 20s ease-in-out infinite;
    z-index: 0;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(135deg, rgba(6, 163, 199, 0.08) 25%, transparent 25%),
        linear-gradient(225deg, rgba(179, 232, 245, 0.12) 25%, transparent 25%),
        linear-gradient(45deg, rgba(7, 184, 224, 0.06) 25%, transparent 25%);
    background-size: 150px 150px, 180px 180px, 200px 200px;
    background-position: 0 0, 40px 40px, 80px 80px;
    animation: float-squares 25s linear infinite;
    z-index: 0;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.why-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 2px solid transparent;
}

.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #06a3c7, #b3e8f5);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(6, 163, 199, 0.03), rgba(179, 232, 245, 0.03));
    opacity: 0;
    transition: opacity 0.4s;
}

.why-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(6, 163, 199, 0.15);
    border-color: #06a3c7;
}

.why-feature-card:hover::before {
    transform: scaleX(1);
}

.why-feature-card:hover::after {
    opacity: 1;
}

.why-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #06a3c7, #07b8e0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-feature-card:hover .why-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(6, 163, 199, 0.3);
}

.why-icon-wrapper i {
    color: #b3e8f5;
    font-size: 2rem;
    transition: all 0.3s;
}

.why-feature-card:hover .why-icon-wrapper i {
    transform: scale(1.1);
}

.why-feature-card h6 {
    font-weight: 800;
    font-size: 1.2rem;
    color: #0e1a33;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.why-feature-card:hover h6 {
    color: #06a3c7;
}

.why-feature-card p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.why-feature-card:hover p {
    color: #475569;
}

.why-cta-box {
    background: linear-gradient(135deg, #06a3c7 0%, #07b8e0 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 60px rgba(6, 163, 199, 0.3);
    position: relative;
    overflow: hidden;
}

.why-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(179, 232, 245, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

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

.why-cta-box h4 {
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
}

.why-cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.btn-light-green {
    background: #b3e8f5;
    color: #06a3c7;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(179, 232, 245, 0.3);
    overflow: hidden;
}

.btn-light-green::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-light-green:hover::before {
    width: 300px;
    height: 300px;
}

.btn-light-green:hover {
    background: #b3db9e;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(179, 232, 245, 0.5);
    color: #06a3c7;
}

.btn-light-green i {
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* === Service Card Image === */
.capability-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
}

.capability-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

/* ===================================================================
   Hero Slider
   =================================================================== */
.hero-slider {
    position: relative;
    width: 100%;
}

/* Bootstrap owns .carousel-item — we never touch its display/position.
   All hero styles live on the inner .hero-slide wrapper. */
.hero-slide {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Default gradient background (no image) */
    background: linear-gradient(135deg, #f8fafc 0%, #e8ecf1 100%);
    /* Animated pattern from base .hero — kept here, not on carousel-item */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Overlay — always present, intensity varies */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    /* Light overlay for gradient-only slides */
    background:
        radial-gradient(circle 100px at 20% 30%, rgba(6,163,199,0.10), transparent 50%),
        radial-gradient(circle 80px  at 75% 25%, rgba(179,232,245,0.15), transparent 50%),
        radial-gradient(circle 120px at 15% 75%, rgba(7,184,224,0.08), transparent 50%),
        radial-gradient(circle 70px  at 85% 70%, rgba(6,163,199,0.12), transparent 50%);
}

/* Darker overlay when a background image is set */
.hero-slide[style*="background-image"] .hero-slide-overlay {
    background: linear-gradient(135deg, rgba(14,26,51,0.62) 0%, rgba(6,163,199,0.28) 100%);
}

/* Slide content sits above overlay — no top offset needed since navbar is not fixed on load */
.hero-slide-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 80px 0 100px;
}

/* Slide-in animation — only fires on the active item */
.carousel-item.active .hero-slide-content > * {
    animation: heroFadeUp 0.65s ease both;
}
.carousel-item.active .hero-badge       { animation-delay: 0.10s; }
.carousel-item.active h1                { animation-delay: 0.25s; }
.carousel-item.active .hero-subheadline { animation-delay: 0.38s; }
.carousel-item.active .btn              { animation-delay: 0.50s; }

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

/* Text colour overrides when a bg image is present */
.hero-slide[style*="background-image"] .hero-badge {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.hero-slide[style*="background-image"] h1 {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-slide[style*="background-image"] h1 .highlight {
    -webkit-text-fill-color: #b3e8f5;
    background: none;
    color: #b3e8f5;
}
.hero-slide[style*="background-image"] .hero-subheadline {
    color: rgba(255,255,255,0.9);
}

/* Indicators */
.hero-slider .carousel-indicators {
    bottom: 24px;
    gap: 8px;
    margin: 0;
    z-index: 10;
}
.hero-slider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #06a3c7;
    background: transparent;
    opacity: 0.6;
    transition: all 0.3s;
    flex-shrink: 0;
}
.hero-slider .carousel-indicators button.active {
    background: #06a3c7;
    opacity: 1;
    width: 28px;
    border-radius: 5px;
}

/* Prev / Next arrows */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 48px;
    height: 48px;
    background: rgba(6,163,199,0.25);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(6,163,199,0.4);
    transition: background 0.3s;
    z-index: 10;
}
.hero-slider .carousel-control-prev { left: 20px; }
.hero-slider .carousel-control-next { right: 20px; }
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(6,163,199,0.55);
}
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .hero-slide { min-height: 100svh; }
    .hero-slide-content { padding: 100px 0 80px; }
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next { display: none; }
}

/* ===================================================================
   Solvix Button System
   =================================================================== */

/* Primary button — cyan */
.btn-solvix-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #06a3c7;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: 2px solid #06a3c7;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 163, 199, 0.3);
}

.btn-solvix-primary:hover {
    background: #07b8e0;
    border-color: #07b8e0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 163, 199, 0.45);
    text-decoration: none;
}

/* Secondary button — amber */
.btn-solvix-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f5af36;
    color: #0e1a33;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: 2px solid #f5af36;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 175, 54, 0.3);
}

.btn-solvix-secondary:hover {
    background: #e09d20;
    border-color: #e09d20;
    color: #0e1a33;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 175, 54, 0.45);
    text-decoration: none;
}

/* Outline variants */
.btn-solvix-primary-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #06a3c7;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: 2px solid #06a3c7;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-solvix-primary-outline:hover {
    background: #06a3c7;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-solvix-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #f5af36;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: 2px solid #f5af36;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-solvix-secondary-outline:hover {
    background: #f5af36;
    color: #0e1a33;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Navbar CTA positioning */
.navbar .btn-solvix-secondary {
    order: 3;
    margin-left: auto;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}
