* {
  padding: 0;
  margin: 0;
}
body {
  font-family: "Poppins";
  background-color: #fff6e3;
}
nav {
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0,0,0, 0.1);
 
}

nav ul{
  font-size: 2.5vh;
  font-weight: 300;
  font-family: Lexend Deca;
  max-width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav li {
  height: 80px;
}

nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}

nav a:hover {
  background-color: #F0F0F0;
}

nav li:first-child {
  margin-right: auto;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 70vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.171);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px  rgba(0, 0 , 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.sidebar li {
  max-width: 100%;
}

.opposite-item {
    padding: 10px;
    position: absolute;
    top: 10px;
    right: -100px;
    width: 200px;
}

.sidebar a {
  max-width: 100%;
}

.menu-button {
display: none;    
}

@media(max-width: 800px){
.hideOnMobile {
display: none;
}

.menu-button {
  display: block;
}
}
@media(max-width: 400px){
  .sidebar {
      width: 100%;
  }
  }


button {
  margin: 0 auto;
  display: block;
}

.logo img {
  height: 80px;

}


.welcome-delta-container {

  background-color: rgb(54, 47, 239);
  width: 100%;
  height: auto;
}

.welcome-delta-container p {
  padding: 10px;
  font-style: italic;
  color: yellow;
}

#scrollBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
   /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: rgb(216, 77, 190); /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 1.5vh; /* Increase font size */
  margin-left: 20px;
}

#scrollBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}


@media (max-width : 580px) {
  
iframe {
  width: 100%;
  height: auto;
 
}    

nav ul a{
  padding: 5px;
  width: 100%;
  height: auto;

}
.img-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 25px; 
 
}
.why-delta-container img {
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 30px;
}

}

@media (min-width : 580){
  .scrollBtn {
    padding: 10px; /* Some padding */
    border-radius: 7px; /* Rounded corners */
    font-size: 12px; /* Increase font size */
    color: #000000;
  }
 
} 

img {
    max-width: 100%;
    height: auto;
}


.img-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 30%; 
 
}



p {
  font-family: "Poppins",Sans-Serif;
  text-align: center;
    font-size: 3.5vh;
    
}

/* body {
    font-family: 'Aclonica';
} */

h1 {
  font-size: 6vh;
  font-weight: 300;
  color: rgb(255, 255, 255);
  font-family: "Poppins",sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
    /* text-shadow: rgb(23, 238, 63) 0px 0px 35px; */
}

h3 {
  text-align: center;
  font-family: "Poppins", serif;
}

* {box-sizing:border-box}

iframe {
  
  display: block;
  margin: 0 auto;
  
          
  
}


