:root {
            --primary: #024442;
            --accent: #B6F763;
            --light: #f0ffff;
            --dark: #171717;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --success: #10b981;
            --success-light: #d1fae5;
            --warning: #f59e0b;
            --warning-light: #fef3c7;
            --danger: #ef4444;
            --danger-light: #fee2e2;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 14px;
            --radius-xl: 18px;
            --sl-overlay:  rgba(8, 8, 12, 0.55);
            --sl-radius:   12px;
            --sl-duration: 700ms;
            --sl-auto:     5000ms;
        }

@font-face {
    font-family: 'graphica';
    src: url('../fonts/modern_sans_serif_7.ttf');
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.bg-primary-clr{
    background: var(--primary) !important;
    color: var(--light) !important;
}
.bg-accent{
    background: var(--accent) !important;
}
.color-primary{
    color: var(--primary) !important;
}

html{
    scroll-behavior: smooth;
}
body{
    background: #ffffff;
}
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 28px;
    background: var(--accent);
    color: var(--primary);

    border: none;
    border-radius: 999px; /* Full round (pill shape) */

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;

    cursor: pointer;
    transition: all 0.2s ease;
}

.main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* .main-btn{ 
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    background: var(--accent);
    color: var(--primary); 
    text-align: center;
    border-radius: 50%;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.1s linear;
    outline: none;
    box-shadow: none;
    border: none;
}
.main-btn-o{
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    text-decoration: none;
    color: var(--primary);
    text-align: center;
    font-weight: 600;
    text-transform: capitalize;
   
}
.main-btn:focus,
.main-btn-o:focus{
    outline: none;
    border: none;
    box-shadow: none;
    transform: none;
}
.main-btn:hover{
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    color: var(--primary);
}
.main-btn-o:hover{
    color: var(--dark);
} */

a:hover{
    color: var(--primary);
}
.service-card,
.service-card h1,
.service-card h2,
.service-card h3,
.service-card p,
.service-card a,
.service-card svg {
  color: inherit;
  fill: currentColor;
}

/* SECTION TITLE */

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
    padding: 10px 20px;
    margin: auto;
    text-align: center;
    position: relative;
    font-weight: 700;
    transition: color 0.5s ease;
  }
  .section-title p{
    color: var(--dark);
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    max-width: 600px;
    margin: 5px auto;
  }
  .section-title h1::after,
  .section-title h2::after,
  .section-title h3::after,
  .section-title h4::after,
  .section-title h5::after,
  .section-title h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 150px;
    height: 4px;
    border-radius: 50px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    background-size: 300% 100%;
    opacity: 0;
    transition: opacity 0.5s;
    transform: translateX(-50%);
    opacity: 1;
    animation: shimmer 2.5s linear infinite;
  }
  /* ===========================
   Modern Navbar with Glassmorphism
=========================== */

.modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(2, 68, 66, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(182, 247, 99, 0.1);
    transition: all 0.3s ease;
}

