﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary: #0f2f2c;
    --accent: #00b3bd;
    --accent-dark: #2aa495;
    --accent-soft: #e0f7f5;
    --text: #0f172a;
    --muted: #64748b;
    --bg: #f4fdfc;
    --card: #ffffff;
    --radius: 20px;
    --shadow: 0 20px 50px rgba(0,0,0,.08);
    --transition: all 0.3s ease;
    /* --font: 'Inter', sans-serif; */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font);
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
     font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}



/* Headings */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
 font-size: calc(1.4rem + 1vw);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 3.5vw, 2rem);
}

h5 {
  font-size: clamp(1.125rem, 3vw, 1.75rem);
}

h6 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}

/* Paragraph */
p {
  font-size: clamp(1rem, 2vw, 1.125rem);
     color: #4b5563;
	     line-height: 1.78;
    margin-bottom: 30px;
}

/* Span */
span {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
}
header {
    background: var(--card);
    padding: 1rem 2rem;
    border-bottom: 1px solid #e5e7eb;

    position: sticky;
    top: 0;
    z-index: 1000;
}

/* shadow on scroll */
header.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.header-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo img {
    height: 40px;
}

/* NAV */
nav ul {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text);
    position: relative;
}

/* ACTIVE + HOVER */
nav a:hover,
nav a.active {
    color: var(--accent);
}

nav a.active::after,
nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* CLOSE BUTTON */
.close-btn {
    display: none;
}

/* MOBILE */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100dvh;
        background: var(--card);
        box-shadow: -4px 0 16px rgba(0,0,0,0.15);
        transition: right 0.4s ease;
        z-index: 999;

        display: flex;
        flex-direction: column;
    }

    nav.active {
        right: 0;
    }

    .nav-header {
        display: flex;
        justify-content: flex-end;
        padding: 1rem 2rem;
        background: #34b7a71c;
    }

    nav.active .close-btn {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
    }

    nav ul {
        padding: 1rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}


/* HERO SECTION */
.hero {
    background: #e0f7f5;
    padding: 80px 20px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT SIDE */
.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

    .hero-content p {
        
        color: #4b5563;
        font-size: 1.18rem;
        line-height: 1.78;
        margin-bottom: 30px;
    }

/* BUTTONS */
.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-primary {
   background: linear-gradient(to right, #00b3bd, #00b3bd);
    color: #fff;
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    border: 2px solid #00b3bd;
    color: #00b3bd;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #00b3bd;
    color: #fff;
}

/* RIGHT SIDE */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
}

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

/* FLOATING BADGE */
.client-badge {
    position: absolute;
    bottom: 20px;
    left: -40px;
    background: #111827;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
}

.client-badge span {
    font-size: 18px;
    font-weight: bold;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .image-wrapper {
        width: 320px;
        height: 380px;
    }

    .client-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero {
        padding: 60px 15px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
        color: #4b5563;
        font-size: 1.18rem;
        line-height: 1.78;
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .image-wrapper {
        width: 260px;
        height: 320px;
        display:none;
    }
}


/*about css end*/

/* ====================== HOME ABOUT / OUR STORY SECTION ====================== */
.about-container {
    max-width: 1280px;
    margin: auto;
    padding: 110px 20px 130px;
    background: var(--bg);
}

.small-title {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 1.05rem;
}

.about-container h2 {
    line-height: 1.15;
    margin-bottom: 0px;

}

/* Layout */
.content {
    display: flex;
    gap: 75px;
    align-items: center;
    flex-wrap: wrap;
}

/* Left Image - Premium & Clean */
.left {
    flex: 1;
    position: relative;
}

    .left img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 30px 70px rgba(0, 179, 189, 0.20);
        transition: transform 0.7s ease;
    }

    .left:hover img {
        transform: scale(1.025);
    }

/* Animated Circle - Refined */
.circle {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 152px;
    height: 152px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(0, 179, 189, 0.40);
    z-index: 2;

}

.circle-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 14s linear infinite;
}

    .circle-text span {
        position: absolute;
        left: 50%;
        transform-origin: 0 76px;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 2px;
    }

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Right Content */
.about-right {
    flex: 1;
    
}

    .about-right p {
        color: #4b5563;
        font-size: 1.18rem;
        line-height: 1.78;
        margin-bottom: 30px;
    }

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0 45px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.06rem;
    line-height: 1.4;
}

    .feature::before {
        content: "→";
        color: var(--accent);
        font-size: 1.35rem;
        margin-top: 2px;
        flex-shrink: 0;
    }

.btn-primary {
    background: linear-gradient(to right, var(--accent), var(--accent-dark));
    color: #fff;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(0, 179, 189, 0.32);
    transition: var(--transition);
}

    .btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 45px rgba(0, 179, 189, 0.45);
    }

/* Responsive */
@media (max-width: 992px) {
    .content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .circle {
        width: 118px;
        height: 118px;
        bottom: -18px;
        right: -18px;
        font-size: 22px;
		display:none;
    }

    .features {
        grid-template-columns: 1fr;
    }
	.about-container{
		padding: 70px 25px 70px;
	}
.about-container h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.hero-actions .btn-primary {
	display:unset;
}
	
}


