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

:root {
    --blue: #00A3E0;
    --blue-dark: #008AC4;
    --cyan: #00D4FF;
    --gray: #8A9BA8;
    --dark: #0D1B2A;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif
}

html {
    scroll-behavior: smooth
}

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

.container,
.container-fluid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.container-fluid {
    max-width: 100%
}

.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.03), rgba(0, 212, 255, 0.03));
    pointer-events: none
}

.particles-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(0, 163, 224, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleMove 60s linear infinite
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(100px, 100px)
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(5deg)
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s;
    filter: drop-shadow(0 4px 12px rgba(0, 163, 224, 0.2))
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--dark)
}

.logo-subtitle {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase
}

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

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s;
    position: relative;
    padding: 8px 0
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transition: width 0.3s;
    border-radius: 3px
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue)
}

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

.btn-nav {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 163, 224, 0.3)
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 163, 224, 0.5)
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--blue);
    border-radius: 3px;
    transition: all 0.3s
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
    font-family: var(--font-heading);
    border: none;
    text-decoration: none
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
    box-shadow: 0 6px 25px rgba(0, 163, 224, 0.3)
}

.btn-primary:hover,
.btn-hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 163, 224, 0.5)
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue)
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white)
}

.btn-white {
    background: var(--white);
    color: var(--blue);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3)
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.5)
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px
}

.btn-full {
    width: 100%;
    justify-content: center
}

.btn-play {
    position: relative;
    overflow: hidden
}

.btn-play::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--blue);
    opacity: 0;
    transition: opacity 0.3s
}

.btn-play:hover::before {
    opacity: 0.1
}

.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: heroFloat 20s ease-in-out infinite
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--blue);
    top: -100px;
    right: -100px
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--cyan);
    bottom: -100px;
    left: -100px;
    animation-delay: 5s
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(50px, 50px) scale(1.1)
    }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(0, 163, 224, 0.1);
    border: 2px solid rgba(0, 163, 224, 0.2);
    border-radius: 50px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px
}

.tag-icon {
    font-size: 20px;
    animation: iconBounce 2s infinite
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--dark)
}

.title-gradient {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 24px
}

.hero-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: rgba(0, 163, 224, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(0, 163, 224, 0.1)
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-icon svg {
    stroke: var(--white)
}

.contact-info {
    display: flex;
    flex-direction: column
}

.contact-label {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 4px
}

.contact-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue)
}

/* .hero-visual {
    position: relative
} */
 /* .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
} */


/* .visual-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 60px;
    border: 2px solid rgba(0, 163, 224, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1)
} */

.visual-card {
    position: relative;
    display: inline-block;   /* Fit to image */
    padding: 0;              /* Remove extra space */
    background: transparent; /* Remove white bg */
    border-radius: 32px;
    overflow: hidden;        /* Clip inside */
}
.card-3d {
    animation: card3D 6s ease-in-out infinite
}

@keyframes card3D {

    0%,
    100% {
        transform: perspective(1000px) rotateY(0deg)
    }

    50% {
        transform: perspective(1000px) rotateY(10deg)
    }
}

/* .card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    opacity: 0.1;
    border-radius: 32px;
    filter: blur(40px)
} */

.card-glow {
    position: absolute;
    inset: 0;
    background: rgba(0, 163, 224, 0.15); /* light blue */
    border-radius: 32px;
    filter: blur(0);  /* Remove extra blur */
    z-index: -1;
}
/* .visual-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 163, 224, 0.3))
} */
.visual-logo {
    display: block;
    width: 100%;
    max-width: 600px;  /* Control size */
    height: auto;
    border-radius: 32px; /* Same as card */
}