.modern-navbar.scrolled {
    background: rgba(2, 68, 66, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo */
.navbar-logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover img {
    transform: scale(1.05);
}

/* Desktop Menu */
.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.navbar-menu .nav-link {
    color: #f0ffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #B6F763;
    transition: width 0.3s ease;
}

.navbar-menu .nav-link:hover,
.navbar-menu .nav-link.active {
    color: #B6F763;
}

.navbar-menu .nav-link:hover::after,
.navbar-menu .nav-link.active::after {
    width: 100%;
}

/* Action Buttons */
.navbar-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.navbar-actions .btn-primary {
    background: #B6F763;
    color: #024442;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(182, 247, 99, 0.3);
}

.navbar-actions .btn-primary:hover {
    background: #a8e856;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(182, 247, 99, 0.4);
}

.navbar-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #f0ffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #B6F763;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: rgba(2, 68, 66, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(182, 247, 99, 0.1);
    padding: 1.5rem 0;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu ul li {
    padding: 0.75rem 0;
}

.mobile-menu ul li a {
    color: #f0ffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
    background: rgba(182, 247, 99, 0.1);
    color: #B6F763;
}

.mobile-divider {
    height: 1px;
    background: rgba(182, 247, 99, 0.1);
    margin: 1rem 0;
}

/* ===========================
   Responsive Design
=========================== */

@media (max-width: 992px) {
    .navbar-menu,
    .navbar-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

}


/* hero STYLE */
.hero {
    position: relative;
    background: url('../images/gfix_bg.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Blur + tint overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15); /* tint color, adjust opacity */
    backdrop-filter: blur(6px);      /* blur strength */
    z-index: 1;
}


/* Your content inside header */
.hero > * {
    position: relative;
    z-index: 2; /* ensure content stays above the overlay */
}

  .animated-tagline {
    font-size: 3.5em !important;
    font-weight: 600;
    letter-spacing: 0.2px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }

  .cursor {
    display: inline-block;
    color: #f2f5f7;
    animation: blink 1s step-end infinite;
  }

  @keyframes blink {
    50% { opacity: 0; }
  }
  @media screen and (max-width: 540px){
      .animated-tagline{
          text-align: center;
         font-size: 32px !important;
      }
  }
.header-subtitle {
    color: var(--light);
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.header-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    justify-self: center;
}

.header-btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Primary Button */
.primary-btn {
    background: #b6f763;
    color:var(--dark);
}

.primary-btn:hover {
    background: #c7f68a;
    color: var(--dark);
}

/* Secondary Button */
.secondary-btn {
    border: 2px solid #b6f763;
    color: #b6f763;
}

.secondary-btn:hover {
    background: #b6f763;
    color: #1e1e1e;
}

/* 
.header .header-cont{
    min-height: 400px;
    background: var(--light);
    border-radius: 20px;
    margin: 60px auto;
    padding: 0px;
}
.header .left-cont{
    height: auto;
    margin: 40px 10px 10px 10px;
    
}
.header .left-cont h1{
    font-size: 40px;
    color: var(--primary);
    font-family:graphica;
}
.header .left-cont p{
    color: var(--dark);
    font-size: 24px;
    font-weight: 100;
}

.header .right-cont{
    margin: -40px auto;
    width: 300px;
    padding: 0;
    height: 500px;
    background: var(--primary);
    border-radius: 20px;
    box-shadow: 2px 2px 10px var(--dark);
    overflow: hidden;
}
*/
@media screen and (max-width: 991px){
    
   .header-subtitle{
    font-size: 16px;
}
.header-btn{
    padding: 5px 15px;
}
}


/* CLIENT LOGO INFINITE SCROLL SECTION */
/* Section */
.trusted-by {
    padding: 10px 0 0 0;
    width: 100%;
}

/* Slider Wrapper */
.logo-slider {
    overflow: hidden;
    position: relative;
}

/* Scrolling Track */
.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
    align-items: center;

}

/* Logo Style */
.logo-track img {
    height: 80px;               /* same height for all logos */
    width: auto;                /* preserve aspect ratio */
    border-radius: 20px ;
    filter: grayscale(200%);    /* black and white */
    opacity: 0.7;
    transition: 0.3s ease;
}

.logo-track img:hover {
    filter: grayscale(0%);      /* reveal original color */
    opacity: 1;
}

/* Infinite Scroll Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* SERVICES SECTION STYLE */
.services{
    height: auto;
    min-height: 90vh;
    background-color: var(--light);
    margin-bottom: 0px;
   
}
.cards-cont {
    height: auto;
    min-height: 380px;
    margin: 30px auto;
}

.cards-cont .card-single {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: var(--primary);
    margin: 5px auto;
    padding: 20px 14px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Animated background gradient on hover */
.cards-cont .card-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.cards-cont .card-single:hover::before {
    opacity: 1;
}

/* Icon wrapper with background circle */
.cards-cont .card-single .card-icon-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.cards-cont .card-single .card-icon {
    font-size: 4.5rem;
    color: var(--accent);
    font-weight: 100;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cards-cont .card-single:hover .card-icon {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Card info section */
.cards-cont .card-single .card-info {
    position: relative;
    z-index: 1;
}

.cards-cont .card-single h3 {
    color: var(--light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cards-cont .card-single p {
    color: var(--light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Learn more button */
.cards-cont .card-single .card-learn-more {
    position: relative;
    overflow: hidden;
}

.cards-cont .card-single .card-learn-more span {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(10px);
}

.cards-cont .card-single .card-learn-more span i {
    transition: transform 0.3s ease;
}

/* Hover effects */
.cards-cont .card-single:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cards-cont .card-single:hover h3,
.cards-cont .card-single:hover p {
    color: var(--dark);
}

.cards-cont .card-single:hover p {
    opacity: 1;
}

.cards-cont .card-single:hover .card-learn-more span {
    color: var(--dark);
    opacity: 1;
    transform: translateY(0);
}

.cards-cont .card-single:hover .card-learn-more span i {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .cards-cont .card-single {
        min-height: 340px;
        margin: 15px auto;
    }
}

@media (max-width: 767px) {
    .cards-cont .card-single {
        min-height: 320px;
        padding: 24px 20px;
    }
    
    .cards-cont .card-single .card-icon {
        font-size: 3.5rem;
        padding: 16px;
    }
    
    .cards-cont .card-single h3 {
        font-size: 1.3rem;
    }
}

/* Action button styling */
.action-btn {
    text-align: center;
}

.action-btn .main-btn {
    display: inline-block;
    transition: all 0.3s ease;
}

.action-btn .main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
/* WORK SECTION STYLE */

.work-cards{
    background: var(--accent);
    width: 100%;
    margin-top: 0px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.work-cards .work-card-single{
    background: var(--primary);
    width: 100%;
    height: 200px;
    margin: 15px auto;
    border-radius: 20px;
    overflow: hidden;
}
.work-cards .work-card-single img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center center;
}



.work-card-link {
    text-decoration: none;
    display: block;
}

.work-card-single {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.work-card-single img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.work-card-single:hover img {
    transform: scale(1.1); /* Slight zoom effect */
}

.work-card-single .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-image: -webkit-linear-gradient(bottom, var(--primary), transparent);
    color: var(--light);
    font-size: 18px;
    font-weight: bold;
    transition: height 0.3s ease-in-out;
    overflow: hidden;
}
.work-card-single .overlay h3{
    margin-top: 140px;
    margin-left: 20px;
}

@media (max-width: 768px) { /* Targets mobile screens */
    .work-card-single .overlay {
        height: 100%; /* Show full overlay */
    }
}

.work-card-single:hover .overlay {
    height: 110%; /* Expands from bottom */
}

.work-cards .row:nth-child(1) .col-md-3:nth-child(1) .work-card-single {
    background: transparent;  
    padding-top: 5px;
}

.work-cards .row:nth-child(1) .col-md-3:nth-child(2) .work-card-single {
    transform: rotate(-5deg);
}
/* SCROOLING TEXT */
.scroll-text-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 50px;
}

.scroll-text {
    display: inline-flex;
    animation: scroll-left 25s linear infinite;
    font-size: 62px;
    font-weight: 700;
    text-transform: uppercase;
    gap: 50px; /* space between repeated lines */
}



.line {
    display: inline-flex;
    gap: 25px;
}

/* Color variations */
.w1 { color: #024442; }
.w2 { color: #035050; }
.w3 { color: #137676; }
.w4 { color: #046868; }
.w5 { color: #047474; }
.w6 { color: #0f4a4a; }

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* WHY CHOSE US */
.why-choose-us {
    padding: 80px 20px;
    text-align: center;
    background-color: #f8f8f8;
}

.why-choose-us h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.wcu-card {
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 14px;
    padding: 30px 25px;
    transition: 0.3s ease;
}

.wcu-card i {
    font-size: 40px;
    color: #024442;
    margin-bottom: 20px;
}

.wcu-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.wcu-card p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Hover effect */
.wcu-card:hover {
    border-color: #024442;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 900px) {
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wcu-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-us h2{
        font-size:22px; 
            
        }
    
}


/* GRID PROJECTS SHOWCASE */
.project-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 25px;
    padding: 40px;
}

.project-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    
}


/* Large item */
.project-large {
    grid-row: span 2;
}

/* Wide bottom item */
.project-wide {
    grid-column: 2 / span 2;
}
.project-large::before,.project-wide::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: -webkit-linear-gradient(bottom, var(--accent), transparent);
    color: var(--light);
    font-size: 18px;
    font-weight: bold;
    overflow: hidden;
    z-index: 0;
}

/* Image styling */
.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}
.project-item:hover>img{
    transform: scale(1.05);
    z-index: -1;
}

/* Project info overlay */
.project-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--primary);
}

.project-info h3 {
    margin: 0 0 5px;
    font-size: 26px;
    font-weight: 700;
}

.project-info p {
    margin: 0 0 10px;
    opacity: 0.9;
}

/* CTA link */
.project-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
    display: inline-block;
}

.project-link.dark {
    color: var(--dark);
    background: transparent;
    padding: 0;
    font-weight: 600;
}

/* Small project text cards */
.project-card {
    background: var(--accent);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-title {
    font-size: 40px;
    color: var(--primary);
    margin: 0 0 15px;
}

.project-sub {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-large,
    .project-wide {
        grid-column: auto;
        grid-row: auto;
    }
}

/* TESTEMONIAL - HOME PAGE  */

/* services page */
.services-header,
.about-hero{
    background: url('../images/doodles-bg.png') center/cover no-repeat  var(--primary);
    width: 100%;
    padding: 180px 0 50px 0;
    color: var(--light);
    position: relative;
    z-index: -2;
}
.services-header::before,
.about-hero::before{
     content: "";
    position: absolute;
    inset: 0;
    background: rgba(2, 68, 66,0.8);
    z-index: -1;
} 
.services-header h2{
    color: var(--accent);
}
.service-tagline{
    padding: 20px 0 30px 0;
    max-width: 450px;
    margin: auto;
}
.service-tagline h2{
    color: var(--dark);
    text-align: center;
    line-height: 46px;
}
 .highlight {
  background: var(--accent);
  color: var(--primary);
  padding: 0px 10px;
  border-radius: 6px;
}


.service-icon{
    font-size: 2rem;
    color: var(--dark);
    padding-bottom: 8px;
    
}


.service-item{

  break-inside: avoid;
  margin-bottom: 20px;
}


.service-item .service-card{
  background: var(--accent);
  border-radius: 10px;
  color: var(--dark) ;
  padding: 22px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.services-section .row > div:nth-child(even) .service-card,
.services-section .row > div:nth-child(even) .service-icon {
  background: var(--primary);
  color: var(--light);
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.08);
}


/* Typography */
.service-title{
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--light);
}

.service-text{
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--light);
  opacity: .85;
}
.explore-service-btn{
  font-size: 0.9rem;
   color: var(--accent);
  background: transparent;
  padding: 0;
}
.explore-service-btn:hover{
  color: var(--dark);
  box-shadow: none;
}

.bundle-title h2{
    color: var(--primary);
}
.package-single{
    position: relative;
    overflow: hidden;
  background: var(--primary);
  color: #c4ff7b;
  border-radius: 20px;
  border: 2px solid var(--accent);
  padding: 30px 20px;
  min-height: 400px;
  margin: 20px;
  box-shadow: 0 5px 10px var(--accent);
  transition:  0.3s ease, box-shadow .3s ease;
}
.featured-badge {
    position: absolute;
    top: 16px;
    right: -40px;

    background: var(--accent);
    color: #000;
    font-weight: 600;
    font-size: 13px;
    padding: 6px 40px;

    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
    z-index: 5;
}
.package-single hr{
    width: 50%;
    margin: auto;
    height: 2px;
}
.package-single:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.featured-package{
    transform: scale(1.1);
    background: var(--primary);
}
.feature-package:hover{
    transform: scale(1.1);
}

.package-title{
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.package-list{
  list-style: none;
  padding: 0;
  color: var(--light);
  margin-bottom: 80px;
  margin-top: 10px;
  text-align: left;
  margin-left: 30px;
}
/* Icon + multiline text alignment */
.feature-item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  text-align: left;
}

.feature-item i{
  color: #a8ff6b;
  flex-shrink: 0;
  margin-top: 1.5px;
}

.feature-item span{
  display: block;
  line-height: 1.5;
}

.package-list li{
  margin: 10px 0;
  font-size: 0.95rem;
}

.package-list li i{
  color: var(--accent);
  margin-right: 8px;
}

.cta-banner {
            background: var(--dark);
            border-radius: 16px;
            padding: 30px 50px;
            margin-bottom: 10px;
        }

        .cta-title {
            font-size: 36px;
            font-weight: 600;
            color: white;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .cta-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0;
        }

        .price-section {
            text-align: right;
        }

        .price-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .price-amount {
            font-size: 42px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            line-height: 1;
        }

        

        @media (max-width: 991px) {
            .cta-banner {
                padding: 40px 30px;
            }

            .price-section {
                text-align: left;
                margin-top: 30px;
            }

            .cta-title {
                font-size: 28px;
            }

            .price-amount {
                font-size: 40px;
            }
        }

        @media (max-width: 576px) {
            .cta-banner {
                padding: 30px 20px;
            }

            .cta-title {
                font-size: 24px;
            }

            .cta-subtitle {
                font-size: 16px;
            }

            .price-amount {
                font-size: 36px;
            }
        }
/* WORK PROCESS STYLE */
 .process-section {
            margin: 0 auto;
            background: linear-gradient(to top, #f8f8f8 20%, #ffffff 90%);    
            padding: 60px 40px;
        }

        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .header-small {
            color: #999;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .header-title {
            font-size: 32px;
            color: #333;
        }

        .header-title span {
            color: var(--accent);
            font-weight: 600;
        }

        .flow-container {
            position: relative;
        }

        .flow-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 80px;
            position: relative;
        }

        .flow-row:last-child {
            margin-bottom: 0;
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: white;
            border: 3px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            position: relative;
            z-index: 2;
        }

        .step-icon.active {
            background: var(--accent);
            color: white;
        }

        .step-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .step-description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            max-width: 250px;
            margin: 0 auto;
        }

        .connector {
            position: absolute;
            height: 3px;
            background: var(--accent);
            top: 40px;
            z-index: 1;
        }

        .connector-top {
            left: calc(16.66% + 40px);
            width: calc(66.66% - 80px);
        }


        .connector-bottom {
            left: calc(16.66% + 40px);
            width: calc(66.66% - 80px);
        }

        @media (max-width: 968px) {
            .process-section {
                padding: 40px 20px;
            }

            .flow-row {
                flex-direction: column;
                margin-bottom: 40px;
            }

            .step {
                margin-bottom: 60px;
                width: 100%;
            }

            .step:last-child {
                margin-bottom: 0;
            }

          
            .connector,
            .connector-curve {
                display: none;
            }


            .flow-row::after {
                content: '';
                position: absolute;
                width: 3px;
                background: var(--accent);
                opacity: 0.4;
                height: 170%;
                left: 50%;
                top: 50px;
                bottom: -20px;
                transform: translateX(-50%);
                z-index: 0;
            }

            .flow-row:last-child::after {
                display: none;
            }

            .step-description {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .header-title {
                font-size: 24px;
            }

            .step-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .step-title {
                font-size: 18px;
            }

            .step-description {
                font-size: 13px;
            }
        }
/* FAQs style */

.faq-section {
            margin: 0 auto;
            padding: 20px;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-header-small {
            color: #999;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .faq-header-title {
            font-size: 36px;
            color: #333;
            font-weight: 600;
        }

        .faq-header-title span {
            color: var(--accent);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #f9f9f9;
        }

        .faq-question-text {
            font-size: 18px;
            font-weight: 500;
            color: #333;
            flex: 1;
            padding-right: 20px;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            position: relative;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--accent);
            transition: transform 0.3s ease;
        }

        .faq-icon::before {
            width: 20px;
            height: 3px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .faq-icon::after {
            width: 3px;
            height: 20px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .faq-item.active .faq-icon {
            transform: rotate(90deg);
        }

        .faq-item.active .faq-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 25px 20px 25px;
        }

        .faq-answer-text {
            font-size: 15px;
            line-height: 1.7;
            color: #666;
        }

        @media (max-width: 768px) {
            .faq-header-title {
                font-size: 28px;
            }

            .faq-container {
                max-width: 80%;
            }

            .faq-question {
                padding: 18px 20px;
            }

            .faq-question-text {
                font-size: 14px;
            }

            .faq-answer-text {
                font-size: 12px;
            }

            .faq-item.active .faq-answer {
                padding: 0 20px 18px 20px;
            }
        }


/* Footer Styles */
footer {
    background: var(--dark);
    color: white;
    padding-top: 80px;
    margin-top: 100px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Brand Section */
.footer-brand img {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #a1a1aa;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 30px;
}

.footer-brand h5 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(182, 247, 99, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Footer Sections */
.footer-section h5 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-section ul li a i {
    font-size: 14px;
    width: 20px;
}

/* ── reviews Section ───────────────────────────────────────────── */
.reviews-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: #f9f9f9;
}

.reviews-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

/* ── Card ──────────────────────────────────────────────── */
.review-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 28px 24px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow .25s ease, transform .25s ease;
}

.review-card:hover {
    box-shadow: 0 8px 32px rgba(2, 68, 66, .1);
    transform: translateY(-3px);
}

/* ── Stars ─────────────────────────────────────────────── */
.review-stars { display: flex; gap: 3px; }

.review-star        { font-size: 18px; line-height: 1; }
.review-star.filled { color: #e8c97a; }
.review-star.empty  { color: #ddd; }

/* ── Review text ───────────────────────────────────────── */
.review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    flex: 1;
    margin: 0;
}

/* ── Author row ────────────────────────────────────────── */
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #024442;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author-name    { font-size: 14px; font-weight: 700; color: #111; }
.review-author-company { font-size: 12px; color: #888; margin-top: 2px; }

/* ── Hidden extra reviews ──────────────────────────────── */
.review-col.review-hidden {
    display: none;
}

.review-col.review-visible {
    display: block;
    animation: reviewFadeIn .35s ease both;
}

@keyframes reviewFadeIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Toggle button ─────────────────────────────────────── */
.reviews-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.reviews-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: transparent;
    color: #024442;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #024442;
    border-radius: 8px;
    cursor: pointer;
    transition: background .25s, color .25s;
}

.reviews-toggle-btn:hover {
    background: #024442;
    color: #fff;
}

.reviews-toggle-icon {
    font-size: 16px;
    transition: transform .3s ease;
    display: inline-block;
}

.reviews-toggle-icon.rotated {
    transform: rotate(180deg);
}

/* Contact Section */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(182, 247, 99, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--accent);
}

/* Copyright */
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.copyright p {
    color: #a1a1aa;
    font-size: 14px;
    margin: 0;
}

.copyright-links {
    display: flex;
    gap: 24px;
}

.copyright-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.copyright-links a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .copyright-content {
        flex-direction: column;
        text-align: center;
    }

    .copyright-links {
        justify-content: center;
    }

    
}

.right-cont {
    width: 100%;
    max-width: 500px; /* Adjust as needed */
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.swiper .swiper-pagination-bullet {
    background-color: var(--light) !important;
}
.swiper .swiper-pagination-bullet-active {
    background-color: var(--accent) !important;
    transform: scale(1.2);
}
/* ABOUT PAGE */
.about-hero {
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .about-hero h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            color: var(--accent);
        }

        .about-hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            position: relative;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Mission Vision Values Section */
        .mv-section {
            padding: 80px 0;
            background: white;
        }

        .mv-card {
            background: #B6F763;
            background: linear-gradient(30deg,rgba(182, 247, 99, 1) 26%, rgba(202, 242, 138, 1) 62%, rgba(131, 217, 20, 1) 95%);            padding: 50px 35px;
            
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .mv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(30deg,rgba(113, 184, 22, 1) 26%, rgba(202, 242, 138, 1) 62%, rgba(131, 217, 20, 1) 95%);
            padding: 50px 35px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .mv-card:hover::before {
            opacity: 1;
        }

        .mv-card:nth-child(2) {
            background: linear-gradient(30deg,rgba(182, 247, 99, 1) 26%, rgba(202, 242, 138, 1) 62%, rgba(131, 217, 20, 1) 95%);            padding: 50px 35px;
        }

        .mv-card:nth-child(3) {
            background: linear-gradient(30deg,rgba(182, 247, 99, 1) 26%, rgba(202, 242, 138, 1) 62%, rgba(131, 217, 20, 1) 95%);            padding: 50px 35px;
        }

        .mv-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
        }

        .mv-card h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .mv-card h3::after {
            content: '';
            width: 60px;
            height: 4px;
            background: var(--primary);
            display: block;
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .mv-card p {
            font-size: 17px;
            color: var(--dark);
            line-height: 1.8;
            margin: 0;
            position: relative;
            font-weight: 400;
        }

        /* Story Section */
        .story-section {
            padding: 80px 0;
            background: #f9f9f9;
        }

        .story-section h2 {
            font-size: 42px;
            font-weight: 600;
            color: #333;
            margin-bottom: 25px;
        }

        .story-section p {
            font-size: 17px;
            color: #666;
            line-height: 1.8;
        }

        .story-section img {
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        /* Timeline Section */
        /* .timeline-section {
            padding: 80px 0;
            background: #171717;
            background: linear-gradient(0deg,rgba(23, 23, 23, 1) 36%, rgba(2, 68, 66, 1) 78%);
            position: relative;
        }

        .timeline-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 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="1.5" fill="white" opacity="0.03"/></svg>');
        }

        .timeline-section h2 {
            font-size: 42px;
            font-weight: 600;
            color: white;
            position: relative;
            margin-bottom: 15px;
        }

        .timeline-description {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
            line-height: 1.6;
            position: relative;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 12px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent) 0%, #ff8e8e 50%, var(--accent) 100%);
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 2;
            text-align: center;
        }

        .timeline-dot {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--accent);
            border: 5px solid #171717;
            box-shadow: 0 0 0 4px var(--accent), 0 0 20px rgba(255, 107, 107, 0.5);
            margin-bottom: 30px;
            position: relative;
            z-index: 3;
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-dot {
            transform: scale(1.2);
            box-shadow: 0 0 0 6px var(--accent), 0 0 30px rgba(255, 107, 107, 0.8);
        }

        .timeline-item .year {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .timeline-item:hover .year {
            color: var(--accent);
            transform: scale(1.05);
        }

        .timeline-item p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            margin: 0;
            max-width: 280px;
        } */

        /* Team Section */
        
        .team-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .team-header-small {
            color: #999;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .team-header-title {
            font-size: 42px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .team-header-title span {
            color: var(--accent);
        }

        .team-header-description {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .member-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .member-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: var(--accent);
            border-radius: 20px 20px 0 0;
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .member-card:hover::before {
            transform: scaleX(1);
        }

        .member-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            border-color: #f0f0f0;
        }

        .member-avatar {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 70px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            transition: all 0.4s ease;
        }

        .member-card:nth-child(2) .member-avatar {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .member-card:nth-child(3) .member-avatar {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .member-card:nth-child(4) .member-avatar {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .member-card:hover .member-avatar {
            transform: scale(1.08);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .member-name {
            font-size: 22px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .member-role {
            font-size: 13px;
            color: var(--accent);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 18px;
        }

        .member-bio {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 25px;
            min-height: 60px;
        }


        @media (max-width: 768px) {
            .team-header-title {
                font-size: 32px;
            }

            .member-avatar {
                width: 120px;
                height: 120px;
                font-size: 60px;
            }

            .member-card {
                padding: 35px 25px;
            }
        }
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 36px;
            }

            .about-hero p {
                font-size: 16px;
            }

            .about-hero {
                padding: 80px 0 60px;
            }

            .mv-section,
            .story-section,
            .timeline-section,
            .team-section {
                padding: 60px 0;
            }

            .story-section h2,
            .timeline-section h2,
            s{
                font-size: 32px;
            }

            .story-section .col-md-6:first-child {
                margin-bottom: 30px;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                padding-left: 50px !important;
                padding-right: 0 !important;
                flex-direction: row !important;
            }

            .timeline-item::before {
                left: 14px;
            }

            .mv-card h3 {
                font-size: 26px;
            }
        }
/* PORTFOLIO PAGE  */

 .portfolio-hero {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            padding: 100px 0 60px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .portfolio-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 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="white" opacity="0.05"/></svg>');
        }

        .portfolio-hero h1 {
            font-size: 52px;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
        }

        .portfolio-hero .highlight {
            color: var(--accent);
        }

        .portfolio-hero p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto 30px;
            position: relative;
        }

        .filter-section {
            background: white;
            padding: 30px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 28px;
            border: 2px solid #e0e0e0;
            background: white;
            color: #666;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 14px;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .portfolio-section {
            padding: 20px 0;
        }

        .section-title {
            font-size: 36px;
            font-weight: 600;
            color: #333;
            margin-bottom: 40px;
            text-align: center;
        }

        .section-title span {
            color: var(--accent);
        }

       /* featured */
       

        .project-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            background: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin-bottom: 10px;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);

        }

        .project-image {
            width: 100%;
            height: 280px;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }
        .project-image::before{
            content: "";
            background: linear-gradient(transparent, var(--dark));
            inset: 0;
            position: absolute;
            z-index: 1;
            transition: transform 0.4s ease;
        }
       
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 0;
            transition: transform 0.4s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }
        .project-card:hover .project-image::before{
            transform: translateY(100%);
        }

        .project-info {
            padding: 25px;
            z-index: 2;
            transition: opacity 0.4s linear;
        }

        .project-category {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 8px;
            transition: transform 0.2s ease-out;
        }

        .project-title {
            font-size: 22px;
            font-weight: 600;
            color: var(--light) ;
            margin-bottom: 10px;
            width: 95%;
            transition: transform 0.2s ease-out;
        }

        .project-description {
            font-size: 14px;
            color: var(--light);
            line-height: 1.6;
            width: 90%;
            transition: transform 0.2s ease-out;
        }

        
        .project-card:hover .project-info{
            opacity: 0;
        }


        .overlay-card {
            position: relative;
            height: 350px;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 30px;
        }

        .overlay-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .overlay-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: white;
            transform: translateY(200px);
            transition: transform 0.4s ease;
        }

        .overlay-card:hover .overlay-content {
            transform: translateY(0);
        }

        .overlay-card:hover img {
            transform: scale(1.1);
        }
        .masonry-grid {
            column-count: 3;
            column-gap: 30px;
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 30px;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            position: relative;
        }

        .masonry-item:hover {
            transform: scale(1.02);
        }

        .masonry-item img {
            width: 100%;
            display: block;
            transition: filter 0.3s ease;
        }

        .masonry-item:hover img {
            filter: brightness(0.9);
        }

        .masonry-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .masonry-item:hover .masonry-overlay {
            opacity: 1;
        }

        .cta-section {
            background: var(--dark);
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            color: var(--accent);
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-section p {
            color: var(--light);
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .cta-btn {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        @media (max-width: 992px) {
            .masonry-grid {
                column-count: 2;
            }

            .portfolio-hero h1 {
                font-size: 38px;
            }

            .featured-banner {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .masonry-grid {
                column-count: 1;
            }

            .filter-buttons {
                gap: 10px;
            }

            .filter-btn {
                padding: 8px 20px;
                font-size: 13px;
            }

            .portfolio-hero h1 {
                font-size: 32px;
            }

            .featured-banner {
                height: 350px;
            }

            .featured-title {
                font-size: 32px;
            }

            .project-image {
                height: 220px;
            }
        }
/* CONTACT PAGE */
.contact-header {
    margin-top: 120px;
}

.contact-header h1 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    color: var(--primary);
}

.contact-header .header-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    opacity: 0.7;
}

.contact-wrapper {
        padding: 50px 0;
    }
    .form-box{
         border-radius: 12px;
        padding: 25px;
        border: 1px solid #ddd;
    }
    .contact-box {
        background: var(--accent);
        border-radius: 12px;
        padding: 25px;
        border: 1px solid #ddd;
    }

  

.map-container iframe {
    width: 100%;
    height: 280px;
    border: none;
    border-radius: 12px;
}


    .msg {
        display: none;
        padding: 12px;
        border-radius: 6px;
        margin-bottom: 10px;
    }

    .msg-success {
        background: #d4f8d4;
        border: 1px solid #8ddf8d;
    }

    .msg-error {
        background: #ffd7d7;
        border: 1px solid #ff9c9c;
    }
/* CAREER PAGE */
.career-header {
    text-align: center;
    padding: 150px 20px 60px 20px;
    
}
.career-header h1 {
    color: var(--primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.career-header p {
    color: var(--dark);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Table Section */
.search-input {
    margin-bottom: 20px;
}

/* Form Section */
.career-form {
    margin: 0 auto;
}
.career-form-cont{
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px #ccc ;   
}
/* LOGIN PAGE */

.login-wrapper{
    background:#f8f8f8;
}

/* LEFT IMAGE */
.login-left{
    background:url('../images/gfix_bg.png') center/cover no-repeat;
}

/* RIGHT SIDE */
.login-right{
    background:url('../images/doodles-bg.png') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    padding:40px 20px;
}

/* OVERLAY */
.login-overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.85);
    z-index:1;
}

/* LOGIN CARD */
.form-cont{
    width:100%;
    max-width:380px;
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    position:relative;
    z-index:2;
}

/* LOGO */
.form-cont img{
    width:150px;
    display:block;
    margin:0 auto 20px;
}

/* TITLE */
.form-cont h3{
    text-align:center;
    margin-bottom:25px;
    font-weight:600;
    color:#222;
}

/* LABELS */
.label{
    font-weight:500;
    margin-bottom:6px;
    display:block;
}

/* INPUTS */
.form-cont input[type="text"],
.form-cont input[type="password"]{
    width:100%;
    padding:12px 14px;
    border-radius:8px;
    border:1px solid #ccc;
    margin-bottom:18px;
    outline:none;
}

/* BUTTON */
.form-cont .main-btn{
    width:100%;
}

/* MOBILE OPTIMIZATION */
@media(max-width:991px){
    .login-right{
        background:#f8f8f8 url('../images/doodles-bg.png') center/cover no-repeat;
    }
    .login-overlay{
        background:rgba(255,255,255,0.9);
    }
}


/* ======== CAREER table style ============*/
.career-table {
    margin: 20px auto;
    width: 100%;
    max-width: 1000px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow-x: auto;
    overflow-y: auto;
    max-height: 600px;
    min-height: 180px;
    font-family: 'Segoe UI', sans-serif;
}

.career-table::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.career-table::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: rgba(0,0,0,0.1);
    visibility: hidden;
}

.career-table:hover::-webkit-scrollbar-thumb {
    visibility: visible;
}

.career-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: auto;
}

.career-table th, 
.career-table td {
    padding: 15px 20px;
    text-align: left;
    vertical-align: middle;
}

.career-table thead th {
    position: sticky;
    top: 0;
    left: 0;
    background: #f8f8f8;
    font-weight: 600;
    color: #555;
    z-index: 2;
}

.career-table tbody tr {
    background: #fff;
    border-radius: 15px;
    margin: 5px 0;
    display: table-row;
}

.career-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.career-table tbody tr:hover {
    background: #E4F6F8;
}

.career-table .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #8bc34a; /* default color, can be dynamic */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 10px;
    flex-shrink: 0;
}

.career-table .user-info {
    display: flex;
    align-items: center;
}

.career-table .status {
    padding: 5px 12px;
    border-radius: 12px;
    font-weight: 500;
    text-transform: capitalize;
    display: inline-block;
    font-size: 0.9rem;
}

.career-table .status.active {
    background: #d4f8d4;
    color: #27a327;
}

.career-table .status.pending {
    background: #fff4d6;
    color: #c18f00;
}

.career-table .status.completed {
    background: #d6e4ff;
    color: #3b60ff;
}

.career-table .actions button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin-left: 5px;
    color: #555;
    transition: color 0.2s;
}

.career-table .actions button:hover {
    color: #000;
}


/* ==========CHAT CSS ============== */


#chat-container {
    width: 80%;
    max-width: 800px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
#messages::-webkit-scrollbar{
    width: 10px;
    height: 10px;
}
#messages::-webkit-scrollbar-thumb{
    border-radius: 20px;
    background: #0004;
    visibility: hidden;
}
#messages:hover::-webkit-scrollbar-thumb{
    visibility: visible;
}
#messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}
.message {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 20px;
    max-width: 60%;
    min-width : 20%;
    word-wrap: break-word;
    position: relative;
}
.message .username {
    font-weight: bold;
    margin-bottom: 5px;
    
}
.message .message-content {
    word-break: break-word;
}
.message.self {
    background-color: #DCF8C6;
    align-self: flex-end;
    border-top-right-radius: 0;
}
.message.self .username{
    display: none;
}
.message.other {
    background-color: #E6E6E6;
    align-self: flex-start;
    border-top-left-radius: 0;
}
#message-form {
    display: flex;
    padding: 10px;
    background-color: #f1f1f1;
}
#message-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-right: 10px;
    font-size: 16px;
}
#send-button {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #3b3b3b;
    color: #fff;
    font-size: 16px;
    text-align: center;
    vertical-align: center;
    cursor: pointer;
}
#send-button:hover {
    background-color: #525252;
}
@media only screen and (max-width: 400px) {

    #chat-container{
        
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;

    }
}