/* ====================== WHY TRANSFORMATION SECTION ====================== */
.why-transformation {
    padding: 110px 20px 130px;
    background: linear-gradient(180deg, #f4fdfc, #eef7f5);
}

.why-header {
    max-width: 820px;
    margin: 0 auto 80px;
    text-align: center;
}

    .why-header .small-title {
        color: var(--accent);
        font-weight: 600;
        margin-bottom: 14px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

.why-transformation h2 {
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--primary);
}

.why-intro {
    font-size: 1.18rem;
    color: #4b5563;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Transformation Container */
.transformation-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.transformation-column {
    flex: 1;
    min-width: 320px;
    background: white;
    border-radius: 28px;
    padding: 40px 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

    .transformation-column.before:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(239, 68, 68, 0.15);
    }

    .transformation-column.after:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0, 179, 189, 0.25);
    }

.column-header {
    margin-bottom: 32px;
}

.status-badge {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
}

    .status-badge.before {
        background: #fee2e2;
        color: #ef4444;
    }

    .status-badge.after {
        background: linear-gradient(135deg, var(--accent-soft), #c5f0eb);
        color: var(--accent-dark);
    }

/* Items */
.pain-item, .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

    .pain-item:last-child, .benefit-item:last-child {
        margin-bottom: 0;
    }

    .pain-item i, .benefit-item i {
        font-size: 28px;
        width: 36px;
        flex-shrink: 0;
    }

    .pain-item i {
        color: #ef4444;
    }

    .benefit-item i {
        color: var(--accent);
    }

    .pain-item p, .benefit-item p {
        margin: 0;
        font-size: 1.08rem;
        line-height: 1.65;
        color: #374151;
    }

/* Arrow */
.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    color: var(--accent);
    font-size: 2.2rem;
    font-weight: 700;
    gap: 8px;
}

    .transformation-arrow span {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--accent);
    }

/* CTA */
.why-cta {
    margin-top: 80px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .transformation-container {
        flex-direction: column;
        align-items: center;
    }

    .transformation-arrow {
        flex-direction: row;
        gap: 16px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {

}


/*testimonial-section css*/


.testimonial-section {
      padding: unset !important;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      margin-top: 1.7rem;
      margin-bottom: 1.7rem;
}

    .testimonial-section h2 {
        font-size: 2.2rem;
           color: var(--primary);
    }

.testimonial-container {
    position: relative;
    min-height: 150px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    text-align: center;
}

    .testimonial-card.active {
        opacity: 1;
    }

    .testimonial-card blockquote {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
        color: var(--text);
    }

    .testimonial-card span {
        display: block;
        color: var(--accent);
        font-weight: 600;
    }


/*testimonial-section css end*/

/*contact-section css */

.contact-section {
    margin: 3rem 2rem;
}

.contact-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form-wrapper, .contact-info-wrapper {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .contact-form-wrapper:hover, .contact-info-wrapper:hover {
        transform: translateY(-4px);
    }

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

    .contact-form label i {
        margin-right: 0.5rem;
        color: var(--accent-dark);
    }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
}

.contact-form button {
    background: var(--accent);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

    .contact-form button:hover {
        background: var(--accent-dark);
    }

.contact-info-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent-dark);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}


    .social-icons a {
        color: var(--accent-dark);
        font-size: 1.2rem;
    }

        .social-icons a:hover {
            color: var(--accent);
            transform: scale(1.1);
        }

.map-wrapper {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .map-wrapper iframe {
        width: 100%;
        height: 400px;
        border: 0;
    }
/*contact-section css end*/
 
 /*team-metrics css end*/
.team-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

    .team-metrics div {
        background: var(--card);
        padding: 1.5rem 2rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        text-align: center;
        min-width: 200px;
    }

  /*team-metrics css end*/
  
  
.service-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.6);
    display: none;
    z-index: 9998;
}

.service-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 92%;
    max-width: 1100px;
    max-height: 90vh;
    background: var(--card);
    border-radius: 32px;
    padding: 3rem;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
    z-index: 9999;
}

    .service-modal.active {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, -50%) scale(1);
    }

    .service-modal .close {
        position: absolute;
        top: 22px;
        right: 28px;
        font-size: 1.6rem;
        cursor: pointer;
    }

#industry-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

    .modal-close:hover {
        color: var(--accent);
    }


.modal-icon {
    font-size: 2.8rem;
    color: var(--accent-dark);
}

.modal-benefits li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

    .modal-benefits li::before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        color: var(--accent);
        font-size: 1.2rem;
    }


.progress-bar {
    /* width: 80%; */
    background: #e0f7f5;
    border-radius: 50px;
    height: 35px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.progress-fill {
    background: var(--accent);
    height: 100%;
    width: 0%;
    text-align: center;
    color: white;
    font-weight: 600;
    line-height: 35px;
    transition: width 1.8s ease;
}

.pie-chart {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



.why-mobile-content {
    background: var(--card);
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
    padding: 2.5rem 2rem 3rem;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    overflow-y: auto;
    position: relative;
}

.why-mobile-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    color: var(--muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .why-mobile-close:hover {
       color: var(--accent);
    }


@media (max-width: 768px) {


    .why-container {
        flex-direction: column;
    }
	
	
 
}

@media (max-width: 480px) {

    .testimonial-section h2 {
        font-size: 2rem;
    }

  

    .contact-section {
        margin: 2rem 1rem;
    }

  
}

.modal-toggle {
    display: none;
}

.iframe-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
}

#privacy-toggle:checked ~ #privacy-modal,
#terms-toggle:checked ~ #terms-modal {
    display: flex;
}

.modal-inner {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 90vh;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
}

    .modal-inner iframe {
        flex: 1;
        width: 100%;
        border: none;
    }

.bottom-close-btn {
    display: block;
    background: #34b7a7;
    color: white;
    text-align: center;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .bottom-close-btn:hover {
        background: #2aa495;
    }

@media (max-width: 768px) {
    .modal-inner {
        width: 96%;
        max-width: none;
        height: 96vh;
        border-radius: 12px;
    }

    .bottom-close-btn {
        padding: 1.4rem;
        font-size: 1.2rem;
    }
}



.why, .stats, .industries, .testimonial-section, .final-cta {
    padding: clamp(40px, 8vw, 120px) clamp(20px, 6vw, 80px);
}


/* ============================= */


.why-detail-desktop {
    animation: fadeInUp 0.5s ease;
}

.why-metric {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 20px rgba(52,183,167,0.3);
}




.why-detail-section p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Soft Hover Lift */


/* ============================= */
/* ANIMATION */
/* ============================= */

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

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

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


/* ============================= */
/* ENTERPRISE STATS SECTION */
/* ============================= */

.stats {
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #edf5f3, #e3efec);
    overflow: hidden;
	
}

/* subtle background glow */
.stats::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52,183,167,0.12), transparent 70%);
    top: -150px;
    right: -150px;
    z-index: 0;
}

