:root {
    --brand: #01b5fb;
    --sub: #6ac754;
    --body: #516171;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}


/* ================= TOP BAR ================= */
.lizy-header-topbar {
  background: white;
  padding: 20px 0;
  color: black;
}

.lizy-header-logo {
  font-size: 30px;
  font-weight: 700;
  color: black;
  text-decoration: none;
}
.lizy-header-logo img{
  height: 65px;
  width:65px;
  object-fit: contain;
}

.lizy-header-contact {
  gap: 30px;
}

.lizy-header-contact-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lizy-header-contact-box i {
  font-size: 20px;
  color:white;
  padding:5px 10px;
  background-color: var(--brand);
}

.lizy-header-contact-box span {
  font-size: 13px;
  opacity: 0.9;
}

.lizy-header-contact-box strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.dropdown-item:hover{
  background-color: var(--brand);
  color: white;
}

/* ================= NAV BAR ================= */
.lizy-header-navbar {
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  border: 1px solid white;
  border-width: 0px 0px 1px 0px;
}

.lizy-header-menu {
  gap: 35px;
}
.nav-bar-mail-btn{
  background-color: white;
  padding: 2px 10px;
}
.nav-bar-mail-btn a{
  color: black !important;
}

.nav-bar-mail-btn:hover{
  background-color: var(--brand);
}
.nav-bar-mail-btn:hover a{
  color: rgb(255, 255, 255) !important;
}

.lizy-header-link {
  color: rgb(0, 0, 0) !important;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
  font-size: 18px;
  opacity:0.9;
}

.lizy-header-link i {
  font-size: 18px;
  color: rgb(0, 0, 0);
  opacity:0.9;
}

.lizy-header-link:hover {
  color: rgb(0, 0, 0) !important;
  opacity:1;
}
.lizy-header-link:hover i{
  color: rgb(0, 0, 0) !important;
  opacity:1;
}

/* Dropdown */
.lizy-header-dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Social Icons */
.lizy-header-social a {
  color: white;
  margin-left: 15px;
  font-size: 16px;
}
.navbar-toggler{
  border-width: 1px !important;
}
.navbar-toggler-icon i{
  font-size:34px;
  color:black !important;
}
/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .nav-bar-mail-btn{
    width: 170px;
    text-align: center;
  background-color: var(--brand);
  padding: 2px 10px;
  padding-left:40px;
}
.nav-bar-mail-btn a{
  text-align: center;
  color: rgb(255, 255, 255) !important;
}

.nav-bar-mail-btn:hover{
  background-color: black;
}
.nav-bar-mail-btn:hover a{
 
  color: rgb(255, 255, 255) !important;
}






  /* Hide top bar */
  .lizy-header-topbar {
    display: none;
  }

  /* Hide social icons */
  .lizy-header-social {
    display: none !important;
  }

  /* Navbar spacing */
  .lizy-header-navbar {
    background-color: white;
    padding: 10px 15px;
  }

  /* Clean mobile menu */
  .navbar-collapse {
    background: #fff;
    margin-top: 10px;
    padding: 10px 0;
  }

  .lizy-header-menu {
    flex-direction: column;
    align-items: left;
    gap: 0;
  }

  .lizy-header-link {
    color:black !important;
    padding: 12px 0;
    font-size: 16px;
    text-align: left !important;
  }
  .lizy-header-link:active {
    color:black !important;
  }
  .lizy-header-link:hover {
    color:black !important;
  }
}






.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Optional: keep arrow rotation smooth */
.nav-item.dropdown > .dropdown-toggle::after {
  transition: transform 0.2s ease;
}

.nav-item.dropdown:hover > .dropdown-toggle::after {
  transform: rotate(180deg);
}




/* Stop page scroll when menu is open */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

/* Make mobile menu scrollable */
@media (max-width: 991px) {
  #lizyHeaderNav {
    max-height: calc(100vh - 80px); /* adjust 80px to navbar height */
    overflow-y: auto;
    -ms-overflow-style: none;     /* IE & Edge */
  scrollbar-width: none; 
  }
  

}








.courses-section {
  padding: 80px 0;
  background: #fff;
  font-family: system-ui, sans-serif;
}

.section-head h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-head p {
  max-width: 650px;
  margin: auto;
  color: #9a9a9a;
}

.courses-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 30px;
  margin-top: 60px;
}

