/* ========== Base Styles ========== */
body {
 font-family: 'Inter';
  margin: 0;
  padding: 0;
}
body:has(#menu-toggle:checked) {
  overflow: hidden;
  height: 100vh;
}



/*===== Header section===== */

/* Hero Section */
.header{
    height: auto;
    font-family: Poppins;
    padding-bottom: 0px;
    box-sizing: border-box;
}
.hero-section {
   font-family: Poppins;
  background: url("image.png") no-repeat center center;
  background-size: 100% 100%; /* Stretches image to fill */
  display: flex;
  align-items: flex-start !important;
  color: #ffffffff;
  position: relative;
  padding: 40px;
  min-height: 100%;
  height: auto;
  box-sizing: border-box;
}

/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Hamburger Icon */
.navbar-icon {
  position: absolute;
  top:65px;
  right: 60px;
  width: 35px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.navbar-icon span {
  display: block;
  height: 4px;
  width: 100%;
  background: #ffffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* Hover effect */
.navbar-icon:hover span {
  background: #2da9e0;
  box-shadow: 0 0 0px ;
  transform: scale(1.05);
}

/* Transform hamburger to X */
#menu-toggle:checked + .navbar-icon span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 6px);
    background: #ffffffff;
  height: 3px;
}
#menu-toggle:checked + .navbar-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .navbar-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -6px);
    background: #ffffffff;
   height: 3px;
}

/* Navbar Drawer */
.navbar-menu {
  position: fixed;
  top: 0;
  right: -530px;   /* hidden off-screen */
  width: 530px;
  height: 100%;
  background: #2da9e0;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  padding: 80px 20px; /* leave space for top */
  z-index: 1000;
}

.navbar-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 90px;
  margin-Left:30px;
  
}

.navbar-menu ul li {
  margin: 20px 0;
}

.navbar-menu ul li a {
  text-decoration: none;
  color: #ffffffff;
  font-weight: 400;
  display: block;
  transition: all 0.3s ease;
  font-family: 'Inter' ;
  font-size:40px;
}

.navbar-menu ul li a:hover {
  color: #ffffffff;
    transform: translateX(10px);

}

/* Show drawer when checked */
#menu-toggle:checked ~ .navbar-menu {
  right: 0;
}
/* Smooth fade-in + slide-up */
.hero-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s ease-out forwards;
}

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

.hero-content{
    margin-left:5px;
    padding:80px 0px 0px 0px;
    
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  transition: background 0.3s ease;
}

/* Default colors (dark background) */

#hamburger span {
  background: #fff;
  transition: background 0.3s ease;
}

#logo {
  width: 200px !important;      /* FIXED width */
  height: 64px;      /* Keeps ratio */
  object-fit: contain;
}


.scrolled {
  background: #fff;
}

.scrolled #hamburger span {
  background: #000000ff;
}



.hero-logo {
  margin: 30px 0px 0px 30px; /* center and add space below */
  max-width: 200px; /* adjust size as needed */
  height: auto;
  transition: transform 0.3s ease;
  position: sticky;
  
}

.ml-animate .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}


.hero-content h1 {
    font-family:Poppins;
    height:260;
    line-height:1.2;
  font-size: 48px;
  font-weight: 500;
  margin-top:-10px;
  width:90%;
  
}

.hero-content p {
  font-size:18px;
  margin-bottom:8px;
   margin-top:20px;
   line-height:1.5;
  width:80%;
  font-weight: 400;
}




.section-btn-outline-info0 {
  display: inline-flex;              /* centers text */
  align-items: center;
  justify-content: center;
  padding: 12px 32px;               /* more horizontal padding */
  border-radius: 12px;              /* fully pill‑shaped */
  border: 2px solid #2da9e0;        /* thicker border /          / outline style */
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;          /* needed for sparkles */
  overflow: hidden; 
  background: #2da9e0;
  margin-top:20px;
    display: inline-block;
}
.section-btn-outline-info0:hover{
  color: #ffffff;
}


.section-btn-outline-info0::before{
  content: '';
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:100%;
  background: rgba(255,255,255,.1);
}
.section-btn-outline-info0::after{
  content:'';
  position: absolute;
  top:0;
  left:-50%;
  width:50%;
  height:100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.4),transparent);
  transition:0.5s;
}
.section-btn-outline-info0:hover::after{
  left:100%;
}




/* ---------------- Reveal base (hidden before scroll) ---------------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.9s ease-out;
}

/* When visible */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------- Slide Down ---------------- */
.slide-down {
    transform: translateY(-40px);
}
.slide-down.active {
    transform: translateY(0);
}

/* ---------------- Slide left ---------------- */
.slide-left {
    transform: translateX(-40px);
}
.slide-left.active {
    transform: translateX(0);
}

.stat-item {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeStats 1s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: .2s; }
.stat-item:nth-child(2) { animation-delay: .35s; }
.stat-item:nth-child(3) { animation-delay: .5s; }