.stats-grid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* ============================= */
/* GLASS CARD */
/* ============================= */

.stat-card {
    display: flex;
    align-items: center;
    margin-top: 30px;
	transition: all 0.4s ease;
}


.counter-img{
    height: 80px;
    width: 80px;
    line-height: 95px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0px 0px 51px 0px rgba(0, 0, 0, 0.09);
    border-radius: 10px;	
}


.counter-content{
    margin-left: 20px;	
}

/* Smooth Hover Lift */

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.10);
		    background: #fff;
}

/* ============================= */
/* ICON */
/* ============================= */

.stat-card i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

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

/* ============================= */
/* NUMBER */
/* ============================= */

.stat-card strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
}

/* ============================= */
/* TEXT */
/* ============================= */

.stat-card span {
    font-size: 1rem;
    color: #5f6b7a;
    font-weight: 500;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

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

@media (max-width: 600px) {

    .stats {
        padding: 4rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }


    .stat-card strong {
        font-size: 2.3rem;
    }
	
	.choose-qubixl-card-grid {
        grid-template-columns: 1fr!important;
    }
}


/* ===================================== */
/* INDUSTRIES SECTION – ENTERPRISE UI */
/* ===================================== */

.industries {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f7faf9, #eef4f2);
    text-align: center;
}

.industries h2 {
    color: var(--primary);
    margin-bottom: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* GRID */

.industry-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

/* CARD STYLE (replacing simple pills) */

.industry {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    padding: 2rem 1.5rem;
    border-radius: 22px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	    cursor: pointer;
}

.industry:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, rgba(52,183,167,0.15), rgba(52,183,167,0.08));
    color: var(--primary);
}

.service-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

.service-features li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}
.service-features{
    list-style: none;
}
/* ===================================== */
/* MODAL – PREMIUM ENTERPRISE STYLE */
/* ===================================== */

#industry-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 30, 0.55);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 9999;
    animation: fadeIn 0.3s ease forwards;
}

/* OPEN STATE */
#industry-modal.active {
    display: flex;
}

/* MODAL CARD */

#industry-modal .modal-content {
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 26px;
    padding: 3rem;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.25);
    position: relative;
    animation: slideUp 0.35s ease forwards;
    margin: 0 auto;
}

/* SCROLLBAR */

#industry-modal .modal-content::-webkit-scrollbar {
    width: 6px;
}
#industry-modal .modal-content::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}

/* CLOSE BUTTON */

#industry-modal .close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.6rem;
    cursor: pointer;
    color: #999;
    transition: 0.3s ease;
}

#industry-modal .close:hover {
    color: var(--accent);
}

/* MODAL TITLE */

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.modal-title i {
    color: var(--accent);
    font-size: 1.4rem;
}

/* SECTIONS */

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

.modal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--primary);
    position: relative;
}

.modal-section h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: var(--accent);
    display: block;
    margin-top: 6px;
    border-radius: 5px;
}

.modal-section p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* BENEFITS LIST */

.modal-benefits {
    /* padding-left: 1.2rem; */
    list-style: none;
}

.modal-benefits li {
    margin-bottom: 0.5rem;
    color: #374151;
}

/* STATS GRID */

.modal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.modal-stats div {
    background: linear-gradient(135deg, rgba(52,183,167,0.12), rgba(52,183,167,0.05));
    padding: 1rem;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

/* GRAPH AREA */

.modal-graph {
    margin-top: 2rem;
    background: linear-gradient(to right, rgba(52,183,167,0.08), transparent);
    border-radius: 16px;
}


/* ===================================== */
/* ANIMATIONS */
/* ===================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

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

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

@media (max-width: 600px) {

    .industries {
        padding: 4rem 1.5rem;
    }

    .industries h2 {
        font-size: 2.1rem;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    #industry-modal .modal-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .modal-stats {
        grid-template-columns: 1fr;
    }

    .modal-title {
        font-size: 1.4rem;
    }
}


/* ===================================== */
/* FINAL CTA – REFINED ENTERPRISE STYLE */
/* ===================================== */

.final-cta {
    position: relative;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 4.5rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    overflow: hidden;

    background: linear-gradient(135deg, #e8f5f3, #dff2ef);
    border: 1px solid rgba(52,183,167,0.15);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.06);

    transition: all 0.3s ease;
}

/* subtle accent top line */

.final-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
        background: linear-gradient(to right, #00b3bd, #00b3bd);
}

/* Headline */

.final-cta h2 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: -0.4px;
    line-height: 1.25;
}

/* Button */