.stat-badges {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.stat-badge {
    position: absolute;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 2px solid rgba(0, 163, 224, 0.2);
    box-shadow: 0 10px 30px rgba(0, 163, 224, 0.2);
    animation: badgeFloat 4s ease-in-out infinite
}

.badge-1 {
    top: 30px;
    right: 30px;
    animation-delay: 0s
}

.badge-2 {
    bottom: 120px;
    left: 30px;
    animation-delay: 1s
}

.badge-3 {
    bottom: 30px;
    right: 80px;
    animation-delay: 2s
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1
}

.stat-text {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px
}

.section {
    padding: 50px 0;
    position: relative
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px
}

.section-tag {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 163, 224, 0.1);
    border-radius: 50px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px
}

.section-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark)
}

.text-blue {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.section-desc {
    font-size: 20px;
    color: var(--gray);
    line-height: 1.7
}

.features-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px
}

.feature-item {
    background: var(--white);
    padding: 40px 36px;
    border-radius: 24px;
    border: 2px solid rgba(0, 163, 224, 0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transform: scaleX(0);
    transition: transform 0.4s
}

.feature-item:hover {
    border-color: var(--blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 163, 224, 0.2)
}

.feature-item:hover::before {
    transform: scaleX(1)
}

.item-large {
    grid-row: span 2
}

.feature-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 28px
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    opacity: 0.1;
    border-radius: 20px;
    transition: all 0.3s
}

.feature-item:hover .icon-bg {
    opacity: 0.2;
    transform: scale(1.1)
}

.feature-icon-wrap svg {
    position: relative;
    z-index: 2;
    stroke: var(--blue);
    transition: all 0.3s
}

.feature-item:hover .feature-icon-wrap svg {
    stroke: var(--cyan)
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark)
}

.feature-item p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 16px
}

.feature-num {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 163, 224, 0.05);
    line-height: 1
}

/* .services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px
} */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px
}
.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 24px;
    border: 2px solid rgba(0, 163, 224, 0.1);
    transition: all 0.4s;
    position: relative
}

.service-card:hover,
.card-hover:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
    box-shadow: 0 25px 70px rgba(0, 163, 224, 0.2)
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.service-icon svg {
    stroke: var(--white)
}

.service-tag {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray);
    opacity: 0.3
}

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

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

.service-arrow {
    width: 56px;
    height: 56px;
    background: rgba(0, 163, 224, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-left: auto
}

.service-card:hover .service-arrow {
    background: linear-gradient(135deg, var(--blue), var(--cyan))
}

.service-card:hover .service-arrow svg {
    stroke: var(--white)
}

.cta-wave {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    padding: 15px 0;
    position: relative;
    overflow: hidden
}

.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white)
}

.wave-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    clip-path: ellipse(100% 100% at 50% 100%)
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7
}

.page-hero-wave {
    padding: 100px 0 100px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    position: relative;
    overflow: hidden
}

.wave-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3
}

.page-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.page-tag {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px
}

.page-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px
}

.page-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center
}

/* .story-img {
    position: relative
} */
.story-img {
    position: relative;
    display: inline-block; /* Wrap content */
}
/* .img-frame {
    background: rgba(0, 163, 224, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 32px;
    border: 2px solid rgba(0, 163, 224, 0.15)
}

.story-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
    display: block
} */

.img-frame {
    position: relative;
    display: inline-block; /* Fit to image */
    padding: 0;            /* Remove space */
    background: #eaf7fc;   /* Light blue */
    border-radius: 30px;
    overflow: hidden;     /* Cut extra */
}


.story-logo {
    display: block;   /* Remove bottom gap */
    width: 100%;
    max-width: 450px; /* Control size */
    height: auto;
    border-radius: 24px;
}
.img-frame {
    border: 2px solid rgba(0,163,224,0.3);
}


/* .year-tag {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--white);
    padding: 28px 36px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 163, 224, 0.3);
    text-align: center
} */
.year-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;

    background: #fff;
    padding: 18px 26px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,163,224,0.25);

    text-align: center;

    /* Smooth animation */
    animation: floatTag 3s ease-in-out infinite;
}
@keyframes floatTag {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
.year-tag .year {
    font-size: 32px;
    font-weight: 800;
    color: #00a3e0;
    display: block;
}

.year-tag span:last-child {
    font-size: 14px;
    color: #666;
}

.year {
    display: block;
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1
}

.year-tag span:last-child {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
    font-weight: 700
}

.content-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 163, 224, 0.1);
    border-radius: 50px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px
}