@keyframes fadeStats {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.stats-container {
    font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 160px 10px 10px 10px;
  display: flex;
  gap: 25px;
  font-weight: 200;
  margin:20px 20px 20px 0px;
  width:100%;
}

.stat-number {
 font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 500;
}
.stat-item{
  width:90% !important;
 
}
.stat-number .num {
     font-family: 'Plus Jakarta Sans', sans-serif;
  color: #dafff1; /* number color */
}

.stat-number .symbol {
     font-family: 'Plus Jakarta Sans', sans-serif;
  color: #2da9e0; /* symbol color (change as needed) */
}

.stat-label b {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  word-spacing:1px;
  opacity: 0.9;
  width:100%;
  
}
.stats-container > div:nth-child(3){
  margin-right:-40px;
}
.stats-container > div:nth-child(2){
  margin-left:-60px;
}


.zoom-in {
  opacity: 0;
  transform: scale(0.95);
  animation: zoomIn 0.9s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-left {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeLeft 1s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ------------------ FROSTED GLASS BOX ------------------ */
.box {
  position: relative;
  width: 450px;
  min-height: 500px;
  height: auto;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  margin: 120px 20px 40px 0px;
  box-sizing: border-box;
  overflow: visible;
}

.box h2 {
  font-size: 24px;
  margin: 0 0 10px 0;
  text-align: center;
  flex-shrink: 0;
}

/* ------------------ TITLE ------------------ */


/* ------------------ FORM ------------------ */
.enquiry-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  flex: 1;
  min-height: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.error-message {
  color: #ff6b6b;
  font-size: 14px;
  line-height: 1.3;
  margin-top: 5px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  font-weight: 500;
  min-height: 18px;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  text-align: left;
  padding-right: 2px;
}

.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

.form-group.error input,
.form-group.error select,
.form-group.error .dropdown-selected {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  padding: 14px 15px;
  border-radius: 12px;
  border: 2px solid  #ffffff80;
  background: rgba(0,0,0,0.2);
  outline: none;
  color: #ffffff80;
  font-size: 16px;
}

/* Custom Dropdown Styling */
.custom-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-selected {
  width: 100%;
  padding: 14px 15px;
  border-radius: 12px;
  border: 2px solid #ffffff80;
  background: rgba(0,0,0,0.2);
  color: #ffffff80;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.dropdown-selected:hover {
  border-color: #ffffff80;
  background: rgba(0,0,0,0.3);
}

.dropdown-selected::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #ffffff;
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.custom-dropdown.open .dropdown-selected::after {
  transform: rotate(180deg);
}

.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  margin-top: 5px;
  max-height: 200px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.custom-dropdown.open .dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-option {
  padding: 12px 15px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-option:last-child {
  border-bottom: none;
}

.dropdown-option:hover {
  background: rgba(43, 182, 241, 0.1);
  color: #2bb6f1;
  padding-left: 20px;
}

.dropdown-option.selected {
  background: #2bb6f1;
  color: white;
  font-weight: 500;
}

/* Hide original select */
.enquiry-form select {
  display: none;
}

.enquiry-form input::placeholder {
  color: #ffffff80;

}

/* ------------------ BLUE SUBMIT BUTTON ------------------ */
button.section-btn-outline-info1{
   display: inline-flex;              /* centers text */
  align-items: center;
  justify-content: center;
  padding: 10px 15px;               /* more horizontal padding */
  border-radius: 12px;              /* fully pill‑shaped */
  border: 2px solid #2da9e0;        /* thicker border /          / outline style */
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;          /* needed for sparkles */
  overflow: hidden; 
  background: #2da9e0;
    margin-left: auto;  /* pushes the button to the right */
    display: flex; 
  width:40%;
}

.section-btn-outline-info1:hover{
  color: #ffffff;
}


.section-btn-outline-info1::before{
  content: '';
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:100%;
  background: rgba(255,255,255,.1);
}
.section-btn-outline-info1::after{
  content:'';
  position: absolute;
  top:0;
  left:-50%;
  width:50%;
  height:100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.4),transparent);
  transition:0.5s;
}
.section-btn-outline-info1:hover::after{
  left:100%;
}




.slide-in {
  opacity: 0;
  transform: translateX(20px);
  animation: slideIn 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* ===== Reveal Base State ===== */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-zoom {
  opacity: 0;
  transition: 0.8s ease-out;
}

/* ===== Reveal Directions ===== */
.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-zoom {
  transform: scale(0.8);
}

/* ===== When Active ===== */
.active-reveal {
  opacity: 1 !important;
  transform: none !important;
}



/* ========== Responsive (Tablet & Mobile) ========== */
/* ================== Responsive ================== */

/* Large Devices (<=1200px) */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 15px;
    width: 500px;
  }
  .stats-container {
    gap: 60px;
  }
  
  .box {
    width: 300px;
    min-height: auto;
    height: 380px;
    margin: 120px 20px 40px 0px;
    padding: 25px 18px;
    gap:10px;
  }
  
  .box h2 {
    font-size: 22px;
    margin-bottom: 0px;
  }
  
  .enquiry-form {
    gap: 5px;
  }
  
  .blob-btn {
    margin-top: 8px;
    padding: 12px 20px;
  }
  .enquiry-form input {
    padding:5px;
  }
  .dropdown-selected{
    padding:5px;
  }
  button.section-btn-outline-info1 {
    width:50%;
    padding:18px 10px;
  }
  #logo{
    margin:0px;
  }
  .stats-container > div:nth-child(2){
  margin-left:-10px;
}
}

/* Medium Devices (<=992px) */
@media (max-width: 992px) {
  .header {
    min-height: auto;
    padding-bottom: 30px;
  }
  
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    min-height: auto;
  }
  .hero-content {
    margin-left: 0;
  }
  .hero-content h1 {
    font-size: 45px;
  }
  .hero-content p {
    font-size: 18px;
    width: 100%;
  }
  .stats-container {
    justify-content: center;
    margin-left: 0;
    padding-top: 100px;
    gap: 40px;
  }
  
  .box {
    width: 100%;
    max-width: 420px;
    margin: 60px auto 50px;
    padding: 32px 26px;
  }
  
  .box h2 {
    font-size: 21px;
    margin-bottom: 18px;
  }
  
  .enquiry-form {
    gap: 16px;
  }
  
  .blob-btn {
    margin-top: 10px;
    padding: 13px 20px;
  }
}