form {

  background: #ffffff;
  padding: 20px;
  border: 8px solid #FFCCEA;
  box-shadow: 10px 12px lightblue;
  width: 500px;
  height: auto;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input, textarea {
  
  
  width: 80%;
  font-size: 16px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-button {
  max-width: 100%;
  padding: 10px;
  background: #007BFF;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.form-button:hover {
  background: #0056b3;
}

.button-why-delta button {
 
  font-size: 20px;
  padding: 20px 20px;
  border-radius: 50%;
  font-family: "Poppins", serif;
  background-color: rgb(181, 229, 250);
  
  
}
.button-why-delta button:hover {
 background-color: rgb(87, 194, 240);
transition: 0.5s;

}


.why-delta-container {
 display: flex;
  flex-wrap: wrap;          /* CRITICAL: Automatically drops items to the next line */
  justify-content: center;  /* Centers the items nicely on the new lines */
  align-items: center;
  gap: 30px;                /* Keeps a nice gap between rows and columns */
  /* padding: 30px 20px; */
  width: 100%;              /* Uses the full available horizontal space */
  height: auto;             /* Grows vertically to fit the wrapped items */
  /* border: 4px solid #FFD966; */
  /* border-radius: 24px; */
  background-color: #FFF9E6; 
  box-sizing: border-box;   /* Ensures padding doesn't push the container out of view */
  
}

.why-delta-column {
  opacity: 0; /* Keeps them hidden until they scroll into view */
  animation: smoothSlideUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
  animation-play-state: paused; /* Controlled by JavaScript */
}

.img-container {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background-color: #FFFFFF;
  border: 3px solid #FFD966;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* Idle Animation: The image floats continuously after the entry ends */
  /* We add a 0.8s delay so it doesn't float until the slide-up finishes */
  animation: gentleFloat 4s ease-in-out infinite 0.8s;
  /* width: 120px;
  height: 120px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
}

.img-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* --- KEYFRAMES (The Magic) --- */

/* 1. The Refresh Trigger: Slides up and expands slightly into place */
@keyframes smoothSlideUp {
  0% {
    transform: translateY(50px) scale(0.95);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* 2. The Continuous Loop: Slowly sways up/down and tilts like a balloon */
@keyframes gentleFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(3deg); /* Moves up 8px, tilts slightly right */
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.why-delta-container h3 {
  font-family: 'Comic Sans MS', 'Chalkboard SE', sans-serif; /* Friendly fonts */
  color: #FF6F61;
  margin-top: 15px;
  font-size: 3vh;
}



@media screen and (max-width: 1186px) {
  .why-delta-container {
    width: 100%;
    height: auto;
    display: inline-block;
    margin-bottom: 20px;
    justify-content: center;
   /* border: 4px solid yellow; */
  }
}
@media (max-width: 767px) {
  .why-delta-container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    /* margin: 10px;
    padding: 0px; */
  }

  .why-delta-column p {
    font-size: 1.8vh;
  }
}

.why-delta-heading h2 {
  background-color: rgb(255, 246, 227);
  font-family: Lexend Deca;
  font-size: 5vh;
  font-weight: 400;
  max-width: 100%;
  color: #007BFF;
  text-align: center;
display: block;
margin: 20px;
}

.why-delta-column {
  display: inline-block;
  max-width: 300px;
  height: auto;
border-radius: 25px;
margin-bottom: 20px;


}

.why-delta-column img {
  
  width: 200px;
  height: 200px;
  object-fit: cover;
 
}
  
.why-delta-column h3{
 font-size: 3.5vh;
 margin: 10px 10px;
 font-family: "Poppins", serif;
 font-weight: 500;
 color: rgb(54, 47, 239);
}

.testi-h1 {
  color: rgb(54, 47, 239);
  margin: 20px 20px;
  line-height: 50px;
}
 

.testimonials {

  width: 100%;
  height: auto;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr; /* Stacks vertically on mobile */
    gap: 20px;
    padding: 20px;
    overflow-x: hidden; /* Prevents horizontal scrollbars during animations */
   
  
  /* border: 3px solid black; */
}

.cards {

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0; /* Hidden initially so they can animate in */
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards; /* Ensures they stay visible after animating */
    /* width: 300px;
  height: auto;  
 display: inline-block;
 justify-content: center;
 text-align: center; 
 align-items: center;
 border: 8px solid #FFCCEA;
 box-shadow: 10px 12px #add8e6;
   gap: 50px; 
   border-radius: 25px; */
 }

 .cards img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 8px;
 }

 .cards p {
  /* Styling for the new p tag */
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;   /* Creates space between h3 and p */
  max-width: 250px;  /* Prevents text from stretching too wide on desktop */
  line-height: 1.4;

 }

 /* --- Mobile Animation Logic --- */
@media (max-width: 767px) {
  /* Odd pairs (1st and 3rd) come from left */
  .cards:nth-child(odd) {
    animation-name: slideFromLeft;
  }
  /* Even pairs (2nd and 4th) come from right */
  .cards:nth-child(even) {
    animation-name: slideFromRight;
  }
}

/* --- Desktop Animation Logic (Screens 768px and wider) --- */
@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(4, 1fr); /* 4 columns next to each other */
  }

  .cards {
    animation-name: fadeInPopulate;
    /* The animation-delay is injected dynamically by JavaScript below */
  }
}

/* --- Animation Keyframes --- */
@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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


.testimonials p{
  font-size: 2.5vh;
  color: rgb(0, 0, 0);
  font-family: "Poppins";
  font-weight: 200;
  width: 280px;
  
}

.cards h2 {
  font-family: Lexend Deca;
  margin: 20px 20px;
  color: black;
}


.video-testimonials-heading h2 {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 5vh;
  margin-top: 35px;
  line-height: 30px;
  color: rgb(54, 47, 239);
text-align: center;
align-items: center;
justify-content: center;
}

.video-testimonials-parent {
 
  display: flex;
  flex-wrap: wrap;
margin-top: 20px;
max-width: 100%;
height: auto;
text-align: center;
justify-content: center;
align-items: center;
background-color: #FFCCEA;
/* border: 4px solid blue; */


}

.video-heading {
  display: block;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 5vh;
  margin-top: 30px;
  color: rgb(244, 122, 8);
text-align: center;
align-items: center;
justify-content: center;
}

.video-testimonials {
  margin-top: 20px;
max-width: 100%;
height: auto;
  /* display: inline-block; */
  /* flex-wrap: wrap; */
  border: 8px solid #eae60c;
  box-shadow: 16px 12px rgb(54, 47, 239);
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
 
}

@media screen and (max-width: 480px){
  .video-testimonials-parent {
    max-width: 100%;
    height: auto;
    /* border: solid 5px #00b330; */
  }
  
}


.book-demo {
  background-color: #add8e6;
  display: flex;
  gap: 50px;
  max-width: 100%;
  justify-content: center;
  height: auto;
  /* border: 4px solid black; */
}

.book-demo-h2 { 

  max-width: 800px;
  display: inline-block;
  text-align: center;
  justify-content: center;
  /* border: 4px solid red; */
}



.book-demo-h2 h2 {
  font-family: "Poppins";
  font-size: 5vh;
  margin: 30px 28px;
  color:  #007BFF;
}

.book-demo-h2 img {
  width: 700px;
  height: auto;
  margin-left: 20px;
 
}

#catch-insta-heading {
  font-family: "Poppins";
  font-size: 4vh;
  margin: 30px 28px;
  text-align: center;
  justify-content: center;
}