.story-text h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1.2;
    color: var(--dark)
}

.story-text p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 24px;
    font-size: 17px
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px
}

.check-list svg {
    stroke: var(--blue);
    flex-shrink: 0
}

.values-wave {
    background: rgba(0, 163, 224, 0.03)
}

/* .values-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px
}

.value-item {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 2px solid rgba(0, 163, 224, 0.1);
    transition: all 0.4s
} */

.value-item:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 20px 60px rgba(0, 163, 224, 0.2)
}

.value-num {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 900;
    color: rgba(0, 163, 224, 0.15);
    line-height: 1;
    margin-bottom: 20px
}

.value-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark)
}

.value-item p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px
}

.timeline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 0
}

.timeline-step {
    flex: 1;
    text-align: center
}

.step-num {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin: 0 auto 24px;
    box-shadow: 0 15px 50px rgba(0, 163, 224, 0.3)
}

.timeline-step h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark)
}

.timeline-step p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6
}

.timeline-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    opacity: 0.3
}

.services-full {
    background: rgba(0, 163, 224, 0.03)
}

.service-block {
    background: var(--white);
    padding: 60px;
    border-radius: 32px;
    border: 2px solid rgba(0, 163, 224, 0.1);
    margin-bottom: 40px;
    position: relative;
    transition: all 0.4s
}

.service-block:hover {
    border-color: var(--blue);
    box-shadow: 0 25px 70px rgba(0, 163, 224, 0.2)
}

.service-badge-num {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 15px 50px rgba(0, 163, 224, 0.3)
}

.service-content-full {
    max-width: 70%
}

.service-content-full h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark)
}

.lead {
    font-size: 19px;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.8
}

.service-list {
    list-style: none;
    margin-bottom: 36px;
    display: grid;
    gap: 16px
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600
}

.service-list svg {
    stroke: var(--blue);
    flex-shrink: 0
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px
}

.contact-form-wrap {
    background: var(--white);
    padding: 60px;
    border-radius: 32px;
    border: 2px solid rgba(0, 163, 224, 0.1);
    box-shadow: 0 10px 40px rgba(0, 163, 224, 0.1)
}

.contact-form-wrap h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--dark)
}

.contact-form-wrap>p {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.6
}

.contact-form {
    display: block
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px
}

.form-group {
    margin-bottom: 24px
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 14px
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 163, 224, 0.03);
    border: 2px solid rgba(0, 163, 224, 0.15);
    border-radius: 12px;
    color: var(--dark);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 163, 224, 0.1)
}

.form-group textarea {
    resize: vertical;
    min-height: 130px
}

.form-success-wave {
    display: none;
    text-align: center;
    padding: 80px
}

.form-success-wave.active {
    display: block
}

.form-success-wave svg {
    stroke: var(--blue);
    margin: 0 auto 32px
}

.form-success-wave h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 16px
}

.form-success-wave p {
    color: var(--gray);
    font-size: 18px;
    line-height: 1.7
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.info-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 32px;
    border: 2px solid rgba(0, 163, 224, 0.1);
    box-shadow: 0 10px 40px rgba(0, 163, 224, 0.1)
}

.info-card h3,
.info-card h4 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark)
}

.info-card h4 {
    font-size: 22px
}

.info-card>p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
    font-size: 16px
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.info-row {
    display: flex;
    gap: 20px
}

.info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.info-icon svg {
    stroke: var(--white)
}

.info-row h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px
}

.info-row p {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px
}

.info-row span {
    font-size: 13px;
    color: var(--gray)
}

.benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600
}

.benefits svg {
    stroke: var(--blue);
    flex-shrink: 0
}

.footer-wave {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 4px solid var(--blue)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(0, 163, 224, 0.3))
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 15px
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all 0.3s
}