/* Tablets (<=768px) */
@media (max-width: 768px) {
  .header {
    min-height: auto;
    padding-bottom: 40px;
  }
  
  .navbar-icon{
    top:40px;
    right:40px;
  }
    .navbar-menu ul{
        width:300px;
        margin-left:10px;
        margin-top:50px;
        text-align:left;
    }
    .hero-logo {
  margin: 0px 20px 0px 0px; /* center and add space below */
  max-width: 200px; /* adjust size as needed */
  height: auto;
  transition: transform 0.3s ease;
    }

  /* Turn hero-section into grid */
  .hero-section {
    display:flex;
    grid-template-columns: 1.4fr 1fr;   /* left wider, right narrower */
    grid-template-rows: auto 1fr auto;  /* top, middle, bottom */
    column-gap: 24px;
    align-items: start;
    padding: 24px;
    min-height: auto;
    height: auto;
    background-size: cover;
    position: relative;
  }

  /* Left content (heading, text, button, stats) */
  .hero-content {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
    text-align: left;
    padding-top:180px;
  }
  .hero-content h1 { font-size:25px; line-height: 1.1; margin-bottom: 20px; width:400px; margin-top:-70px;}
  .hero-content p  { font-size: 12px; max-width: 520px; width: auto; margin-bottom: 20px; }
  .btn-primary     { font-size: 16px; padding: 10px 26px; }

  .hero-logo{
    top:-60px;
    margin-left:0px;
  }
  button.section-btn-outline-info1 {
    width:50%;
    padding:5px 10px;
  }
  .section-btn-outline-info0{
    padding:10px 10px;
    font-size:15px;
    margin-top:0px;
  }
  .stats-container > div:nth-child(2){
  margin-left:-30px;
}

  

  /* Glass card (hero-badge-card) on right side */
  .hero-badge-card {
    grid-column: 2;
    grid-row: 2;
    max-width: 340px;
    width: 300%;
    height: 299px;
    margin-top:340px;
   margin-left:90px;
    justify-self: end;
  }
  .badge-number { font-size: 34px; }
  .badge-text   { font-size: 18px; }
  .badge-arrow  { width: 36px; height: 36px; font-size: 22px; }

  /* Stats bottom-left */
  .stats-container {
    grid-column: 1;
    grid-row: 3;
    display: flex;
    gap: 15px;
    margin-top: 160px;
    padding-top: 0;
    padding-left:20px;
    align-items: center;
  }
  .stat-number { font-size: 24px; }
  .stat-label b { font-size: 18px; }

  .box {
    width: 100%;
    max-width: 380px;
    min-height: auto;
    height: auto;
    padding: 28px 22px;
    margin: 50px auto 60px;
    box-sizing: border-box;
  }
  
  .box h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .enquiry-form {
    gap: 5px;
  }
  
  .enquiry-form input,
  .enquiry-form select,
  .dropdown-selected {
    padding: 8px 10px;
    font-size: 15px;
  }
  
  .dropdown-option {
    padding: 11px 14px;
    font-size: 14px;
  }
  
  .blob-btn {
    margin-top: 8px;
    padding: 12px 20px;
    font-size: 15px;
    width: 100%;
  }
  
  .error-message {
    font-size: 13px;
    margin-top: 4px;
  }
}

/* Small Mobile Devices (<=576px) */
@media (max-width: 576px) {
  .header {
    min-height: auto;
    padding-bottom: 30px;
  }
  
  .hero-section {
    padding: 20px 16px;
    min-height: auto;
  }
  
  .box {
    max-width: 100%;
    width: calc(100% - 32px);
    padding: 24px 18px;
    margin: 40px auto 50px;
    min-height: auto;
    height: auto;
  }
  
  .box h2 {
    font-size: 19px;
    margin-bottom: 14px;
  }
  
  .enquiry-form {
    gap: 12px;
  }
  
  .enquiry-form input,
  .dropdown-selected {
    padding: 11px 13px;
    font-size: 14px;
  }
  
  .dropdown-option {
    padding: 10px 13px;
    font-size: 14px;
  }
  
  .blob-btn {
    margin-top: 6px;
    padding: 12px 18px;
    font-size: 15px;
    width: 100%;
  }
  
  .error-message {
    font-size: 12px;
    margin-top: 4px;
  }
}

/* Extra Small Mobile Devices (<=480px) */
@media (max-width: 480px) {
  .header {
    min-height: auto;
    padding-bottom: 30px;
  }
  
  .hero-section {
    padding: 16px 12px;
    min-height: auto;
  }
  
  .box {
    width: calc(100% - 24px);
    padding: 22px 16px;
    margin: 30px auto 40px;
  }
  
  .box h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .enquiry-form {
    gap: 11px;
  }
  
  .enquiry-form input,
  .dropdown-selected {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .dropdown-option {
    padding: 9px 12px;
    font-size: 13px;
  }
  
  .blob-btn {
    margin-top: 6px;
    padding: 11px 16px;
    font-size: 14px;
    width: 100%;
  }
  
  .error-message {
    font-size: 12px;
    margin-top: 3px;
  }
}
 

@media (max-width: 500px) {
  .navbar-icon{
    top:50px;
    right:30px;
  }
  .navbar-menu{
    padding:20px;
    margin: auto;
    width:430px;
    text-align:center;

  }
  .navbar-icon{
    margin-right:0px;
    margin-top:-18px;
  }
  .navbar-menu ul{
    text-align:center !important;
     margin:80px auto;

  }
  .hero-logo{
    margin:0px;
    
  }
  .hero-section {
     display: flex;              
  flex-direction: column;        
  justify-content: center;       
  align-items: center;          
  height: auto;
  background-size: cover;    
  background-position: center;
  padding: 20px 15px;
  text-align: center;
  }
  .col-md-8.col-lg-8{
    padding:0px;
    position:center;
  }

  .hero-content {
    padding:10px;
    position:center;
    width:100%;
    text-align:center;
    gap:0px;
    margin-top:50px;
  }

  .hero-logo{
    top:10px;
  }

  .hero-content h1 {
    margin:40px auto 0px;
    text-align:center;
    font-size:22px;
    width:100%;
      display: inline-block; 
  }

  .hero-content p { 
    text-align:center;
    font-size: 17px;
    padding-bottom:0px;
    padding-left:0px;
    margin-bottom:5px;
    width:95%;
    display: inline-block; 
  }

  .section-btn-outline-info0{
    margin-top:20px;
  }
 
  .stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;              /* spacing between items */
  margin: auto;
  padding: 40px 0 0px 0;
  width: 90%;             /* container width */
  max-width: 1000px;      /* keep it neat on large screens */
}

.stats-container > div {
  flex: 1 1 calc(50% - 20px); /* two equal-width items (minus gap) */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
}

/* Third item full width, centered */
.stats-container > div:nth-child(3) {
  flex: 0 1 100%;
  max-width: 100%;
}

/* Example background colors (remove/change as needed) */
.stats-container > div:nth-child(1) {
   padding-bottom:0px;
}

.stats-container > div:nth-child(2) {
  color: white;
  padding-bottom:0px;
}

.stats-container > div:nth-child(3) {
  color: white;
  margin-right:10px;
  padding-top:0px;
}

/* Typography */
.stat-number {
  font-size: 28px;
  font-weight: bold;
}

.stat-label b {
  font-size: 17px;
}
.stat-label{
  margin-top:5px;
  margin-bottom:5px;
}

.stat-para {
  font-size: 14px;
  margin-top:0px;
  line-height: 1.4;
  margin-bottom:0px;
}

  

  .box{
    width:350px;
    margin:auto 10px;
  }


  .hero-badge-card {
    margin-top:60px;
    width: 95%;
    max-width: 320px;
    height:300px ;
    margin-right:0px;
    display: inline-block;
    margin-left:0px; 
    margin-bottom:20px;
  }

  .badge-number {
    font-size: 40px;
    padding:30px 150px 0px 0px ;
    
  }

  .badge-text {
    font-size: 18px;
    text-align:left;
    line-height: 1.4;
  }

  .badge-arrow {
    width: 50px;
    height: 50px;
    font-size: 28px;
    top: 35px;
    right: 40px;
  }

  .student-photos {
    margin: 0 auto;              /* center the container itself */
    display: flex;
    justify-content: center;     /* center horizontally */
  }

  .photo-group {
    display: flex;               /* arrange photos in a row */
    justify-content: center;     /* center the row itself */
    align-items: center;         /* vertical centering */
    gap:0px;                   /* spacing between photos */
    margin: 0 auto;
    padding: 0;
    height: auto;
  }

  .student-photo,
  .photo-count {
    width: 32px;
    height: 32px;
    margin: 0;                   /* remove negative margins */
    object-fit: cover;
    border-radius: 50%;          /* optional: make them circular */
  }

  .photo-count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: #ddd;            /* optional: gray bg for count */
  }
}