.final-cta a {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
   background: linear-gradient(to right, #00b3bd, #00b3bd);
    box-shadow: 0 10px 25px rgba(52,183,167,0.25);
    transition: all 0.3s ease;
    color: #fff;
}

/* Hover */

.final-cta a:hover {
    transform: translateY(-4px);
    box-shadow:0 18px 35px rgba(52,183,167,0.35);
        
}

/* Slight container lift */

.final-cta:hover {
    transform: translateY(-3px);
}



/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media (max-width: 992px) {

    .final-cta {
        padding: 3.8rem 2rem;
        margin: 4rem 1.5rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {

    .final-cta {
        padding: 3rem 1.5rem;
        margin: 3rem 1rem;
        border-radius: 18px;
    }

    .final-cta h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .final-cta a {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* all modal css*/

.modal-content {
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 26px;
    
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: slideUp 0.35s ease forwards;
    margin: 0 auto;
}


footer {
background: linear-gradient(to right, #00b3bd, #00b3bd);  
  color: #fff;
}

/* TOP GRID */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 50px 8%;
	display:none;
}

/* LOGO SECTION */
.footer-logo h2 {
    font-size: 28px;
    color: #fff;
}

.footer-logo span {
    color: #00b3bd;
}

.footer-logo p {
    margin: 15px 0;
    line-height: 1.6;
    font-size: 14px;
}

/* SOCIAL ICONS */
.social-icons i {
    margin-right: 10px;
    border: 1px solid #fff;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
	    color: #fff;
}

.social-icons ul li{
	list-style:none;
}
/* LINKS */
.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

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

.footer-links ul li {
    margin: 10px 0;
    font-size: 14px;
    cursor: pointer;
}

.footer-links ul li a{
	text-decoration:none;
	color:#fff;
}

.footer-links ul li:hover {
    color: #fff;
}

/* CONTACT */
.footer-contact p {
    font-size: 14px;
    margin: 8px 0;
}

.footer-contact p a{
	text-decoration:none;
	color:#fff;	
}

/* NEWSLETTER */
.newsletter-box {
    display: flex;
    margin-top: 10px;
}

.newsletter-box input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 25px 0 0 25px;
}

.newsletter-box button {
    background: #64748b;
    border: none;
    padding: 10px 15px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    color: #fff;
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid #ffffff14;
    display: flex;
    justify-content: space-between;
    padding: 15px 8%;
    font-size: 14px;
    flex-wrap: wrap;
}
.footer-bottom p{
	font-size:16px;
	color:#fff;
	    margin-bottom: unset;
}
.footer-bottom a {
    margin-left: 15px;
    cursor: pointer;
}

/* MODAL */
.modal-toggle {
    display: none;
}

.iframe-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-inner {
    width: 80%;
    height: 80%;
    background: #fff;
    position: relative;
}

.modal-inner iframe {
    width: 100%;
    height: 100%;
}

.bottom-close-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #00b3bd;
    padding: 8px 15px;
    cursor: pointer;
    color: #fff;
}

/* TOGGLE FUNCTION */
#privacy-toggle:checked ~ #privacy-modal,
#terms-toggle:checked ~ #terms-modal {
    display: flex;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


#why-mobile-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.why-mobile-content {
    background: #fff;
    width: 90%;
    max-width: 650px;
    padding: 30px;
    border-radius: 12px;
    max-height: 90vh;
    overflow-y: auto;
}



.why-detail-section h3{
font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--primary);
    position: relative;
}

.social-icons ul{
    display: flex;
    align-items: center	
} 


/*contact*/

        .contact-page .page-header {
            text-align: center;
            padding: 6rem 2rem 4rem;
            background: linear-gradient(rgb(106 139 135), rgb(6 67 62 / 85%)), url('2675425.jpg') center/cover no-repeat;
            color: white;
        }

            .contact-page .page-header h1 {
                font-size: clamp(2.5rem, 5vw, 3.5rem);
                margin-bottom: 1rem;
            }

            .contact-page .page-header p {
                font-size: 1.2rem;
                max-width: 800px;
                margin: 0 auto;
                opacity: 0.95;
                color: white;
            }

        .contact-page .contact-wrapper {
             display: grid;
            grid-template-columns: 0.75fr 1.25fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: stretch;
         padding: 4rem 2rem;
            background: linear-gradient(to bottom, #f9fdfc, #eef4f3);
            position: relative;
        }

        .contact-page .contact-info {
            background: var(--card);
            border-radius: var(--radius);
            padding: 3.5rem;
            box-shadow: var(--shadow);
            height: fit-content;
        }

            .contact-page .contact-info h2 {

                    color: var(--primary);
                    font-weight: 700;
            }

            .contact-page .contact-info .intro {
                font-size: 1.1rem;
                color: var(--text-muted);
                margin-bottom: 3rem;
                line-height: 1.7;
            }

        .contact-page .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.8rem;
            margin-bottom: 2.8rem;
        }

            .contact-page .contact-item i {
                font-size: 2.2rem;
                color: var(--accent);
                margin-top: 0.4rem;
            }

            .contact-page .contact-item div h4 {
                font-size: 1.3rem;
                margin-bottom: 0.5rem;
                color: var(--primary);
            }

            .contact-page .contact-item div p,
            .contact-page .contact-item div a {
                font-size: 1.1rem;
                color: var(--text-muted);
                line-height: 1.6;
                margin: 0.4rem 0;
            }

            .contact-page .contact-item div a {
                color: var(--accent);
                text-decoration: none;
                font-weight: 600;
            }

                .contact-page .contact-item div a:hover {
                    text-decoration: underline;
                }

        .contact-page .contact-form {
       background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12), 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
        }

            .contact-page .contact-form h2 {
                color: var(--primary);
                font-weight: 700;
            }

            .contact-page .contact-form .subtitle {
                font-size: 1.1rem;
                color: var(--text-muted);
                margin-bottom: 2.5rem;
            }

            .contact-page .contact-form form {
                display: flex;
                flex-direction: column;
            }

        .contact-page .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
        }

        .contact-page .contact-form input,
        .contact-page .contact-form select,
        .contact-page .contact-form textarea {
    width: 100%;
    outline: none;
    border: 1px solid #D1D5DB;
    background: #ffffff;
    border-radius: 5px;
    padding: 16px 20px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #404040;
    margin-bottom: 35px;
    transition: all 0.3s ease
        }

            .contact-page .contact-form input:focus,
            .contact-page .contact-form select:focus,
            .contact-page .contact-form textarea:focus {
                outline: none;
                border-color: var(--accent);
                background: white;
                box-shadow: 0 0 0 4px rgba(52,183,167,0.15);
            }

        .contact-page .contact-form textarea {
            min-height: 133px;
            resize: vertical;
        }

        .contact-page .contact-form button {
          display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
     padding: 1.2rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 20px rgba(52, 183, 167, 0.3);
        }

            .contact-page .contact-form button:hover {
                background: var(--accent-dark);
                transform: translateY(-3px);
                box-shadow: 0 10px 25px rgba(52,183,167,0.3);
            }

        .contact-page .map-section {
            padding: 6rem 2rem;
            background: var(--bg-soft);
        }

        .contact-page .map-container {
            max-width: 1400px;
            margin: 0 auto;
            height: 520px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        #toast {
            visibility: hidden;
            min-width: 320px;
            background: #333;
            color: #fff;
            text-align: center;
            border-radius: 12px;
            padding: 18px;
            position: fixed;
            z-index: 1000;
            left: 50%;
            bottom: 40px;
            transform: translateX(-50%);
            font-size: 1.1rem;
            opacity: 0;
            transition: opacity 0.6s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

            #toast.show {
                visibility: visible;
                opacity: 1;
            }


            .contact-form::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
                background: linear-gradient(to right, #00b3bd, #00b3bd);
            border-top-left-radius: 26px;
            border-top-right-radius: 26px;
}

        @media (max-width: 992px) {
            .contact-page .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .contact-page .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .contact-page .page-header {
                padding: 5rem 1.5rem 3rem;
            }

            .contact-page .contact-wrapper {
                padding: 0 1.5rem;
            }

            .contact-page .contact-info,
            .contact-page .contact-form {
                padding: 3rem 2rem;
            }

            .contact-page .contact-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 1.2rem;
            }

                .contact-page .contact-item i {
                    font-size: 2.8rem;
                }

            .contact-page .map-container {
                height: 400px;
            }

            .contact-page .contact-form button {
                width: 100%;
                padding: 1.4rem;
            }
        }
		
		/*career*/
		
		        .page-header {
            position: relative;
            overflow: hidden;
			text-align: center;
			padding: 6rem 2rem 4rem;
			background: linear-gradient(rgb(106 139 135), rgb(6 67 62 / 85%)), url(C2.jpg) center / cover no-repeat;
			color: white;
        }

         
            .page-header img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                z-index: 0;
            }

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

       

        .careers-section {
            padding: 5rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .careers-intro {
            text-align: center;
            margin-bottom: 5rem;
        }

            .careers-intro h2 {
                     text-align: center;
                    color: var(--primary);
                    font-weight: 700;
            }

            .careers-intro p {
             font-size: 1rem;
            line-height: 1.7;
            color: #4b5563;
            }

        .benefits-grid {
         margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
        }

    .benefit-card {
    background: #fff;
    padding: 2.2rem 1.8rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
        }
  .benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
        background: linear-gradient(to right, #00b3bd, #00b3bd);
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
}

            .benefit-card:hover {
                transform: translateY(-15px);
                box-shadow: 0 30px 60px rgba(52,183,167,0.2);
            }

            .benefit-card i {
             font-size:26px;
                    color: var(--accent);
                margin-bottom: 1rem;
            }

            .benefit-card h3 {
                font-size: 1.25rem;
                color: var(--primary);
                margin-bottom: .8rem;
            }

            .benefit-card p{
             font-size: .92rem;
            line-height: 1.6;
            color: var(--text);
            }

        .team-culture {
            background: var(--bg-soft);
            padding: 5rem 2rem;
            text-align: center;
        }

            .team-culture h2 {
            text-align: center;
            color: var(--primary);
            margin-bottom: 3rem;
            font-weight: 700;
            }

        .team-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

            .team-images img {
                width: 100%;
                border-radius: var(--radius);
                box-shadow: var(--shadow);
                transition: transform 0.4s ease;
            }

                .team-images img:hover {
                    transform: scale(1.05);
                }

        .open-positions {
            padding: 5rem 2rem;
            text-align: center;
        }

            .open-positions h2 {
             text-align: center;
            color: var(--primary);
            margin-bottom: 2rem;
            font-weight: 700;
            }

            .open-positions p {
                 font-size: 1rem;
                line-height: 1.7;
                color: #4b5563;
          
            }

        .application-form {
            max-width: 1000px;
            margin: 0 auto 6rem;
            background: var(--card);
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid #D1D5DB;
        }

        #position-select{
                width: 100%;
    outline: none;
    border: 1px solid #D1D5DB;
    background: #ffffff;
    border-radius: 5px;
    padding: 16px 20px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #404040;
    margin-bottom: 35px;
    transition: all 0.3s ease;
        }

            .application-form h2 {
               text-align: center;
                color: var(--primary);
                margin-bottom: 2rem;
                font-weight: 700;
            }

            .application-form form {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .application-form .full-width {
                grid-column: 1 / -1;
            }

            .application-form input,
            .application-form textarea {
               width: 100%;
                outline: none;
                border: 1px solid #D1D5DB;
                background: #ffffff;
                border-radius: 5px;
                padding: 16px 20px;
                font-family: "Inter", sans-serif;
                font-size: 16px;
                font-weight: 500;
                color: #404040;
                appearance: none;
                resize: none;
                margin-bottom: 35px;
                transition: all 0.3s ease;
            }

                .application-form input:focus,
                .application-form textarea:focus {
                    outline: none;
                    border-color: var(--accent);
                    background: white;
                    box-shadow: 0 0 0 5px rgba(52,183,167,0.15);
                }

            .application-form textarea {
                min-height: 180px;
                resize: vertical;
            }

            .application-form button {
                grid-column: 1 / -1;
                    background: linear-gradient(to right, #00b3bd, #00b3bd);
                color: white;
                border: none;
                padding: 1.6rem;
                border-radius: 999px;
                font-size: 1.3rem;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
            }

                .application-form button:hover {
                 background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(52, 183, 167, 0.3);
    color: var(--accent);
    border: 1px solid var(--accent);
                }

        @media (max-width: 992px) {
            .application-form form {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .page-header {
                padding: 6rem 1.5rem 4rem;
            }

            .careers-section, .team-culture, .open-positions {
                padding: 4rem 1.5rem;
            }

            .application-form {
                padding: 3rem 2rem;
            }
			
		.benefits-grid {
        grid-template-columns: 1fr;
    }
        }
		
		/*news*/



        .events-section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-intro {
            text-align: center;
            margin-bottom: 4rem;
        }

            .section-intro h2 {
                 text-align: center;
                color: var(--primary);
                font-weight: 700;
                letter-spacing: -0.5px;
            }

            .section-intro p {
                font-size: 1.2rem;
                color: var(--text-muted);
                max-width: 900px;
                margin: 0 auto;
                line-height: 1.8;
            }

        .events-grid {
            display: grid;
               grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
        }

        .event-card {
            background: var(--card);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
        }

            .event-card:hover {
                transform: translateY(-12px);
                box-shadow: 0 30px 60px rgba(52,183,167,0.2);
            }

        .event-image {
            height: 220px;
            overflow: hidden;
        }

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

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

        .event-content {
     padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
        }


        .even_date_location{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0px;
        }

        .even_date_location span {
        font-size: 13px;
        }

         .even_date_location i{
            font-size: 12px;
         }
        .event-date {
         font-size: .85rem;
         color: var(--accent);
         font-weight: 600;
         margin-bottom: 0rem;

        }

        .event-location {
            color: var(--text-muted);
           font-size: .85rem;
            font-weight: 600;
            margin-bottom: 0rem;
            letter-spacing: .5px;
        }

        .event-card h3 {
       font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: .3rem;
        }

        .event-card p {
     font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.4rem;
        }

        .event-actions {
           display: flex;
            gap: 9px;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

            .event-actions a {
            display: inline-block;
            background: linear-gradient(to right, #00b3bd, #00b3bd);
            color: #fff;
            padding: 10px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 1.8rem;
            transition: .3s;
            text-decoration: none;
            }

                .event-actions a:hover {
                  background: linear-gradient(to right, #00b3bd, #00b3bd);
                    transform: translateY(-3px);
                }

                .event-actions a.secondary {
                    background: transparent;
                    color: var(--accent);
                    border: 1px solid var(--accent);
                    display: inline-block;
                    padding:10px;
                    border-radius: 50px;
                    font-weight: 600;
                    text-decoration: none;
                    transition: .3s;

                    
                }

                    .event-actions a.secondary:hover {
                        background: var(--accent);
                        color: white;
                    }

        .news-section {
            background: var(--bg-soft);
            padding: 5rem 2rem;
        }

        .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1rem;
        max-width: 1300px;
        margin: auto;
        }

        .news-card {
            background: var(--card);
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            position: relative;
        }

            .news-card:hover {
                transform: translateY(-10px);
            }

            .news-card .news-date {
                font-size: 0.95rem;
                color: var(--accent);
                margin-bottom: 1rem;
            }

            .news-card h3 {
                font-size: 1.25rem;
                color: var(--primary);
                margin-bottom: .8rem;
            }

            .news-card p {
                font-size: 1.05rem;
                color: var(--text-muted);
                line-height: 1.7;
            }

            .news-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #00b3bd, #00b3bd);
            border-top-left-radius: 26px;
            border-top-right-radius: 26px;
          }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

            .modal.active {
                display: flex;
            }

        .modal-content {
            background: white;
            border-radius: 24px;
            width: 90%;
            max-width: 1000px;
            height: 90vh;
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .modal-header {
            background: var(--accent);
            color: white;
               padding: 0.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
			    border-radius: 5px;
        }

            .modal-header h2 {
                margin: 0;
                font-size: 1.8rem;
            }

        .modal-buttons {
            display: flex;
            gap: 1rem;
        }

            .modal-buttons button {
                background: white;
                color: var(--accent);
                border: none;
                padding: 0.8rem 1.8rem;
                border-radius: 999px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
            }

                .modal-buttons button:hover {
                    background: var(--accent-dark);
                    color: white;
                }

                .modal-buttons button#print-btn {
                    background: var(--accent);
                    color: white;
                }

                    .modal-buttons button#print-btn:hover {
                        background: var(--accent-dark);
                    }

        .modal-body {
            flex: 1;
            overflow: hidden;
        }

            .modal-body iframe {
                width: 100%;
                height: 100%;
                border: none;
            }

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

           .even_date_location{
                flex-direction: column;
                    align-items: unset;
           }

            .event-actions {
                flex-direction: column;
                gap: unset;
                align-items: unset;
            }

                .event-actions a {
                    justify-content: center;
                    text-align: center;
                }

            .modal-content {
                height: 95vh;
                width: 100%;
            }

            .modal-header {
                padding: 1rem;
            }

            .modal-buttons {
                flex-direction: column;
            }
        }
		
		
	

            .page-header h1 {
                font-size: clamp(2.5rem, 5vw, 3.5rem);
                margin-bottom: 1rem;
            }

            .page-header p {
                font-size: 1.2rem;
                max-width: 800px;
                margin: 0 auto;
                opacity: 0.95;
                color: white;
            }

/* ==============================
   BLOG SECTION PREMIUM UI
=================================*/

.blog-section{
    padding:5rem 2rem;
    max-width:1200px;
    margin:auto;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:3rem;
}

/* CARD */

.blog-card{
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:all .4s cubic-bezier(.165,.84,.44,1);
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    border:1px solid rgba(0,0,0,0.04);
    position:relative;
}

.blog-card:hover{
    transform:translateY(-15px);
    box-shadow:0 35px 80px rgba(52,183,167,0.25);
}

/* IMAGE */

.blog-image{
    height:240px;
    overflow:hidden;
    position:relative;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}

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

/* Accent top border */

.blog-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--accent),var(--accent-dark));
}