.footer-col ul li a:hover {
    color: var(--cyan);
    padding-left: 8px
}

.footer-col ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px
}

.footer-col ul li svg {
    stroke: var(--cyan);
    flex-shrink: 0
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center
}

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

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center
}

.modal.active {
    display: flex
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px)
}

.modal-container {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 32px;
    max-width: 600px;
    width: 90%;
    /* max-height: 90vh; */
    /* overflow-y: auto; */
    max-height: unset;   /* remove limit */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 163, 224, 0.2)
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 163, 224, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 3
}

.modal-close:hover {
    background: var(--blue)
}

.modal-close:hover svg {
    stroke: var(--white)
}

.modal-close svg {
    stroke: var(--blue);
    transition: all 0.3s
}

.modal-content {
    /* padding: 60px 50px 50px */
    padding: 50px 40px 40px;
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--dark)
}
.modal-container {
    height: auto;
    display: flex;
    flex-direction: column;
}
.modal-content>p {
    color: var(--gray);
    margin-bottom: 32px;
    font-size: 16px
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 163, 224, 0.03);
    border: 2px solid rgba(0, 163, 224, 0.15);
    border-radius: 12px;
    margin-bottom: 16px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 163, 224, 0.1)
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.modal-form textarea {
    resize: vertical
}

.modal-video-container {
    max-width: 1200px;
    width: 95%
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    border-radius: 24px;
    overflow: hidden
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1)
}

[data-animate].animated {
    opacity: 1
}

[data-animate="fade-up"] {
    transform: translateY(40px)
}

[data-animate="fade-up"].animated {
    transform: translateY(0)
}

[data-animate="slide-right"] {
    transform: translateX(-40px)
}

[data-animate="slide-right"].animated {
    transform: translateX(0)
}

[data-animate="slide-left"] {
    transform: translateX(40px)
}

[data-animate="slide-left"].animated {
    transform: translateX(0)
}

[data-animate="slide-up"] {
    transform: translateY(40px)
}

[data-animate="slide-up"].animated {
    transform: translateY(0)
}

[data-animate="zoom"] {
    transform: scale(0.9)
}

[data-animate="zoom"].animated {
    transform: scale(1)
}

@media(max-width:968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 60px 24px;
        transition: all 0.4s;
        border-right: 2px solid rgba(0, 163, 224, 0.15);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1)
    }

    .nav-links.active {
        left: 0
    }

    .nav-toggle {
        display: flex
    }

    .hero-wrapper,
    .story-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr
    }

    .hero-title {
        font-size: 48px
    }

    .page-title {
        font-size: 44px
    }

    .section-title {
        font-size: 40px
    }

    .timeline-wrapper {
        flex-direction: column;
        gap: 40px
    }

    .timeline-line {
        width: 4px;
        height: 80px;
        margin: 20px auto
    }

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

    .form-grid {
        grid-template-columns: 1fr
    }

    .service-content-full {
        max-width: 100%
    }

    .service-badge-num {
        position: static;
        margin-bottom: 24px
    }
}

@media(max-width:640px) {
    .hero-title {
        font-size: 36px
    }

    .page-title {
        font-size: 32px
    }

    .section-title {
        font-size: 32px
    }

    .contact-form-wrap,
    .modal-content {
        padding: 40px 28px
    }

    .service-block {
        padding: 40px 28px
    }
}

/**/
/* Service Row Layout */
.service-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 30px;
}

.col-6 {
    width: 100%;
}


/* Service Image */
/* .service-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
} */
/* .service-image {
    margin-right: 100px !important;
} */
 .service-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.service-image:hover {
    transform: translateY(-5px);
}

/* Button Styling */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 114, 255, 0.3);
}
.col-6:last-child {
    display: flex;
    justify-content: center;
}
/* Responsive Design */
/* @media (max-width: 768px) {
    .service-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .col-6 {
        width: 100%;
    }
    
    .service-list li {
        font-size: 0.95rem;
    }
} */
@media (max-width: 768px) {

    .service-row {
        flex-direction: column;
        gap: 30px;
    }

    .col-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .service-image {
        margin: 0;
    }
}

 /** end ***/
 /****/
 