/* ========== who we are Sections ========== */
.who-we-are {
  background: #fff;
  padding: 60px 0 70px;
   font-family: 'Inter';
   position: relative;
}

.img-fluid {
  object-fit:cover;
  transform-style:prevent-3d;
  cursor:pointer ;border-radius:8px;
  transition: transform 0.5s ease;
}

.img-fluid:hover {
  transform: rotateX(5deg) rotateY(5deg) scale(1.05);
  box-shadow:20px 20px 40px rgba(0,0,0,0.3)
 
}


.section-title {
  width: 400px;
  margin-bottom: 0px;
  padding:20px 20px 20px 20px;
  font-size: 48px;
  font-weight: 600;
  text-align: left;
}

.section-text {
  font-weight: 350;
  line-height: 1.6;
  font-size: 24px;
  color: #6b6b6bff;
  padding-left: 20px;
  margin-bottom: 0px;
  text-align: justify;
}
.section-text b{
  color:black;
}

.section-btn-outline-info{
  margin-left:0px;
}

a.section-btn-outline-info {
  display: inline-flex;              /* centers text */
  align-items: center;
  justify-content: center;
  padding: 12px 32px;               /* more horizontal padding */
  border-radius: 15px;              /* fully pill‑shaped */
  border: 2px solid #2da9e0;        /* thicker border /          / outline style */
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;          /* needed for sparkles */
  overflow: hidden; 
  background:#2da9e0;
  margin:20px;
}

a.section-btn-outline-info:hover{
  color: #ffffff;
}


a.section-btn-outline-info::before{
  content: '';
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:100%;
  background: rgba(255,255,255,.1);
}
a.section-btn-outline-info::after{
  content:'';
  position: absolute;
  top:0;
  left:-50%;
  width:50%;
  height:100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.4),transparent);
  transition:0.5s;
}
.section-btn-outline-info:hover::after{
  left:100%;
}



/* ---------------- Reveal base (hidden before scroll) ---------------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.9s ease-out;
}

/* When visible */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------- Slide Down ---------------- */
.slide-down {
    transform: translateY(-40px);
}
.slide-down.active {
    transform: translateY(0);
}

/* ---------------- Slide left ---------------- */
.slide-left {
    transform: translateX(-40px);
}
.slide-left.active {
    transform: translateX(0);
}

/* ---------------- Reveal base (hidden before scroll) ---------------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.9s ease-out;
}

/* When visible */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------- Slide Down ---------------- */
.slide-down {
    transform: translateY(-40px);
}
.slide-down.active {
    transform: translateY(0);
}

/* ---------------- Slide left ---------------- */
.slide-left {
    transform: translateX(-40px);
}
.slide-left.active {
    transform: translateX(0);
}

/* ---------------- Popup Button ---------------- */
.popup {
    transform: scale(0.6);
    transition: all 0.5s ease-out;
}
.popup.active {
    transform: scale(1);
}


/* Large screens (still same as default) */
@media (max-width: 1200px) {
  .who-we-are{
    margin-top:0px;
    padding: 50px 0 60px;
  }
  .section-text{
    width:470px;
    margin-bottom:10px;
    font-size:20px;
    text-align:justify;
    
  }
a.section-btn-outline-info{
  margin-top:20px;
}
button.section-btn-outline-info2{
  width:60% !important;
 
}
}

/* Medium screens (still same as default) */
@media (max-width: 992px) {
  /* Keep same as base CSS */
  
  
}

/* Tablets (still same as base CSS) */
@media (max-width: 768px) {
  /* Keep same as base CSS */
  .section-text {
     text-align:justify;
      width:100%;
      margin-bottom:0px;
  }
  a.section-btn-outline-info{
     float: none;
     margin-top: 24px;
     margin-left: 0;
     display: block;
     text-align: center;
     width: fit-content;
     margin: 24px auto 0;
  }

  .section-title {
    width: 100%;
    font-size: 35px;
    padding: 20px;
    text-align: left;
  }

  .section-text {
    width: 100%;
    font-size: 15px;
    padding: 0 20px;
    height: auto;
    margin-bottom: 20px;
     text-align:justify;
  }

  a.section-btn-outline-info {
    font-size: 16px;
    padding: 12px 10px;
    border-radius: 8px;
    margin: 20px 0px 0 20px; /* top margin 20px, left margin 0 */
    float: left; /* aligns the button to left */
    display: block;
    width: fit-content;
}
}
/* ========== Course Cards ========== */