/* CONTENT */

.blog-content{
     padding: 2.2rem 1.8rem;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

/* Meta */

.blog-meta{
    font-size:.85rem;
    color:var(--accent);
    font-weight:600;
    margin-bottom:0rem;
    text-transform:uppercase;
    letter-spacing:.5px;
}



/* Title */

.blog-card h3{
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: .8rem;
}

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

/* Description */

.blog-card p{
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.4rem;
}

/* Optional read more future ready */

.read-more{
    margin-top:auto;
    font-weight:600;
    color:var(--accent);
    display:inline-flex;
    align-items:center;
    gap:.4rem;
    transition:.3s;
}

.read-more:hover{
    gap:.9rem;
    color:var(--accent-dark);
}

.blog-meta span{
    vertical-align: middle;
}
/* ==============================
   RESPONSIVE
=================================*/

@media(max-width:768px){

    .blog-grid{
        grid-template-columns:1fr;
        gap:2rem;
    }

    .blog-content{
        padding:1.8rem;
    }

    .blog-card h3{
        font-size:1.35rem;
    }

    .blog-image{
        height:220px;
    }
}

@media(max-width:480px){

    .blog-section{
        padding:4rem 1.2rem;
    }

    .blog-image{
        height:200px;
    }

    .blog-content{
        padding:1.5rem;
    }
}


/* ===============================
   SERVICES CARD UI IMPROVEMENT
=================================*/

.services-section{
    padding:5rem 2rem;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:2rem;
    max-width:1200px;
    margin:auto;
}

.service-card{
background: #ffffff;
    border-radius: 12px;
    padding: 30px 22px;
    position: relative;
    text-align: left;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
	cursor: pointer;
}

.service-header-icon{
width: 65px;
    height: 65px;
    background: #e8f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(52,183,167,0.18);
}

/* Header polish */



.service-header i{
    transition:.3s ease;
   font-size: 26px;
    color: var(--accent);
}

.service-card:hover .service-header i{
    transform:scale(1.08);
}

.service-header h3{
  font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: .8rem;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
  background: linear-gradient(to right, #00b3bd, #00b3bd);
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
}

/* Body spacing */

/* .service-body{
    padding:2rem;
} */


.service-features li{
    font-size:.95rem;
    margin-bottom:.8rem;
    transition:.2s ease;
}

.service-features li:hover{
    transform:translateX(3px);
}

/* =================================
   MODAL UI POLISH (NO POSITION BREAK)
====================================*/

#service-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 30, 0.55);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 9999;
    animation: fadeIn 0.3s ease forwards;
}

.service-modal-content{
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 26px;
    padding: 3rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: slideUp 0.35s ease forwards;
    margin: 0 auto;
}

.service-modal-close{
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.6rem;
    cursor: pointer;
    color: #999;
    transition: 0.3s ease;
}

.service-modal-title {
   font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-modal-title i {
    color: var(--accent);
    font-size: 1.4rem;
}

.service-modal-title i {
    color: var(--accent);
    font-size: 1.4rem;
}

.service-modal-section {
    margin-bottom: 2rem;
}

.service-modal-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--primary);
    position: relative;
}