/* Team Members Section - Oval Design */
.team-members-section {
    padding: 80px 0;
    background: var(--light);
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-member-card {
    text-align: center;
    transition: all 0.4s ease;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid rgba(0, 163, 224, 0.1);
}

.team-member-card:hover {
    border-color: var(--blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 163, 224, 0.2);
}

.team-member-oval {
    position: relative;
    margin-bottom: 25px;
}

.oval-frame {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(0, 163, 224, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.team-member-card:hover .oval-frame {
    border-color: var(--blue);
    box-shadow: 0 15px 40px rgba(0, 163, 224, 0.3);
    transform: scale(1.05);
}

.oval-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.team-member-card:hover .oval-frame::before {
    opacity: 1;
}

.oval-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover .oval-frame img {
    transform: scale(1.1);
}

.oval-number {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.4);
    z-index: 2;
    transition: all 0.4s ease;
}

.team-member-card:hover .oval-number {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 12px 30px rgba(0, 163, 224, 0.6);
}

.team-member-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.team-member-card:hover .team-member-info h3 {
    color: var(--blue);
}

.team-member-role {
    display: block;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.95rem;
    /* margin-bottom: 15px; */
    font-family: 'Inter', sans-serif;
}

.team-member-bio {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* .team-member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
} */

.team-member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--light);
    color: var(--text-light);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-member-social a:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-3px);
}

/* Blue focus effect */
.team-member-card:focus-within .oval-frame {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 163, 224, 0.2), 0 15px 40px rgba(0, 163, 224, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .oval-frame {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .team-members-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .oval-frame {
        width: 180px;
        height: 180px;
    }
}

/**nav underline remove**/
.navbar a {
    text-decoration: none;
}
/*arrow fix */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: auto;
    padding: 14px 32px;

    text-decoration: none;
    white-space: nowrap;
}

.btn-primary svg {
    flex-shrink: 0;
}

/**error**/
.form-group {
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}

.error-msg {
    color: red;
    font-size: 12px;
    margin-top: 4px;
    min-height: 14px;   
    display: block;
}
@media (max-height: 650px) {
   .modal-container {
      max-height: 90vh;
      overflow-y: auto;
   }
}
.error-msg {
    display: none !important;
}
input.error,
select.error,
textarea.error {
    border: 1px solid red;
}

/*Form submit toaster*/
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #66c2e8;
    color:white;
    padding: 14px 22px;
    border-radius: 6px;
    font-size: 14px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);

    transition: all 0.4s ease;

    z-index: 99999;
}

.toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
 /*select 2*/

/* ================================
   SELECT2 MATCH INPUT DESIGN
================================ */

/* ==============================
   MAKE SELECT2 SAME AS INPUT
============================== */

.select2-container {
    width: 100% !important;
}

/* Main Select Box */
.select2-container--default .select2-selection--single {

    height: 56px !important;
    border-radius: 16px !important;

    background: #f7fcff !important;
    border: 2px solid #ccecff !important;

    padding: 0 20px !important;

    display: flex !important;
    align-items: center !important;

    font-size: 15px;
    color: #777;

    box-shadow: none !important;
    transition: all 0.3s ease;
}

/* On Focus / Open */
.select2-container--default.select2-container--open 
.select2-selection--single {

    border-color: #00b6f1 !important;
    background: #ffffff !important;

    box-shadow: 0 0 0 4px rgba(0,182,241,0.12) !important;
}

/* Text Inside */
.select2-container--default 
.select2-selection__rendered {

    line-height: 56px !important;
    padding-left: 0 !important;

    color: #666 !important;
}

/* Placeholder */
.select2-container--default 
.select2-selection__placeholder {

    color: #999 !important;
}

/* Dropdown Arrow */
.select2-container--default 
.select2-selection__arrow {

    height: 100% !important;
    right: 18px !important;
}