/* Section */
.courses-section {
  background-color: #f7f9fb;
  padding: 40px 20px;
   font-family: 'Inter';
}

.courses-section-title {
  font-weight: 600;
  font-size:48px;
  margin:50px auto;
  
}

.courses-section-text {
  color: #6e7378;
  font-size: 24px;    /* font-size : 21 */
  margin: 20px auto 90px ;
  font-weight: 400;
  
}
/* Card */
.course-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
   position: relative;
   z-index:1;
}

.course-card:hover {
  transform: translateY(-8px) !important;
}

.course-image {
  width: 100%;
  height: 280px;
  background-size: cover;
   display: block;  /* IMPORTANT FIX */
  border-radius: 0;
  background-position: center;

}

/* Content */
.course-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
   position: relative;
   z-index:10;
}

.course-category {
  width:65px;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #88298e;
  background: #f6e7fa;
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.course-category.marketing {
 color: #88298e;
  background: #f6e7fa;
  width:25%;
}

.course-title {
  font-size:25px;
  font-weight: 600;
  margin-bottom: 10px;
  
}


.course-description {
  line-height: 1.6;
  color: #696868ff;
  font-size:17px;
  flex-grow: 1;
  margin-bottom: 0px;
  font-weight: 400;
   text-align:justify;

}

/* Button */
button.section-btn-outline-info2{
  display: inline-flex;              /* centers text */
  align-items: center;
  justify-content: center !important;
  padding: 10px 15px;               /* more horizontal padding */
  border-radius: 12px;              /* fully pill‑shaped */
  border: 2px solid #2da9e0;        /* thicker border /          / outline style */
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;          /* needed for sparkles */
  overflow: hidden; 
  background: #2da9e0 !important;
  z-index:20;
  width:40%;
  margin:auto;
}

.section-btn-outline-info2:hover{
  color: #ffffff;
}


.section-btn-outline-info2::before{
  content: '';
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:100%;
  background: rgba(255,255,255,.1);
}
.section-btn-outline-info2::after{
  content:'';
  position: absolute;
  top:0;
  left:-50%;
  width:50%;
  height:100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.4),transparent);
  transition:0.5s;
}
.section-btn-outline-info2:hover::after{
  left:100%;
}