.div-form-container{
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
 
  
}

.div-form-container p {
  padding: 10px;
  margin-top: 10px;
  font-size: 4vh;
    max-width: 100%;
    line-height: 40px;
    font-family: 'Poppins';
font-weight: 300;
    color: #007BFF;
}

.div-form-container label {
  font-family: Lexend Deca;
  font-size: 2vh;
}

.contact-us-image {
  border: 8px solid #FFCCEA;
  box-shadow: 10px 12px lightblue;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:80px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
  cursor: pointer;
  
  /* Name | Duration | Timing | Repeat */
  animation: whatsapp-buzz 3s ease-in-out infinite;
}

#call-id {
  position:fixed;
	width:55px;
	height:55px;  
	bottom:150px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
  cursor: pointer;
  
  /* Name | Duration | Timing | Repeat */
  animation: whatsapp-buzz 3s ease-in-out infinite;
}

/* 2. The Buzz Sequence */
@keyframes whatsapp-buzz {
  /* The first 15% of the time, the logo buzzes violently */
  0%   { transform: translate(0, 0)     rotate(0deg); }
  2%   { transform: translate(2px, 1px)  rotate(3deg); }
  4%   { transform: translate(-1px, -2px) rotate(-3deg); }
  6%   { transform: translate(-3px, 0px) rotate(1deg); }
  8%   { transform: translate(0px, 2px)  rotate(0deg); }
  10%  { transform: translate(1px, -1px) rotate(2deg); }
  12%  { transform: translate(-1px, 2px) rotate(-2deg); }
  14%  { transform: translate(2px, 1px)  rotate(0deg); }
  
  /* From 15% to 100%, it sits completely still (the pause) */
  15%, 100% { transform: translate(0, 0) rotate(0deg); }
}

@media screen and (max-width:1362px ) {

  .book-demo {
    gap: 10px;
  }
}
@media screen and (max-width:804px ) {

  .float {
    width: 40px;
    height: 40px;
  }

  #call-id {
    width: 40px;
    height: 40px;
  }
  
  .book-demo {
    max-width: 100%;
    height: auto;
    gap: 0px;
    display: inline-block;
  }
  
  .book-demo-h2 img {
      margin-left: 0px;
  }
}

/* footer code */

.footer-container{
        
  max-width: 100%;
 
 
}

.row{
  display: flex;
  flex-wrap: wrap;
}
ul{
  list-style: none;
}
.footer{
  background-color: rgb(255, 204, 234);
  
}
.footer-col{
    margin-top: 30px;
 max-width: 100%;
 padding: 0 20px;

}

.footer-col h3{
  
  font-size: 20px;
  font-family: Lexend Deca;
  color: #e57c13;
  
  text-transform: capitalize;
  margin-bottom: 30px;
  font-weight: 500;
  position: relative;
}



.footer-col h3::before{
  content:'';
  position: absolute;
  left:0;
  bottom: -10px;
  background-color: #1ee94a;
  height: 3px;
  box-sizing: border-box;
  width: 80px;
}
  

.footer-col ul li:not(:last-child){
  margin-bottom: 10px;
}


.footer-col ul li a{
  font-size: 18px;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 300;
  color: #020202;
  display: block;
  transition: all 0.3s ease;
 
}
.footer-col ul li a:hover{
  color: #ffffff;
  padding-left: 8px;
  
}


.footer-col .social-links a {
margin-right: 50px;
  display: inline-block;  
  text-align: center;
  color: blue;
  
}
.footer-col .social-links a:hover{

  color: #ffffff;
  transition: all 0.2s ease;
}


.about-developer {
  font-size: 2.5vh;
  font-family: 'Times New Roman', Times, serif;
  color: #000000;
  background-color:rgb(255, 246, 227);
}