.service-modal-section p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-modal-benefits{
    margin-bottom: 0.5rem;
    color: #374151;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
        list-style: none;
}

.service-modal-benefits li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.2rem;
}
.service-modal-cta a{
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 20px rgba(52, 183, 167, 0.3);
    text-decoration: none;
}
/* =================================
   RESPONSIVE SAFE
====================================*/

@media(max-width:768px){

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

    .service-body{
        padding:1rem;
    }

    .service-card{
        padding:1rem;  
    }
    .service-modal-content{
        padding:2rem;
        width:95%;
    }

    .service-modal-title{
        font-size:1.5rem;
    }
}

@media(max-width:480px){

    .service-header i{
        font-size:2.4rem;
    }

    .service-modal-content{
        padding:1.5rem;
    }
}

@media (max-width: 600px) {
    #service-modal .modal-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

        .service-modal-title {
        font-size: 1.4rem;
    }
}


/* ================= VALUES ================= */

.values-section{
padding:5rem 2rem;
background:#f8fdfc;
}

.values-section h2{
text-align:center;
color:var(--primary);
margin-bottom:3rem;
font-weight:700;
}

.values-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:1.8rem;
}

.value-card{
background: #ffffff;
    border-radius: 12px;
    padding: 30px 22px;
    position: relative;
    text-align: left;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.value-card-icon {
    width: 65px;
    height: 65px;
    background: #e8f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.value-card::before {
      content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #00b3bd, #00b3bd);
    border-radius: 12px 12px 0 0;
}

.value-card::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(135deg,rgba(52,183,167,.08),transparent);
opacity:0;
transition:.4s;
}