/* ========== Reveal on scroll (shared system) ========== */
/* base hidden states */
.reveal {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

/* directions (initial offset) */
.reveal-up    { transform: translateY(40px); }
.reveal-down  { transform: translateY(-40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-zoom  { transform: scale(0.9); }

/* active (when element is in viewport) */
.reveal.active {
  opacity: 1 !important;
  transform: none !important;
}


/* ========== Responsive (Courses Section) ========== */
@media (max-width: 1200px) {
  .btn-enroll{
    margin:0px;
    align-self: center;
  }
  .course-category.marketing{
    width:35%;
  }

}

/* Medium screens (same as base CSS) */
@media (max-width: 992px) {
  /* Keep same */
}

/* Tablets (same as base CSS) */
/* Tablet view only (426px to 768px) */
@media(min-width: 530px) and (max-width: 768px) {
  .courses-section{
    position:relative;
  }
  .courses-section .row {
    display: flex;
    flex-wrap: nowrap;   /* prevent wrapping */
    overflow-x: auto;    /* enable horizontal scroll */
    gap: 16px;           /* spacing between cards */
  }
  .courses-section-title{
    line-height: 1;
  }
  .courses-section-text{
     font-size: 20px;
  }

  .course-card {
    min-width: 260px;   /* ensure each card has space */
    flex: 0 0 auto;     /* prevent shrinking */
  }
}

/* Mobile screens */
/* ========== Mobile Responsive (max 425px) ========== */
@media (max-width: 500px) {
  .courses-section {
    padding: 40px 15px;

  }
  .courses-section-title {
    line-height: 1;
    font-size:35px;
    text-align:center;
  }
  .text-center.mb-5
  {
    margin-bottom: 0px;
  }

  .courses-section-text {
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 32px;
    text-align:justify;
    
  }
  .course-category.marketing{
    width:45%;
  }
  .course-card {
    padding:0px 0px 0px 0px ;
    margin: 0 auto;
     width:95%; 
  }

  .course-image {
    height: 280px;
    border-radius: 12px;
   
  }

  .course-title {
    font-size: 23px;
  }

  .course-description {
    font-size: 17px;
    line-height: 1.5;
  }

  .btn-enroll {
    margin-top:20px;
    width: 120px;
    padding: 10px 0px;
    font-size: 14px;
    margin-left: 15px 0;
    text-align: center;
  }
  .col-lg-4{
    padding-top:30px;
    padding-bottom:30px;
  }
  .course-category{
    font-size:13px;
    width:100px;
    text-align:center;
    margin-bottom:20px;
  }
  .course-category.marketing{
    width:30%;
  }
  button.section-btn-outline-info2{
    margin-top:20px;
  }
}


/* ========== Features  ========== */
.features-section{
  padding:50px 0px;
   font-family: 'Inter'
}

.features-section-feature-item {
  flex: 1 1 300px; /* ensures boxes don't shrink below 300px */
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 32px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 1s !important;
  height:100%;
}
.features-section-feature-item:hover {
    transform:perspective(100px) rotateX(2deg) translateY(-50px) !important;
}

.features-section-title{
    height:50px;
  font-weight: 600;
  font-size:48px;
}
.features-section-text{
  font-size:24px;      /* font-size:24px; */
 margin:30px auto;
  color: #6e7378;
  font-weight:400;
}
.features-section-feature-title{
  font-weight:500;
  font-size:20px;
}
.features-section-feature-text{
  font-size:18px;
  margin-bottom:0px;
  color: #6e7378;
  font-weight:400;
}

.feature-icon {
   width: 50px;
  height: 50px;
  background: #ffffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 20px;
  background-repeat:no-repeat;
  transition:1s;
}

.features-section-feature-item:hover .feature-icon{
  transform:translateY(-10px) translateX(-5px)
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-down {
     opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-down.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================= Responsive (Features section) ================= */
/* ========== Responsive Features Section ========== */

/* Large screens (≤ 1200px) */
@media (max-width: 1200px) {
  .features-section-text {
  
    font-size: 21px;
  }
  
  .features-section-feature-item {
    padding: 32px 24px;
  }
  
  .features-section-title {
    font-size: 42px;
  }
}

/* Medium screens (≤ 992px) */
@media (max-width: 992px) {
  .features-section-text {
    width: 100%;
    margin-left: 0;
    font-size: 16.5px;
  }
  
  .features-section-title {
    font-size: 38px;
  }
}

/* Small screens (≤ 768px) */
@media (max-width: 768px) {
  .features-section {
    margin-top: 30px;
  }

  .features-section-text {
    width: 100%;
    margin: 0 auto 20px;
    font-size: 20px;
    text-align: center;
  }

  .features-section-title {
    font-size: 48px;
    margin-bottom:40px;
    text-align: center;
  }

  .features-section-feature-item {
    padding: 20px 15px;
    text-align: center;
    margin-bottom:30px;
  }

  .feature-icon {
    margin: 0 auto 15px;
  }
}

/* Extra small screens (≤ 430px) */
@media (max-width: 500px) {
  .features-section {
     display: flex;
    padding: 20px 15px 40px 15px;
    flex-wrap:wrap;
    gap:20px;
  }
   .features-section .row > [class*="col-"] {
    margin-bottom: 30px; /* spacing between cards */
  }
  .features-section-title {
    width:70%;
    font-size: 35px;
    margin: 20px auto;
    text-align: center;
    height: auto;
  }

  .features-section-text {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    height: auto;
  }

  .features-section-feature-item {
    text-align: center;
    padding: 18px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .feature-icon {
    margin: 0 auto 14px; /* center icon */
    width: 60px;
    height: 60px;
  }

  .features-section-feature-title {
    font-size: 22px;
    margin-bottom: 8px;
    text-align: center;
  }

  .features-section-feature-text {
    line-height: 1.6;
    text-align: center;
    height: auto;
    font-size: 15px;
  }
  .feature-icon{
    margin-left:0px;
    border-radius:20px;
  }
}
@media (max-width: 320px){
  .features-section {
    margin:0px;
  }
  .features-section-title {
    margin:0px 0px 20px 10px;
    width:250px;    
  }
  .features-section {
    margin-top:190px;
    padding: 40px 15px;
  }
  .features-section-feature-title{
    font-size:20px;
  }
  .features-section-feature-text{
    font-size:18px;
  }
}



/*============== logo ============= */
.logo {
  text-align: center;

  /* Smooth gradient: light → sky blue → light */

  padding: 60px 0px;
  font-family: 'Inter';
}


.logo-text {
  margin-bottom: 80px;
  height: 50px;
  font-weight: 600;
  font-size: 48px;
  color: #000;
}

.carousel-container {
  margin: auto;
  height:350px;
  overflow: hidden;
  display: flex;
   white-space: nowrap;
  position: relative;
  justify-content: center;
    align-items: center; 
   background: linear-gradient(
    to bottom,
    #e9faff 0%,      /* very light sky blue (top) */
    #20bee640 45%,   /* main sky blue (middle) */
    #e9faff 100%     /* very light sky blue (bottom) */
  );
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* White background box for each logo */
.logo-box {
  width: 230px;
  height: 230px;
  background: #ffffff;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

/* Logo sizes inside the box */
.logo-box img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  display: block;
}


.carousel-slide {
  flex: 0 0 auto;
  padding: 20px;
  justify-content: center; /* horizontal */
  align-items: center;
}


.reveal-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s ease-in-out;
}

.reveal-down.active {
  opacity: 1;
  transform: translateY(0);
}


/* ================== Responsive ================== */

/* Large desktops (same as default, no change needed) */
@media (max-width: 1200px) {
  /* keep same styles as main */
}

/* Medium desktops (same as default, no change needed) */
@media (max-width: 992px) {
  /* keep same styles as main */
}

/* Tablets */
@media (max-width: 768px) {
  .logo-text {
    font-size: 42px;
    height: auto;
    margin-bottom: 24px;
  }

  .carousel-slide {
    min-width: 50%; /* show 3 logos per view */
    padding: 15px;
  }

  .carousel-slide img {
    width: 160px;
  }
}

/* Small mobiles */
@media (max-width: 500px) {
  .logo{
    margin-bottom:70px;
    margin-top:30px;
  }
  .logo-text {
    font-size: 28px;
    margin: 0 auto 20px;
    padding: 0 12px;
    line-height: 1.2;
  }

  .carousel-slide {
    min-width: 50%; /* show 2 logos per view */
    padding: 10px;
  }

  
}


/*  testimonials  */

.testimonials-section{
  margin-top:10px;
  padding:40px 0px;
  height:60p0x;
   font-family: 'Inter';
   margin-bottom:30px;
  
}

.testimonials-section-section-title{
   height:50px;
  font-weight: 600;
  font-size:48px; 
}

.colored-text{
  color: #88298e;
}

.testimonials-section-section-text{
  margin-top:30px;
  font-size:24px;     /* font-size:21px;*/
  margin-bottom:80px;
  color: #000000ff;
  font-weight:400;
}

.testimonial-card {
  position: relative;
  padding: 30px;
  border-radius: 30px;
   min-height: 300px;   /* ★ Consistent card height */
  width: 100%;
  /* Light tint mix of #88298e (purple) + #2da9e0 (blue) */
  background: linear-gradient(
    145deg,
    rgba(211, 44, 223, 0.18),  /* 10% purple tint */
    rgba(35, 170, 228, 0.14)   /* 10% blue tint */
  );

  backdrop-filter: blur(25px) saturate(170%);
  -webkit-backdrop-filter: blur(25px) saturate(170%);

  border: 1px solid rgba(255, 255, 255, 0.45);

  /* Puffy Neumorphic shadows */
  box-shadow:
    8px 8px 20px rgba(0, 0, 0, 0.18),
    -8px -8px 20px rgba(255, 255, 255, 0.65),
    inset 4px 4px 10px rgba(0, 0, 0, 0.12),
    inset -4px -4px 10px rgba(255, 255, 255, 0.6);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover lift */
.testimonial-card:hover {
  transform: translateY(-8px);
}


/* Hover lift */
.testimonial-card:hover {
  transform: translateY(-8px);
}


.stars {
  color: #f5bc01ff; /* yellow stars */
  font-size: 14px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-weight:600;
  font-size: 20px;
  line-height: 1.6;
  color: #000000ff;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight:600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  font-size: 16px;
  color: #000000ff;
}

.iconss {
  display: none;
  margin-top:50px;
   justify-content: center;
  gap: 10px; /* space between buttons */
}


.arrow-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 9px; /* rounded edges */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #000000ff;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.3s ease;
}

.arrow-btn:hover {
  background-color: #f5f5f5;
  border-color: #aaa;
}

/* Reveal scroll animation */
.test-reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.test-reveal-up.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.test-reveal-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.test-reveal-down.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ========== Responsive Testimonials Section ========== */

/* Large screens ≤ 1200px */
@media (max-width: 1200px) {
  .testimonials-section {
    padding: 40px 40px;
    margin-top: 40px;
  }

  .testimonials-section-section-title {
    font-size: 42px;
  }

  .testimonials-section-section-text {
    font-size: 21px;
    margin-bottom: 60px;
  }

  .testimonial-card {
    padding: 25px;
  }
}

/* Medium screens ≤ 992px */
@media (max-width: 992px) {
  .testimonials-section {
    padding: 0 30px;
    margin-top: 35px;
  }

  .testimonials-section-section-title {
    font-size: 38px;
  }

  .testimonials-section-section-text {
    font-size: 20px;
    margin-bottom: 50px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .author-name {
    font-size: 15px;
  }

  .testimonial-text {
    font-size: 13.5px;
  }

  .arrow-btn {
    width: 45px;
    height: 45px;
    font-size: 17px;
  }
}

/* Small screens ≤ 768px */
@media (max-width: 768px) {
  .testimonial-item {
    margin: 0 auto 20px;
    display: block;
    width: 90%;
    max-width: 420px;
  }
    
  .testimonials-section{
    height: auto;
    margin-top:10px;
    padding-bottom: 60px;
  }
  .testimonial-card{
    margin-bottom:0px;   
    min-height: 250px;
    padding: 20px;

  }

  .testimonials-section-section-title{
    font-size:36px;
    margin-bottom: 12px;
  }

  .testimonials-section-section-text{
    font-size:15px;
    margin: 0 auto 20px;
    line-height: 1.5;
  }
  .text-center{
    margin-bottom: 10px;
  }

  .testimonial-text{
    font-size:18px;
  }
  .iconss{
    display:flex;
    margin-top:30px;
  }
  .testimonial-item {
    display: none !important; /* Hide all initially */
  }
  .testimonial-item.active {
    display: block !important;
  }
   
  
}

/* Extra small screens ≤ 430px */
@media (max-width: 500px) {

    .testimonial-item{
        width:100%;
        max-width: 360px;
        margin: 0 auto 24px;
    }
  .testimonials-section{
    height:auto;
    margin-top:10px;
    padding-bottom: 50px;
  }
  .testimonial-card{
    margin-top:0px;
    margin-bottom:0px;
  }

  .testimonials-section-section-title{
    font-size:33px;
  }

  .testimonials-section-section-text{
    font-size: 15px;
    margin-bottom:0px;
     margin-top:33px;
  }
  .text-center{
    margin-bottom: 0px;
  }

  .testimonial-text{
    font-size:18px;
  }
  .iconss{
    margin-top:0px;
  }
  .col-lg-4{
    padding-top: 30px;
    padding-bottom: 30px;
  } 
  
}
@media (max-width: 320px){
  .iconss{
    margin-top:-20px;
  }
    .testimonial-card{
    margin-top:-30px;
    margin-bottom:0px;
  }
  .testimonials-section{
    margin-bottom:90px;
  }
}



/* =========cta section========= */

/* cta section */
.cta-section {

  font-family: 'Inter';
  margin: 40px 80px;
  background: #2da9e0;
  padding: 40px 30px 40px 30px;
  color: #fff;
  border-radius: 20px;
  height: auto; /* desktop height */
}

.cta-heading {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 15px 0;
  margin-top:30px;
}

.cta-text {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 0;
  width:90%;
}

/* Inputs */
.form-control {
  margin-top: 20px;
  width: 100%;
  height: 60px;
  border-radius: 10px;
  border: none;
  margin-bottom: 0px;
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
  font-weight:500;
}

.form-control::placeholder {
  color: #2da9e0;
  font-weight: 400;
}

/* Contact Button */
.btn-submit {
  background: white;
  width: fit-content;     /* button becomes small */
  padding: 12px 28px;     /* clean button size */
  color: #2da9e0;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-left: auto;       /* pushes button to the RIGHT */
  margin-top: 25px;
  transition: all 0.3s ease;
  font-size: 18px;
}

.btn-submit:hover {
  background: #f5f5f5;
  color: #2298cf;
}


.error {
    color: rgb(255, 255, 255);
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
        }
.form-control.invalid {
    border: 2px solid red;
        }
.form-control.valid {
    border: 2px solid rgb(10, 233, 10);
            }

/* ================== CTA RESPONSIVENESS ================== */

/* Large screens down (<=1200px) */
@media (max-width: 1200px) {
  .cta-section {
    margin: 30px 50px;
    padding: 50px 40px 20px 25px;
    height: auto; /* let it grow naturally */
  }

  .cta-heading {
    font-size: 40px;
  }

  .cta-text {
    font-size: 17px;
  }
}

/* Medium screens (<=992px) */
@media (max-width: 992px) {
  .cta-section {
    margin: 25px 40px;
    padding: 40px 30px 20px 20px;
    height: auto;
  }

  .cta-heading {
    font-size: 34px;
    line-height: 1.3;
  }

  .cta-text {
    font-size: 16px;
  }

  .btn-contact {
    margin-top: 40px;
    width: 160px;
    font-size: 15px;
  }
}

/* Tablets (<=768px) */
@media (max-width: 768px) {
  .cta-section {
    margin: 20px;
    padding: 35px 25px 20px 25px;
    border-radius: 12px;
    text-align: center;
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-text {
    font-size: 15px;
  }

  .form-control {
    height: 55px;
    font-size: 15px;
  }

  .btn-submit {
    width: 50%;
    margin: 25px auto 0;  /* center on mobile */
    font-size: 16px;
  }
}


/* Small mobiles (<=430px) */
@media (max-width: 500px) {
  .cta-section {
    width:95%;
    margin: 0 auto ;
    height: auto; /* Let content decide height */
    padding: 20px;
  }

  .cta-heading {
    font-size: 35px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align:left;
  }


  .cta-text {
    width:100%;
    text-align:left;
    font-size: 13px;
    margin-bottom: 20px;
  }

  /* Show only mobile button */
  .btn-submit {
      width: 50%;
    font-size: 15px;
    float: right;
  }
}


/* ========================== FOOTER ================= ===== */

/* ===== Premium gradient using existing blue palette ===== */
.custom-footer {
  background: linear-gradient(
    135deg,
    #050508 0%,          /* deep near-black */
    #00172a 25%,         /* dark blue-black */
    
    #4AB3FF 65%,         /* electric blue accent */
    #3b1a5a 80%,         /* dark purple-blue */
    #A06CFF 100%         /* neon purple edge */
  );
  color: #fff;
  position: relative;
  padding: 80px 0 0px;
  overflow: hidden;
  margin:40px 0 0 0;
}

/* Shifted columns - 2 tab spaces right (approx 32px) */
.shifted-col {
  margin-left: 112px;
}
/* Move ONLY 2nd column 1 tab space more right */
.footer-col:nth-child(2) .shifted-col {
  margin-left: 160px;  /* 32px (current) + 16px (1 tab) = 48px */
}


/* Menu title styling - matches footer text style */
.footer-menu-title {
  font-size: 18px;
  margin-bottom:30px;
  color: #ffffffcc;
  font-weight: 500;
}

/* Layout */
.footer-main-row {
  align-items: flex-start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  max-width: 100px;
  height: auto;
}

.footer-text {
  max-width: 260px;
  font-weight: 500;
  color: #ffffffcc;
  line-height: 1.7;
  margin-top:30px;
  font-size:18px;
}

/* Social buttons */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.socials {
  margin-top:40px;
  margin-left:70px;
  display: flex;
  align-items: center;
  gap: 18px;
  
}

.socials li {
  list-style: none;
}
.socials li a {
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  box-shadow:
    0 6px 14px rgba(0,0,0,0.6),
    inset 0 3px 6px rgba(255,255,255,0.18),
    inset 0 -4px 10px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

/* Top shine */
.socials li a::before {
  content: "";
  position: absolute;
  top: -20px;
  width: 100%;
  height: 60%;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  filter: blur(8px);
}

/* Icon size */
.socials li a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Hover effect */
.socials li a:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 10px 18px rgba(0,0,0,0.75),
    0 0 14px rgba(0,150,255,0.6);
}



/* Center menu */
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
}

.footer-link {
  font-size: 18px;
  font-weight: 400;
  color: #ffffffcc;
  text-decoration: none;
  position: relative;
}

/* Right address */
.footer-address h5 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-address p {
  margin: 0;
  color: #ffffffcc;
  line-height: 1.6;
  font-size:18px;
}

.footer-bottom {
  margin-top: 120px !important;
  text-align: center;
}

/* STUDIO-style text */
.footer-bottom span {
  font-family: 'Anton', sans-serif;
  font-size: clamp(110.5px, 5vw, 120px);
  
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
   line-height: 0;

  /* Gradient INSIDE the text */
  background: linear-gradient(
    to right,
    #050508 0%,          /* deep near-black */
    #095592ff 25%,         /* dark blue-black */
    
    #095592ff 65%,         /* electric blue accent */
    #3b1a5a 80%,         /* dark purple-blue */
    #A06CFF 100%    
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* Slight horizontal stretch like STUDIO */
  transform: scaleX(1.05);

  /* Animation */
  opacity: 0;
  transform: translateY(30px) scaleX(1.05);
  animation: premiumReveal 1.2s ease forwards;
}



@keyframes premiumReveal {
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}


/* ===== Hover-only animations ===== */
.hover-pop {
  transition: transform 0.3s ease;
}

.hover-pop:hover {
  transform: translateY(-2px) scale(1.05);
}

/* Underline left-to-right on hover */
.underline-anim {
  position: relative;
}

.underline-anim::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: #ffffffcc;
  transition: width 0.3s ease;
}

.underline-anim:hover::after {
  width: 100%;
}

.underline-animate{
  position: relative;
}

.underline-animate::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: #ffffffcc;
  transition: width 0.3s ease;
}

.underline-animate:hover::after{
  width:50%;
}

@media (max-width: 1200px){
  .footer-bottom span{  
    font-size:74px;
    line-height:1;
  }
} 


/* ===== Responsiveness: follow existing breakpoints ===== */
@media (max-width: 992px) {
  .footer-logo {
    max-width: 140px;
  }
  .footer-text {
    max-width: 220px;
  }
  .footer-menu {
    margin-top: 20px;
  }
  
}

@media (max-width: 768px) {
  .custom-footer {
    text-align: left;
    padding: 50px 20px 40px;
    padding-bottom:0px;
  }
  .footer-main-row {
    row-gap: 32px;
  }
  .shifted-col {
    margin-left: 0;
  }
  
  .socials{
    margin-left:0px;
    padding:0PX;
  }
  .footer-bottom{
    margin-top:40px !important;
  }
  .footer-bottom span{  
    font-size:54px;
    line-height:1;
  }
  
}

@media (max-width: 500px) {
  .custom-footer{
    margin:40px 0 0 0;
    padding-bottom:0px;
  }
  .footer-text {
    max-width: 100%;
  }
  .footer-menu {
    align-items: flex-start;
  }
  
  .shifted-col{
    margin:0px !important;
  }
  .footer-bottom span{
    margin-left:-30px;
    font-size:66px;
    line-height:1;
  }
}