/*responsive*/
@media(max-width: 767px){
.footer-col{
  width: 100%;
  margin-bottom: 30px;
}
}

@media(max-width: 574px){
.footer-col{
  width: 100%;
}

/* @media(max-width: 400px){
.footer-container {
  max-width: 100%;
  height: auto;
  display: block;
  border: 5px solid black;
}

.footer-col {
  max-width: 100%;
  height: auto;
}
  
} */
}



/*  About page FAQ */

.about-parent-section {
  gap: 20px;
  align-items: center;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  height: auto;
  /* border: 4px solid black; */
}

.about-gif {
  width: 300px;
  height: auto;
}


.faq {
 
  margin-top: 20px;
  max-width: 500px;
  height: auto;
 /* justify-content: center;
 align-items: center; */
 /* margin-left: 50px; */
 /* margin-bottom: 30px; */
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 25px;
}

.faq h1 {
  font-family: "Poppins";
  font-weight: 200;
  color: #0056b3;
  text-align: center;
  margin-bottom: 20px;
  line-height: 50px;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  font-family: "Poppins";
  font-size: 2.5vh;
  width: 100%;
  padding: 10px;
  background:#3e67d8;
  color: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  border-radius: 4px;
}

.faq-answer p {
    
    color: #007BFF;
    font-size: 2.5vh;
}

.faq-answer {
  font-size: 2vh;
  font-family: "Poppins";
  color: white;
  font-weight: 200;
  display: none;
  padding: 10px;
  background-color: white;
  border-radius: 4px;
  margin-top: 5px;
}

.faq-question:focus + .faq-answer,
.faq-question:active + .faq-answer {
  display: block;
}

@media (max-width: 660px) {
  .faq {
      width: 100%;
      padding: 10px;
  }
  .faq-question {
    font-size: 2vh;
  } 
  .faq-answer p {
    font-size: 2vh;
  } 
  .faq h1 {
    font-family: "Poppins";
    color: #0056b3;
    text-align: center;
    margin-bottom: 20px;
    font-size: 4vh;
    line-height: 30px;
  }
}

/* Contact us page */

.heading-contact h1{
  margin-top: 20px;
 font-family: Lexend Deca;
 color: #007BFF;

}


.main-container-contact {
max-width: 100%;
height: auto;
  display: flex;
  flex-wrap: wrap;
gap: 20px;
  justify-content: center;
  margin-top: 10px;
  
/* border: solid 4px  #1ee94a; */
}

.contact-us-text-p {
max-width: 100%;
height: auto;
  text-align: center;
  align-items: center;
  justify-content: center;
 
}
.contact-us-text-p p{
  /* Thank you for showing interest....*/
 padding: 10px;
  margin-top: 50px;
  width: 600px;
  font-size: 3.5vh;
  font-family: "Poppins";
  font-weight: 200;
  color: #020202;
}

.contactus-page-form form {
  width: 100%;
  height: auto;
  text-align: left;
  justify-content: center;
}
.contactus-page-form label {
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
}
.contactus-page-form input {
  max-width: 90%;
  height: auto;
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-align: center;
  justify-content: center;
  font-size: 16px;
}
.contactus-page-form textarea {
width: 90%;
height: auto;
text-align: center;
justify-content: center;
font-size: 16px;
}


.three-contact-options-container {
  justify-content: center;
  align-items: center;
 display: flex;
 flex-wrap: wrap;
 
 max-width: 100%;
 height: auto;
margin: 30px 30px;
border: 8px solid #FFCCEA;
box-shadow: 10px 12px lightblue;
  
}

.child {
  
  width: 400px;
  display: block;
  text-align: center;
  align-items: center;
 
}

.child img {
  
  max-width: 150px;
  height: auto;
}

.child h2 {
  font-family: "Poppins";
  font-size: 3vh;
  font-weight: 300;
}

.child p {
  font-size: 2.25vh;
  font-family: "Poppins";
  font-weight: 200;
  color: #020202;
}

.map-view-contact {
  border: 8px solid #FFCCEA;
box-shadow: 10px 12px lightblue;
margin-bottom: 20px;
  
}

.map-view-contact h2 {
  color: #007BFF;
  font-family: "Popppins";
  font-size: 4vh;
  text-align: center;
  justify-content: center;
}

.map-and-gif {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 50px;
  /* border: solid 5px green; */
  
}

.map-view-gif {
  /* margin-top: 20px; */
  margin-left: 20px;
  width: 300px;
  height: auto;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.map-view-contact iframe {
  margin-top: 10px;
  
}

#contact-map-view-gif {
  font-family: "Poppins";
  color: #007BFF;
  font-size: 4vh;
  font-weight: 300;
  display: block;
  text-align: center;
  justify-content: center;

}