/* Dropdown Box */
.select2-dropdown {

    border-radius: 16px !important;
    border: 2px solid #ccecff !important;

    overflow: hidden;
}

/* Dropdown Items */
.select2-results__option {

    padding: 14px 20px !important;
    font-size: 14px;
}

/* Hover */
.select2-results__option--highlighted {

    background: #00b6f1 !important;
    color: #fff !important;
}

/* Selected */
.select2-results__option--selected {

    /* background: #eaf7ff !important; */
     background: #a5bac7 !important;
}


/* Select2 error border */
.select2-selection.error {
    border: 1px solid red !important;
    box-shadow: 0 0 0 3px rgba(255,0,0,0.1);
}
/**phone**/
.phone-link {
    display: flex;          /* Keep row layout */
    align-items: center;    /* Vertical align */
    gap: 15px;              /* Space between icon & text */
    
    width: 100%;            /* Full row clickable */
    
    color: inherit;         /* Same text color */
    text-decoration: none;  /* Remove underline */
}

/* .phone-link:hover {
    background: rgba(0, 163, 224, 0.05);
    border-radius: 12px;
} */

.email-link {
     display: flex;          /* Keep row layout */
    align-items: center;    /* Vertical align */
    gap: 15px;              /* Space between icon & text */
    
    width: 100%;            /* Full row clickable */
    
    color: inherit;         /* Same text color */
    text-decoration: none;  /* Remove underline */
}

/**our leadership**/


.team-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.team-member-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.team-member-oval {
    text-align: center;
    margin-bottom: 20px;
}

.oval-frame {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f0f0f0;
}

.oval-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.team-member-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
    line-height: 1.3;
}

/* .team-member-role {
    display: block;
    font-size: 15px;
    color: #1da1f2;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 45px;
} */
.team-member-role {
    display: block;
    font-size: 15px;
    color: #1da1f2;
    font-weight: 500;
   
}
.team-member-bio {
    flex: 1;
    min-height: 20px;
}
/* 
.team-member-social {
    margin-top: auto; 
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
} */

/* Responsive Design */
@media (max-width: 1200px) {
    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-members-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-member-role {
        min-height: auto;
    }
}

/**What We Do about**/

/* Service Cards - Bottom Alignment Fix (Keep Your Existing Styles) */
.service-card {
    display: flex;
    flex-direction: column;
}

.service-arrow {
    width: 56px;
    height: 56px;
    background: rgba(0, 163, 224, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-left: auto;
    margin-top: auto; 
}
.footer-col ul li a {
    text-decoration: none;
}

/*center align index*/


/* Full width centered bottom section */

.hero-bottom-content h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.hero-bottom-content .hero-contact {
    display: flex;
    justify-content: center;
    width: 100%;
    background: rgba(0, 163, 224, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(0, 163, 224, 0.1);
    padding: 15px 30px;
    max-width: 400px;
    margin: 0 auto;
}


/***carousel*/
/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    margin: 40px 0;
    overflow: hidden;
    padding: 0 40px;
}

/* Carousel Track */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

/* Feature Items - Cards */
.feature-item {
    flex: 0 0 calc(33.333% - 14px);
    background: var(--white);
    padding: 30px 20px;
    border-radius: 24px;
    border: 2px solid rgba(0, 163, 224, 0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.feature-item:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 163, 224, 0.15);
}

/* Icon Styling for Font Awesome */
.feature-icon-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    opacity: 0.1;
    border-radius: 14px;
    transition: all 0.3s;
}

.feature-item:hover .icon-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

.feature-icon-wrap i {
    position: relative;
    z-index: 2;
    color: var(--blue);
    transition: all 0.3s;
    font-size: 30px;
}

.feature-item:hover .feature-icon-wrap i {
    color: var(--cyan);
}

/* Text Styling */
.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.4;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Navigation Arrows with Font Awesome */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--blue);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 20;
    opacity: 0.9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 5px;
}