/* LEFT CARD */
.course-feature {
  background: #000000;
  color: #fff;
  padding: 40px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.course-feature .tag {
  font-size: 13px;
  opacity: 0.7;
}

.course-feature h3 {
  font-size: 26px;
  margin: 15px 0;
  color:white;
}

.course-feature p {
  color: #ffffff;
  margin-bottom: 25px;
}

.course-feature .btn {
  background: #fff;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  width: fit-content;
  text-decoration: none;
}

/* RIGHT GRID */
.course-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.course-card {
  position: relative;
  height: 180px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.644);
}

.course-card * {
  position: relative;
  z-index: 2;
}

.course-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 5px;
}

.course-card .count {
  color: #ccc;
  font-size: 14px;
}

.course-card .icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 18px;
  background: rgba(255,255,255,0.15);
  color:white;
  padding: 6px 10px;
  border-radius: 50%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .course-items {
    grid-template-columns: 1fr;
  }
}

.stats-section {
  background: linear-gradient(rgba(0, 0, 0, 0.629), rgba(0, 0, 0, 0.7)),
              url("../img/image-5/count-bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  padding: 20px 0;
}

.stats-container {
  max-width: 100%;
  margin: auto;
  padding: 20px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
}

.stat-box .icon {
  font-size: 38px;
  flex-shrink: 0;
}

.stat-content h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.stat-content p {
  color: #fff;
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-box {
    justify-content: center;
  }
}





/* about section */
.about-section {
  background: #ffffff;
  padding:100px 0px; 
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* TAG */
.about-tag {
  display: inline-block;
  background: #ffedd5;
  color: #df8600;
  font-size: 18px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 0px;
}

/* TITLE */
.about-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #111;
}

.about-text {
  color: #555;
  font-size: 16px;
  margin-bottom: 25px;
}

/* MISSION BOX */
.mission-box {
  display: flex;
  gap: 15px;
  background: black;
  padding: 22px;
  border-radius: 18px;
  color: #fff;
  border: 1px solid #ffffff;
}

.mission-icon {
  font-size: 26px;
  color:white;
}

.mission-box h6 {
  color: white;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.mission-box p {
  color: white;
  opacity:0.9;
}

/* WHY */
.why-title {
  font-weight: 700;
  margin-bottom: 15px;
}

/* HIGHLIGHT GRID */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* CARD */
.highlight-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #000000;
  transition: all 0.rgb(0, 0, 0);
  cursor: pointer;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.314);
}

.highlight-card i {
  font-size: 22px;
  color: black;
}

.highlight-card span {
  font-size: 14.5px;
  color: #333;
}