@media screen and (max-width:800px) {

  .contact-us-text-p p{
  /* Thank you for showing interest....*/
  margin: auto;
  max-width: 100%;
  height: auto;
  font-size: 3vh;
  font-family: "Poppins";
  font-weight: 200;
  
}
}



/* Payment page */

.payment-header h1 {
  margin-top: 20px;
  color: #007BFF;
  font-family: Lexend Deca;
  font-size: 4vh;
}

.payment-text {
text-align: center;
justify-content: center;
  display: flex;
 
  max-width: 100%;
  height: auto;
}

.payment-text p {
 
  font-size: 2.5vh;
  font-family: "Poppins";
  color: #020202;
  width: 700px;
  margin: 20px 20px;

  
  
}

.payment-options {

  display: flex;
  max-width: 100%;
  height: auto;
justify-content: center;
align-items: center;
margin-bottom: 20px;
margin-top: 20px;
gap: 20px;
} 

.payment-options img {

  margin-top: 20px;
  width: 300px;
  height: auto;
}



.payment-options p {
 padding: 10px;
 width: 50%;
  font-size: 2.5vh;
  font-family: "Poppins";
  color: #020202;
 text-align: left;

  

  
}

.payment-modes h2 {
  color: #007BFF;
  font-family: Lexend Deca;
  font-size: 3vh;
}
.payment-modes p {
  width: 50%;
  font-size: 2.5vh;
  font-family: "Poppins";
  font-weight: 300;
  color: #020202;
 text-align: left;

  
}



/* Events page */





.carousel {
  position: relative;
max-width: 100%;
height: auto;
overflow: hidden;
border: 8px solid #add8e6;
border-radius: 10px;
}

.carousel-images {
  display: flex;
  max-width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}

.carousel-images img {
  max-width: 100%;
  height: auto;
  border-right: 1px solid #ccc;
}

@media (min-width:1000px) {
  .carousel {
    max-width: 55%;
    height: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  
}

.events-heading-container {
  margin-top: 20px;
  /* display: flex;  */
 /* flex-wrap: wrap; */
  /* justify-content: center; 
  align-items: center;
  text-align: center; */
  width: 100%;
  height: auto;
  border: 8px solid #FFCCEA;
box-shadow: 10px 12px lightblue;
  
}
.events-heading {
  max-width: 100%;
  height: auto;
  display: flex;
/* border: 5px solid black;  */
}


.events-heading h1 {
  margin-top: 20px;
  font-family: "Poppins";
  font-style: italic;
  font-weight: 600;
  color: #007BFF;
  font-size: 4.5vh;
  margin-bottom: 20px;

  
}


#video-heading-events {
  font-family: "Poppins";
  font-weight: 300;
  font-style: italic;
  font-size: 6vh;
  text-align: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 20px;
}


.video-player-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  height: auto;
  /* border: 5px solid green; */
  justify-content: center;
  text-align: center;
  align-items: center;
}

.video-player-with-controls-reels {
  max-width: 100%;
  height: auto;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  border: 8px solid #FFCCEA;
  box-shadow: 10px 12px lightblue;
 
}

.video-player-with-controls {
  margin-top: 20px;
  max-width: 85%;
  height: auto;
  border: 8px solid #FFCCEA;
  box-shadow: 10px 12px lightblue;
  margin-bottom: 20px;
  
}


@media screen and (max-width: 600px) 
{
.video-player-with-controls{
max-width: 100%;
border: 8px solid #FFCCEA;
box-shadow: 10px 12px lightblue;

}  
.events-heading {
  display: inline-block;
  width: 100%;
  height: auto;
}
.events-heading h1 {
font-size: 3.5vh;
} 

}

.image-gallary-heading h2 {
  font-family: "Poppins";
  font-weight: 300;
  font-style: italic;
  font-size: 6vh;
  text-align: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 30px;
}

#events-h2-instagram {
  color: #007BFF;
  font-family: "Poppins";
  font-size: 3vh;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Slideshow container */

/* .events-gallary-container {
  background-color: #2a812e;
} */

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;

}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  max-width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}



/* new galary */

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.gallery img {
  margin: 10px;
  cursor: pointer;
  max-width: 300px;
  width: 50%;
  height: 50%;
border-radius: 10px;
}

/* Lightbox styles */
#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
}

#lightbox img {
  max-width: 80%;
  max-height: 60vh;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
border-radius: 10px;
}

#close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

/* Style for navigation buttons */
#prev-btn,
#next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#prev-btn {
  left: 10px;
}

#next-btn {
  right: 10px;
}