.value-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(52,183,167,.15);
}

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

.value-card i{
font-size: 26px;
    color: var(--accent);
}

.value-card h3{
font-size:1.25rem;
color:var(--primary);
margin-bottom:.8rem;
}

.value-card p{
font-size:.92rem;
line-height:1.6;
color:var(--text);
}

/* ================= JOURNEY ================= */
/* ===== Section ===== */
.journey {
  text-align: center;
  padding: 80px 20px;
  background: #f4f6f9;
  font-family: 'Segoe UI', sans-serif;
}

.journey h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.subtitle {
  color: #6b7280;
 max-width: 700px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 5rem;
}

/* ===== Horizontal Layout ===== */
.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  position: relative;
}

/* ===== Step ===== */
.step {
  position: relative;
  text-align: center;
  flex: 1;
}

/* remove offset effect */
.step.offset {
  transform: translateY(40px);
}

/* ===== ICON CIRCLE ===== */
.icon {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* outer soft ring */
.icon::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed #d1d5db;
}

/* inner circle */
.icon::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
}

/* svg */
.icon svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  z-index: 2;
}

/* colors */
.icon.blue {background: #00b3bdab;}
.icon.teal {background: #ec48997a;}
.icon.dark {background: #00b3bdab;}
.icon.green {background: #ec48997a;}

/* ===== CARD TEXT ===== */
.card {
  margin-top: 25px;
}

.card span {
  font-size: 12px;
  color: #9ca3af;
  display: block;
  margin-bottom: 6px;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.85rem;
  color: #4b5563;
  max-width: 220px;
  margin: auto;
}

/* ===== DOTTED CONNECTOR CURVE ===== */
.step::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -50%;
  width: 100%;
  height: 80px;
  border-top: 2px dashed #9ca3af;
  border-radius: 50%;
}

/* last step remove line */
.step:last-child::after {
  display: none;
}

/* alternate curve direction */
.step.offset::after {
  top: 60px;
  transform: rotate(180deg);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .step {
    flex: 0 0 45%;
    margin-bottom: 50px;
  }

  .step::after {
    display: none;
  }

  .step.offset {
    transform: none;
  }
}

@media (max-width: 500px) {
  .step {
    flex: 0 0 100%;
  }

  .icon {
    width: 70px;
    height: 70px;
    color: #fff;
  }

  .icon::before {
    width: 110px;
    height: 110px;
  }

  .icon::after {
    width: 90px;
    height: 90px;
  }
}
/* ================= TEAM ================= */


.team-section{
padding:5rem 2rem;
background:#ffffff;
}

.team-section h2{
text-align:center;
font-size:2.4rem;
color:var(--primary);
margin-bottom:3rem;
font-weight:700;
}

.team-grid{
max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:2rem;
}

.team-member{
position:relative;
background:#fff;
border-radius:var(--radius);
overflow:hidden;
box-shadow:var(--shadow);
transition:var(--transition);
}

.team-member:hover{
transform:translateY(-10px);
box-shadow:0 30px 70px rgba(0,0,0,.12);
}

.team-photo{
height:240px;
background:linear-gradient(135deg,#d9f2ef,#bfe9e4);
display:flex;
align-items:center;
justify-content:center;
font-size:3.5rem;
color:var(--accent);
position:relative;
}

.team-info{
padding:1.6rem;
text-align:center;
}

.team-info h4{
font-size:1.2rem;
color:var(--primary);
margin-bottom:.4rem;
}

.team-info span{
color:var(--accent);
font-weight:600;
display:block;
margin-bottom:.7rem;
font-size:.9rem;
}

.team-info p{
font-size:.9rem;
line-height:1.5;
color:var(--text);
}

/* Hover Overlay Effect */

.team-member::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(to top,rgba(0,0,0,.6),transparent 60%);
opacity:0;
transition:.4s;
}

.team-member:hover::after{
opacity:1;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.timeline::before{
left:25px;
}

.timeline-item{
width:100%;
padding-left:70px;
padding-right:20px;
text-align:left !important;
}

.timeline-item:nth-child(even),
.timeline-item:nth-child(odd){
left:0;
}

.timeline-item::after{
left:14px !important;
}
}

@media(max-width:768px){

.page-header h1{
font-size:2.4rem;
}
.values-section,
.team-section{
padding:4rem 1.5rem;
}

.values-grid,
.team-grid{
grid-template-columns:1fr;
}

.team-photo{
height:200px;
}
    .services {
        grid-template-columns: 1fr;grid-template-columns: 1fr;
    }
}

.section.why ul{
list-style:none;	
}


.footer-bottom label:hover{
	color:#e8f0ff
}

.footer-bottom label{
	cursor:pointer;
}