/* HOVER */
.highlight-card:hover {
  background:var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

.highlight-card:hover i,
.highlight-card:hover span {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-title {
    font-size: 26px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* Center last highlight card */
.highlight-grid .highlight-card:last-child {
  grid-column: span 2;
  justify-content: center;
  text-align: center;
}





/* service section */
.services-section{
  padding:100px 0px;
}
.service-card {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 250px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-content {
  padding: 28px 24px 32px;
  text-align: center;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.service-content h3.highlight {
  color: #f9b233;
}

.service-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}


/* client section */
/* 
.client-carousal{
  padding:30px 0px 30px 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.259);
}
.client-carousal .owl-stage {
  transition-timing-function: linear !important;
}

.client-carousal .item {
      background: #ffffff;
      border-radius: 10px;
      
    }
.section-head{
  padding-bottom: 30px ;
}
    
    .client-carousal .item img {
      width: 100%;
      height: 100px;
      object-fit: contain;
      display: block;
    }

    @media (max-width: 768px) {
      .client-carousal .item img {
        height: 100px;
      }
    }

    @media (max-width: 480px) {
      .client-carousal .item img {
        height: 100px;
      }
    } */
.client-marquee {
  overflow: hidden;
  width: 100%;
}

.client-track {
  display: flex;
  width: max-content;
  animation: scroll 15s linear infinite;
}

.client-item {
  flex: 0 0 auto;
  margin-right: 60px;
}

.client-item img {

  height: 110px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .client-item img {
    height: 90px;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}







    /* banner */
    .banner {
            max-width: 100%;
            width: 100%;
            background: linear-gradient(135deg, #000000 0%, #17004b 50%, #000000 100%);
            padding: 80px 50px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(99, 102, 241, 0.3);
            padding-bottom: 40px;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-bottom: 40px;
        }

        .banner-heading {
            font-size: 48px;
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .banner-text {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .banner-button-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .banner-btn {
            padding: 14px 32px;
            
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            border: none;
        }

        .banner-btn-primary {
            background: white;
            color: var(--brand);
        }

        .banner-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .banner-btn-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(10px);
        }

        .banner-btn-secondary:hover {
            background: rgb(255, 255, 255);
            transform: translateY(-2px);
        }

        .banner-cards-container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 70px;
        }

        .banner-card {
            background: rgb(255, 255, 255);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
        }

        .banner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            background: rgb(255, 255, 255);
        }

        .banner-card-image {
            width: 100px;
            min-width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .banner-card-image img{
            width:100%;
            height:100%;
            object-fit:contain;
            
        }

       

        .banner-card-icon {
            font-size: 40px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }

        .banner-card-content {
            padding: 16px 20px;
            text-align: left;
            flex: 1;
        }

        .banner-card-title {
            font-size: 16px;
            font-weight: 700;
            color: rgb(0, 0, 0);
            margin-bottom: 6px;
        }

        .banner-card-text {
            font-size: 13px;
            color: rgba(0, 0, 0, 0.8);
            line-height: 1.4;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(10deg);
            }
        }

        @media (max-width: 1024px) {
            .banner-cards-container {
                grid-template-columns: 1fr;
            }

            .banner {
                padding: 40px 30px;
            }

            .banner-heading {
                font-size: 36px;
            }

            .banner-card {
                flex-direction: row;
            }
        }

        @media (max-width: 768px) {
            .banner-heading {
                font-size: 32px;
            }

            .banner-text {
                font-size: 16px;
            }

            .banner-btn {
                padding: 12px 28px;
                font-size: 14px;
            }

            .banner-card-image {
                height: 100px;
            }

            .banner-card-icon {
                font-size: 32px;
            }

            .banner-card {
                flex-direction: row;
            }
        }



        /* marque */
        .marquee-section {
  background: #000000;
  padding: 18px 0;
  overflow: hidden;
}

.marquee-wrapper {
  width: 100%;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  gap: 60px;
  animation: marquee 18s linear infinite;
}

.marquee-content span {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}








/* cta section  */

.cta-section {
            position: relative;
            max-width: 100%;
            width: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.507) 0%, rgba(0, 0, 0, 0.266) 100%),
                  url("../img/image-5/cta-bg.jpg") center/cover no-repeat;
                  background-attachment: fixed;
            padding: 80px 60px;
            overflow: hidden;
            
        }

        .cta-background-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            opacity: 0.15;
        }

        .cta-shape {
            position: absolute;
            border-radius: 50%;
            background: white;
            animation: float 20s infinite ease-in-out;
        }

        .cta-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .cta-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
            animation-delay: 5s;
        }

        .cta-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 50%;
            left: 10%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        .cta-container {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .cta-content {
            flex: 1;
            color: white;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            color: white;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .cta-description {
            font-size: 18px;
             color: white;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        


        

        .cta-button-wrapper {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-end;
            animation: fadeInRight 0.8s ease-out 0.8s both;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .cta-btn {
            padding: 18px 48px;
            font-size: 18px;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
        }

        .cta-btn-primary {
            background: white;
            color: var(--brand);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .cta-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
        }

        .cta-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
          }
          
          .cta-btn-secondary:hover {
          color: white;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .cta-btn-note {
            color: white;
            font-size: 14px;
            opacity: 0.9;
            text-align: right;
        }

        @media (max-width: 968px) {
            .cta-container {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }

            .cta-content {
                align-items: center;
            }

            .cta-button-wrapper {
                align-items: center;
                width: 100%;
            }

            .cta-btn {
                width: 100%;
            }

            .cta-btn-note {
                text-align: center;
            }

            .cta-features {
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 60px 30px;
            }

            .cta-title {
                font-size: 36px;
            }

            .cta-description {
                font-size: 16px;
            }
        }





        /* testimonial */


         .testimonial-section {
          padding:50px 0px;
            max-width: 80%;
            margin: 0 auto;
            width: 100%;
            padding-bottom:0px;
        }

        .testimonial-header {
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }

        .testimonial-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .testimonial-header h2 {
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .testimonial-header p {
            font-size: 15px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .owl-carousel {
            padding: 20px 0;
        }

        .testimonial-item {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }

        .testimonial-quote-icon {
            position: absolute;
            top: 20px;
            right: 30px;
            width: 60px;
            height: 60px;
            opacity: 0.1;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }

        .testimonial-star {
            color: #fbbf24;
            font-size: 20px;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.8;
            color: #374151;
            margin-bottom: 30px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f7bb5a 0%, #e99800 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .testimonial-author-info {
            flex: 1;
        }

        .testimonial-author-name {
            font-size: 18px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 4px;
        }

        .testimonial-author-title {
            font-size: 14px;
            color: #6b7280;
        }

        .testimonial-company {
            display: inline-block;
            margin-top: 4px;
            padding: 4px 12px;
            background: #f3f4f6;
            border-radius: 20px;
            font-size: 12px;
            color: #667eea;
            font-weight: 600;
        }

        /* Owl Carousel Custom Styling */
       

        .owl-theme .owl-nav button {
            background: white !important;
            color: var(--brand) !important;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin: 0 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .owl-theme .owl-nav button:hover {
            background: var(--brand) !important;
            transform: scale(1.1);
        }

        .owl-theme .owl-nav button span {
            font-size: 30px;
            line-height: 50px;
            color: var(--brand);
        }

        .owl-theme .owl-nav button:hover span {
            color: white;
        }

        .owl-theme .owl-dots {
            margin-top: 30px;
        }

        .owl-theme .owl-dots .owl-dot span {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .owl-theme .owl-dots .owl-dot.active span,
        .owl-theme .owl-dots .owl-dot:hover span {
            background: white;
            width: 30px;
            border-radius: 6px;
        }

        @media (max-width: 768px) {
            .testimonial-header h2 {
                font-size: 36px;
            }

            .testimonial-item {
                padding: 30px;
            }
        }




/* footer section */
.footer {
  box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.073);
  background: #ffffff;
  color: #cbd5e1;
  padding-top: 60px;
  margin-top: 60px;
  font-size: 15px;
  border: 1px solid var(--brand);
  border-width: 1px 0 0 0;
}

.footer-top {
  padding-bottom: 20px;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-logo {
   height: 70px;
  width:70px;
  object-fit: contain;
}

.footer-logo span {
  color: var(--brand);
}

.footer-text {
  text-align: justify;
  color: rgb(45, 45, 45);
  margin: 15px 0 20px;
  line-height: 1.7;
  margin-right: 20px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 20px;
  color: rgb(0, 0, 0);
  position: relative;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgb(45, 45, 45);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--brand);
  padding-left: 5px;
}

.footer-contact i {
  color:var(--brand);
  margin-right: 10px;
}
.footer-contact a{
 color: rgb(0, 0, 0);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #000000;
  color: #ffffff !important;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--brand);
  color: #ffffff;
}

.footer-bottom {
  background:var(--brand);
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  color: #ffffff;
}
.footer-bottom p{
  margin-bottom: 0;
  color:rgb(255, 255, 255);
}






/* about path */
.about-hero-section{
  background: linear-gradient(rgba(0, 0, 0, 0.675), rgba(0, 0, 0, 0.692)), url("../img/image-5/about-path-bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
}

.about-hero-section,
.about-hero-slide {
  min-height: 250px;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero-title {
  padding-top: 30px;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
}

.about-hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 30px;
  max-width: 650px;
}


 .about-hero-title { 
  font-size: 70px; 
  font-weight: 900; 
  letter-spacing: 0; 
  }

  @media (max-width: 768px) {
    .about-hero-title {
      font-size: 50px;
    }
  }



/* about section about page */

.aboutpage-section {
  padding: 100px 20px;
            max-width: 80% ;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 45% 55%;
            gap: 60px;
            align-items: center;
        }

        @media (max-width: 768px) {
            .aboutpage-section {
                max-width: 97%;
            }
        }

        .aboutpage-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            height: 100%;
        }

        .aboutpage-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .aboutpage-image-container:hover {
            transform: translateY(-5px);
        }

        .aboutpage-image-container:first-child {
            grid-row: 1 / 3;
        }

        .aboutpage-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .aboutpage-content-area {
            padding: 20px 0;
        }

        .aboutpage-heading {
            color: var(--brand);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .aboutpage-subheading {
            color: #1f2937;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .aboutpage-description {
            color: #6b7280;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .aboutpage-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .aboutpage-feature-box {
            background: white;
            padding: 30px 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.115);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .aboutpage-feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: var(--brand);
        }

        .aboutpage-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ffffff, #ffffff);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 24px;
            box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
        }

        .aboutpage-feature-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--brand);
            margin-bottom: 8px;
        }

        .aboutpage-feature-label {
            color: #6b7280;
            font-size: 14px;
            font-weight: 500;
        }

        @media (max-width: 968px) {
            .aboutpage-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .aboutpage-features-grid {
                grid-template-columns: 1fr;
            }

            .aboutpage-subheading {
                font-size: 32px;
            }
        }

        @media (max-width: 568px) {
            .aboutpage-image-grid {
                grid-template-columns: 1fr;
            }

            .aboutpage-image-container:first-child {
                grid-row: auto;
            }
            .about-image-mobile-res{
              display:none;
            }
        }






        /* our values timeline */

.values-section {
  width: 100%;
  padding: 0;
}

.values-wrapper {
  display: flex;
  width: 100%;
  gap: 0; /* NO SPACE BETWEEN BOXES */
}

/* LEFT BOX */
.values-left {
  width: 30%;
  background: #000;
  color: #fff;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.values-left h2 {
  color:white;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.values-left p {
  font-size: 18px;
  color: #cfcfcf;
  max-width: 420px;
}

/* RIGHT BOX */
.values-right {
  width: 70%;
  background: url('../img/image-5/our-values-bg-&-fast.jpg') center/cover no-repeat;
  background-attachment: fixed;
  border: 3px solid black;
  border-right-width:0px ;
  position: relative;
}

.values-overlay {
  width: 100%;
  height: 100%;
  padding: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background: rgba(0, 0, 0, 0.327);
}

/* VALUE CARDS */
.value-card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 30px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.value-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
}

.value-card i {
  font-size: 28px;
  margin-bottom: 15px;
  display: inline-block;
  color:rgb(255, 255, 255);
}

.value-card h4 {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color:rgb(255, 255, 255);
}




@media (max-width: 992px) {
  .values-wrapper {
    flex-direction: column;
  }

  .values-left,
  .values-right {
    width: 100%;
  }

  .values-overlay {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .values-left {
    padding: 60px 40px;
  }
}












/* our vision and our mission */

 .val-mis-sec-container {
            padding:80px 20px;
            max-width: 80%;
            margin: 0 auto;
        }

        .val-mis-sec-wrapper {
            background: white;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
            display: grid;
            grid-template-columns: 45% 55%;
            min-height: 500px;
            opacity: 0;
            transform: translateY(30px);
            animation: val-mis-sec-fadeInUp 0.8s ease forwards;
        }

        @keyframes val-mis-sec-fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .val-mis-sec-image-section {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 600px;
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .val-mis-sec-image-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .val-mis-sec-wrapper:hover .val-mis-sec-image-section img {
            transform: scale(1.08);
        }

        .val-mis-sec-content-section {
          background-color: #0b0b0b;
            padding: 60px;
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .val-mis-sec-content-card {
            position: relative;
            padding-left: 30px;
            opacity: 0;
            transform: translateX(30px);
            animation: val-mis-sec-slideIn 0.8s ease forwards;
        }

        .val-mis-sec-content-card:first-child {
            animation-delay: 0.3s;
        }

        .val-mis-sec-content-card:last-child {
            animation-delay: 0.5s;
        }

        @keyframes val-mis-sec-slideIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .val-mis-sec-content-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg,#ffa455,#e37310);
            border-radius: 3px;
        }


        .val-mis-sec-content-card:hover .val-mis-sec-icon-wrapper {
            transform: translateY(-5px) rotate(5deg);
        }

        .val-mis-sec-title {
            font-size: 30px;
            color: #ffffff;
            margin-bottom: 18px;
            position: relative;
            display: inline-block;
        }

        .val-mis-sec-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, #ffffff, #ffffff);
            border-radius: 2px;
        }

        .val-mis-sec-description {
            font-size: 15px;
            line-height: 1.8;
            color: #ffffff;
            margin-top: 25px;
        }

        .val-mis-sec-highlight {
            background: linear-gradient(135deg, #ffa14f, #e37310);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .val-mis-sec-wrapper {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .val-mis-sec-image-section {
                min-height: 400px;
            }

            .val-mis-sec-content-section {
                padding: 50px 40px;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
           
            .val-mis-sec-wrapper {
                border-radius: 18px;
            }

            .val-mis-sec-content-section {
                padding: 40px 30px;
                gap: 35px;
            }

            .val-mis-sec-image-section {
                min-height: 350px;
            }

            .val-mis-sec-title {
                font-size: 1.8rem;
            }

            .val-mis-sec-description {
                font-size: 1rem;
            }

            .val-mis-sec-icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .val-mis-sec-icon-wrapper svg {
                width: 30px;
                height: 30px;
            }
        }

        @media (max-width: 480px) {
          .val-mis-sec-container {
            padding:40px 0px;
            max-width: 90%;
           
        }
            .val-mis-sec-content-section {
                padding: 30px 20px;
                gap: 30px;
            }

            .val-mis-sec-image-section {
                min-height: 280px;
            }

            .val-mis-sec-title {
                font-size: 1.6rem;
            }

            .val-mis-sec-content-card {
                padding-left: 20px;
            }
        }







/* portfolio-page-portfolio section */

    .portfolio-section {
      padding: 80px 0;
      background: #f9fafc;
      
    }

    .portfolio-section-title {
      font-size: 42px;
      font-weight: 700;
      color: #111;
    }

    .portfolio-section-subtitle {
      font-size: 18px;
      color: #666;
      max-width: 620px;
      margin: 10px auto 0;
    }

    /* CARD */
    .portfolio-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      background: #fff;
      border-radius: 5px;
      overflow: hidden;
      text-decoration: none;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.151);
      transition: all 0.4s ease;
      position: relative;
    }

    /* IMAGE */
    .portfolio-card-img {
      height: 200px;
      overflow: hidden;
      flex-shrink: 0;
    }

    .portfolio-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    /* CONTENT */
    .portfolio-card-content {
      background-color: black;
      flex: 1;
      padding: 17px;
      display: flex;
      align-items: left;
      justify-content: left;
      text-align: left;
    }

    .portfolio-card-content h4 {
      font-size: 16px;
      font-weight: 400;
      color: #ffffff;
      margin: 0;
      transition: color 0.3s ease;
    }

    .portfolio-card-content i {
      font-size: 16px;
      font-weight: 400;
      padding-left: 10px;
      color: #ffffff;
      margin: 0;
      transition: color 0.3s ease;
    }

    /* HOVER EFFECTS */
    .portfolio-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.167), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .portfolio-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 25px 50px rgba(0,0,0,0.18);
    }

    .portfolio-card:hover::after {
      opacity: 1;
    }

    .portfolio-card:hover img {
      transform: scale(1.12);
    }

    .portfolio-card:hover h4 {
      color: white;
    }

    /* RESPONSIVE */
    @media (max-width: 575px) {
      .portfolio-card-img {
      height: 150px;
    }
      .portfolio-section {
        padding: 40px 0;
        background: #f9fafc;
      }

      .portfolio-section-title {
        font-size: 23px;
      }

      .portfolio-section-subtitle{
        font-size: 16px;
      }

      .portfolio-card-img {
        height: 200px;
      }
    }


#static-websites,#dynamic-websites,#ecommerce-websites{
   scroll-margin-top: 100px;
}


    /* Sticky Tabs Wrapper */
.website-sticky-tabs {
  position: sticky;
  top: 44px;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  z-index: 999;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.319);
}

/* Tabs Container */
.website-tabs-container {
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px;
}

/* Tab Item */
.website-tab {
  text-decoration: none;
  font-weight: 600;
  color: #555;
  padding: 10px 22px;
  border-radius: 30px;
  transition: all 0.3s ease;
  background: #f5f5f5;
}

/* Hover Effect */
.website-tab:hover {
  background: #000;
  color: #fff;
}

/* Active Tab */
.website-tab.active {
  background: #000;
  color: #fff;
}



@media (max-width: 768px) {
  .website-tabs-container {
    display:none;
  }
  .website-sticky-tabs{
    top:70px;
  }
}









.technologies-section {
  padding: 70px 0;
  background: linear-gradient(rgb(0, 3, 39), black);
}

.section-title {
  color: #fff;
  font-weight: 700;
}

.section-subtitle {
  color: #cbd5f5;
}

/* Card design same as before */
.tech-item {
  background-color: #ffffff;
  height: 100px;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-align: center;
  flex-shrink: 0;
  padding: 10px 15px;           /* important for marquee */
}

.tech-item img {
  width: 70px;               /* uniform size */
  height: 70px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.tech-item:hover img {
  transform: scale(1.08);
}

.tech-name {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  letter-spacing: 0.3px;
}

/* Marquee styles */
.tech-marquee {
  overflow: hidden;
  width: 100%;
}

.tech-track {
  display: flex;
  gap: 70px;                 /* space between cards */
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-right .tech-track {
  animation-direction: reverse;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Pause on hover optional */
.tech-marquee:hover .tech-track {
  animation-play-state: paused;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .tech-item {
    width: 130px;
    height: 80px;
  }

  .tech-item img {
    width: 40px;
    height: 40px;
  }

  .tech-name {
    font-size: 12px;
  }
}