#prev-btn:hover,
#next-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Styles for thumbnails */
.thumbnail-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.thumbnail {
  max-width: 50px;
  width: 100px;
  cursor: pointer;
  margin-top: 40px;
  margin-left: 5px;
  margin-right: 5px;
  border: 2px solid #fff;
  transition: opacity 0.3s;
}

.thumbnail:hover,
.thumbnail.active-thumbnail {
  opacity: 0.7;
}



/* about us page  */

/*responsive*/
#about-h2-not-class {
font-family: Lexend Deca;
font-size: 5vh;
font-weight: 400;
max-width: 100%;
color: #007BFF;
padding: 20px;
  text-align: center;
  background-color: #FFCCEA;

}

.about-management p{
  padding: 20px;
font-size: 2.5vh;
  font-family: "Poppins";
  font-weight: 300;
  color: #020202;
}



.about-header {
  /* main header class */
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* border: solid 4px green; */
}



.about-heading-image h1 {
  padding: 15px;
  margin-top: 20px;
  color: #007BFF;
  font-family: Lexend Deca;
  font-size: 4vh;
  margin-bottom: 40px;
}

.about-heading-image img {
  width: 50%;
  height: auto;

}

.about-p-tags {
  
  /* margin-left: 0px;
  margin-right: 0px; */
  display:flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  border-width:10px;
  border-style:solid;
  border: 10px solid yellow;
  box-shadow: 14px 20px rgb(65, 59, 242);
  max-width: 100%;
  /* margin-left: 30px; */
  margin-bottom: 50px; 
  height: auto;
}

/* #p-tag-1 {
  padding: 20px;
} */

.about-kids h3 {
  margin-top: 20px;
}

.about-kids video {
  margin-top: 20px;
}

.about-management {
  background-color: #FFCCEA;
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  align-items: center;
  
}

.about-management img{
max-width: 50%;
height: 500px;
border-radius: 25px;
margin-left: 20px;

}

.about-management p {
  width: 50%;
}

@media screen and (max-width: 768px){

  .about-management {
    flex-direction: column;
    align-items: center; 
    justify-content: center;
  }
  .about-management p {
    width: 100%;
    height: auto;
    text-align: center;
    
  }
  .about-management img {
    width: 100%;
    height: auto;
    margin-left: 0px;
    align-items: center;
    justify-content: center;
  }

.about-p-tags p {
  padding: 10px;
  margin: 10px;
  width: 100%;
  height: auto;
  /* margin-left: 50px;
  max-width: 100%;
  font-size: 1.8vh;
  font-family: "Poppins";
  color: #020202; */

}

.about-p-tags img {
  margin-top: 20px;
  max-width: 400px;
  height: auto;
}
}

#p-tag-1 {
 
  width: 50%;
  font-size: 2.5vh;
  font-family: "Poppins";
  text-align: center;
  font-weight: 300;
}

#p-tag-2 {
  margin-top: 30px;
  font-size: 2.5vh;
  width: 50%;
  font-family: "Poppins";
  text-align: center;
  font-weight: 300;
}

#p-tag-3 {
  
  font-size: 2.5vh;
  width: 50%;
  font-family: "Poppins";
  font-weight: 300;
  text-align: center;
  padding: 20px;
  
}

.about-acedemic {

  background-color: rgb(173, 216, 230);
  max-width: 100%;
  height: auto;
  justify-content: center;
  text-align: center;
  
}

.about-acedemic h2 {
padding: 20px;
font-family: Lexend Deca;
font-size: 5vh;
font-weight: 400;
max-width: 100%;
color: #007BFF;
/* margin-bottom: 20px; */
}



.acedemic-child-container {
  display: flex;
  flex-wrap: wrap;
  background: pink;
  display: inline-block;
  gap: 20px;
  width: 400px;
  height: auto;
  border: 4px solid rgb(252, 167, 181);
  border-radius: 25px;
  margin-bottom: 15px;
  margin-right: 15px;
  
}

.acedemic-child-container:hover {
  background: rgb(221, 221, 238);
  transition: 0.5s;
  border-color: rgb(243, 132, 132);
} 

.acedemic-child-container img {
  margin-top: 20px;
  border-radius: 25px;
  width: 150px;
  height: 150px;
}

.acedemic-child-container h2 {
  padding: 0%;
}

.acedemic-child-container h3 {
 
  font-family: Lexend Deca;
font-size: 4vh;
font-weight: 400;
max-width: 100%;
color: #ec942e;
}

.acedemic-child-container p {
  padding: 10px;
 margin-top: 20px;
 font-size: 2.5vh;
 max-width: 100%;
 font-family: "Poppins", serif;
 font-weight: 300;
 color: #020202;
 margin-bottom: 20px;
}