.next-arrow {
    right: 5px;
}

.carousel-arrow i {
    font-size: 18px;
}

/* Navigation Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 163, 224, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover,
.dot.active {
    background: var(--blue);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .feature-item {
        flex: 0 0 calc(33.333% - 14px);
        padding: 25px 18px;
    }
    
    .feature-item h3 {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .feature-item {
        flex: 0 0 calc(50% - 10px);
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 30px;
    }
    
    .feature-item {
        flex: 0 0 calc(100% - 20px);
        min-height: 240px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
    }
    
    .carousel-arrow i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .carousel-arrow {
        display: none;
    }
}

/*about carousel*/

/* About Values Carousel */
.values-carousel {
    position: relative;
    width: 100%;
    margin: 40px 0;
    overflow: hidden;
    padding: 0 40px;
}

.values-carousel .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

/* Value Items - Cards */
.values-carousel .value-item {
    flex: 0 0 calc(33.333% - 14px); /* Show 3 cards */
    background: var(--white);
    padding: 35px 25px;
    border-radius: 24px;
    border: 2px solid rgba(0, 163, 224, 0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.values-carousel .value-item:hover {
    border-color: var(--blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 163, 224, 0.15);
}

/* Value Number Styling */
.values-carousel .value-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: rgba(0, 163, 224, 0.15);
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.values-carousel .value-item:hover .value-num {
    color: rgba(0, 163, 224, 0.3);
}

/* Text Styling */
.values-carousel .value-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.4;
}

.values-carousel .value-item p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Navigation Arrows */
.values-carousel .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--blue);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 20;
    opacity: 0.9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.values-carousel .carousel-arrow:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.values-carousel .prev-arrow {
    left: 5px;
}

.values-carousel .next-arrow {
    right: 5px;
}

.values-carousel .carousel-arrow i {
    font-size: 18px;
}

/* Navigation Dots */
.values-carousel .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.values-carousel .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 163, 224, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.values-carousel .dot:hover,
.values-carousel .dot.active {
    background: var(--blue);
    transform: scale(1.2);
}

/* Responsive for about carousel */
@media (max-width: 1200px) {
    .values-carousel .value-item {
        flex: 0 0 calc(33.333% - 14px);
        padding: 30px 20px;
    }
    
    .values-carousel .value-item h3 {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .values-carousel .value-item {
        flex: 0 0 calc(50% - 10px); /* Show 2 cards on tablet */
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .values-carousel {
        padding: 0 30px;
    }
    
    .values-carousel .value-item {
        flex: 0 0 calc(100% - 20px); /* Show 1 card on mobile */
        min-height: 240px;
        padding: 25px 20px;
    }
    
    .values-carousel .value-item h3 {
        font-size: 20px;
    }
    
    .values-carousel .value-item p {
        font-size: 14px;
    }
    
    .values-carousel .carousel-arrow {
        width: 35px;
        height: 35px;
    }
    
    .values-carousel .carousel-arrow i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .values-carousel .carousel-arrow {
        display: none;
    }
}
/**service background***/

/* Image stretches to fill */
.service-image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 163, 224, 0.2);
    display: block;
}
.service-img-box {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,163,224,0.08), rgba(0,212,255,0.08));
    border: 2px solid rgba(0,163,224,0.15);
    box-shadow: 0 15px 40px rgba(0,163,224,0.15);
}

.service-img-box .service-image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    margin: 0;
}
/** team member center***/
/* Remove ALL old .team-member-social rules and replace with this ONE */
.team-member-social {
    display: flex;
    flex-direction: column;  /* flag on top, linkedin below */
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 10px;
}

.social-flag {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-flag img {
    width: 36px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background: var(--blue) !important;  /* always blue */
    color: white !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--blue-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 163, 224, 0.4);
}
.feature-badge {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}
/*service hover*/
.feature-badge {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-badge:hover {
    background: #020D25;   /* dark overlay on hover */
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.feature-badge a {
    text-decoration: none;
    color: inherit;
}