.enroll-child button{
margin-top: 20px;
  text-decoration: none;
  font-size: 20px;
  padding: 20px 20px;
  border-radius: 50%;
  font-family: "Poppins", serif;
  background-color: rgb(181, 229, 250);
  
  
}
.enroll-child button:hover {
 background-color: rgb(87, 194, 240);
transition: 0.5s;

}

.for-mobile {
  max-width: 100%;
  height: auto;
  display: inline-block;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


@media (max-width : 800px) {
  
  .about-p-tags img {
    width: 300px;
    height: auto;
  }

  .about-p-tags {
    justify-content: center;
    margin-left: 0px;
    margin-right: 0px;
    display: flex;
    gap: 20px;
    border-width:10px;
    border-style:solid;
    border: 10px solid #FFCCEA;
    box-shadow: 14px 20px rgb(173, 216, 230);
    width: 80%;
    margin-left: 0px;
    margin-bottom: 50px;
    height: auto;
    
    
  } 
  .acedemic-child-container {
    background: pink;
    display: inline-block;
    max-width: 100%;
    height: auto;
    margin-left: 0px;
    border: 4px solid rgb(252, 167, 181);
    border-radius: 25px;
    margin-bottom: 20px;
    
  }
}
  
  @media (max-width : 672px) {

    .acedemic-child-container {
      width: 90%;
      margin: 10px;
    }
  
    .about-p-tags {
      
      display: flex;
      flex-wrap: wrap;
      width: 100%;
     
    }
    .about-p-tags p {
      margin-left: 0px;
      width: 100%;
      color: #020202;
      
  }
  #p-tag-1 {
    width: 100%;
    text-align: center;
  }
  
  #p-tag-2 {
    
    width: 100%;
    text-align: center;
  }
  
  #p-tag-3 {
    
    width: 100%;
    text-align: center;
    
  }

}

@media screen and (max-width: 1198px){
 .for-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
  
}

/* why delta page */

#why-delta-heading {
  padding: 10px;
  margin-top: 20px;
  color: #007BFF;
  font-family: Lexend Deca;
  font-size: 5vh;
  margin-bottom: 20px;
}

.why-delta-page-container {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  padding: 40px;
}

.why-delta-base {
  width: 100%;
  min-width: 0;
  max-width: 360px; /* Adjust this number to change how wide they can get */
  margin: 0 auto;   /* Centers the card if it drops to its own row */ 
  align-items: center; /* Centers the content */
  text-align: center;
  /* border: 3px solid #FFD966; */
opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  
  /* Safe fallback if JS fails: animation delay defaults to 0s */
  transition-delay: calc(var(--child-index, 0) * 0.2s);
}
.why-delta-page-container.visible .why-delta-base {
  opacity: 1;
  transform: translateY(0);
}

.why-delta-base h2 {
  margin-top: 20px;
  font-family: "Poppins", serif;
   font-size: 3vh;
   font-weight: 500;
  margin-bottom: 40px;
 
}

.why-delta-base img {
  width: 100%;
  height: 300px;
  object-fit: contain; /* Keeps images from stretching weirdly */
  border-radius: 10%; /* Matches your current rounded look */
  margin-bottom: 15px;
 
  
}

.why-delta-base p {
  padding: 10px;
  margin-top: 10px;
    /* line-height: 30px; */
    font-family: "Poppins", serif;
    font-weight: 300;
    color: #020202;
    font-size: 0.95rem;
  line-height: 1.5;
}

.why-delta-contact-container {
  background-color: #add8e6;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  height: auto;
 align-items: center;
 justify-content: center;
  gap: 40px;
  
  /* border: 4px solid rgb(192, 255, 206); */
  }
  

.why-delta-contact {
  
  max-width: 100%;
  height: auto;

  /* border: 3px solid blue; */

}

.why-contact form {
  
  max-width: 100%;
  height: auto; 
  /* border: 5px solid yellow; */
}



.why-delta-contact h2 {
  margin-top: 20px;
  color: #007BFF;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 5vh;
  margin-bottom: 40px;
  text-align: center;
  justify-content: center;
}

.why-delta-contact p {
  padding: 10px;
  margin-top: 10px;
  font-size: 3vh;
    max-width: 100%;
    line-height: 40px;
    font-family: 'Poppins';
font-weight: 300;
    color: #007BFF;
}




@media screen and (max-width: 1006px){
  .why-delta-base {

   
  display: inline-block;
    width: 100%;
    height: auto;
    margin-left: 20px;
}

}


@media screen and (max-width: 800px){
  
  .why-delta-base{
  
  display: inline-block;
    width: 90%;
    height: auto;
    margin-left: 4px;
    margin-right: 4px;
}

}

@media screen and (max-width: 360px){
  
  .why-delta-page-container{
    grid-template-columns: 1fr !important; /* Forces 1 column, overriding desktop rules */
    column-count: 1 !important;            /* If you used the masonry option */
    width: 100%;
    height: auto;
padding: 0px;
  }
  .why-delta-base img {
    width: 100%;
    height: auto;
    margin-left: 10px;
   } 
}

@media screen and (max-width: 600px ){
  .payment-options {
    display: block;
    width: 100%;
    height: auto;
    align-items: center;
    text-align: center;
  
  }
  .payment-options img {
  margin-top: 20px;
  width: 200px;
  height: auto;
  }
  .payment-options p {
    
    width: 100%;
    height: auto;
  }
  .payment-header h1 {
    font-size: 3vh;
  }
}

@media screen and (max-width: 1290px) {
  .why-delta-contact-container {
    width: 100%;
    display: inline-block;
    height: auto;
    align-items: center;
    justify-content: center;
    gap: 0px;
    margin-bottom: 20px;
    border: 4px solid pink;
    }
  
}

.why-delta-column p {
  font-size: 2.5vh;
  font-family: "Poppins";
}

/* admission page */

.admission-container {
  /* margin-top: 30px;
  margin-left: 80px; */
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  height: auto;
  gap: 40px;
  text-align: center;
  justify-content: center;

}

.admission-heading-p {
width: 600px;
height: auto;


}

.admission-heading-p h1 {
  margin-top: 20px;
  color: #007BFF;
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 4vh;
  margin-bottom: 40px;
}

.admmission-page-form form {
  max-width: 100%;
  height: auto;
  font-size: 16px;
}

.admmission-page-form input, textarea {
   
  width: 80%;
  font-size: 16px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}


.admission-heading-p p {
  padding: 10px;
  margin-top: 10px;
  font-size: 3vh;
    max-width: 100%;
    line-height: 30px;
    font-family: 'Poppins';

    color: #000000;
}


@media screen and (max-width: 844px ){
  .admission-container {
    margin-top: 30px;
    margin-left: 0px ;
    display: block;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
  
  }
  .admission-heading-p {
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    
    }
    
    .admission-heading-p h1 {
      margin-top: 20px;
      color: #007BFF;
      font-family: 'Aclonica';
      font-weight: 300;
      font-size: 4vh;
      margin-bottom: 40px;
    }
    
}


.thankyou-page-container { 
max-width: 100%; 
height: auto; 
justify-content: center; 
align-items: center; 
text-align: center; 
margin: 20px; 
} 

.thankyou-page-container h2 { 

font-family: "Poppins"; 
font-weight: 600; 
font-size: 4vh; 
color: #007BFF; 
} 

.thankyou-page-container h3 { 
font-family: "Poppins"; 
font-weight: 300; 
font-size: 2.5vh; 
} 

.thankyou-page-container img { 
max-width: 100%; 
height: auto; 
border-radius: 25px; 
} 

.thankyou-header-text { 
max-width: 800px; 
height: auto; 
text-align: center; 
justify-content: center; 
align-items: center; 
margin: 0 auto; 
margin-top: 20px; 
margin-bottom: 20px; 
} 

 
/* Container centered and hidden by default */
.lead-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  /* Centers the element perfectly based on its own width and height */
  transform: translate(-50%, -50%) scale(0.9); 
  width: 400px;
  max-width: 90%;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  z-index: 1000;
  
  /* Smooth transition for fading and slight scaling effect */
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none; /* Prevents clicking on it while invisible */
}

/* The class JavaScript adds at 50% scroll */
.lead-popup.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto; /* Re-enables interactions when visible */
}

/* Inner padding and layout */
.lead-popup-content {
  padding: 30px;
  position: relative;
}

/* Close button styling */
.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #888;
  line-height: 1;
}

.close-btn:hover {
  color: #333;
}

/* Form elements styling */
.lead-popup h2 { margin-top: 0; text-align: center; justify-content: center; font-size: 22px; color: #333; margin-bottom: 8px; }
.lead-popup p { font-size: 3vh; color: #666; margin-bottom: 20px; line-height: 1.4; }

.lead-popup input[type="email"] {
  display: block;          /* Forces the input to behave like a structural block */
  width: 100%;             /* Fills the container */
  box-sizing: border-box;  /* CRITICAL: Includes padding and borders in the width calculation */
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.lead-popup button[type="submit"] {
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
}

.lead-popup button[type="submit"]:hover {
  background: #0056b3;
}