*{
    margin: 0;
    padding: 0;
}
/* SHAPES CSS STARTS HERE */
.winky-sans {
  font-family: "Winky Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400; /* Replace with actual weight */
  font-style: normal;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 25px solid green;
  position: relative;
  right: -21px;
  bottom: 120px;
}
.gamepclass{
  font-size: 20px;
 display: flex;
 text-align: justify;
}
.triangle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: -12px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid white; /* Matches the background */
}
/* 
.circle {
  position: absolute;
  top: 10px;  
  right: 10px; 
  width: 30px;
  height: 30px;
  border: 4px solid red; 
  border-radius: 50%; 
  background-color: transparent; 
} */


.circle {
  position: relative;
  top: -401PX;
  LEFT: 75VW;
  width: 20px;
  height: 20px;
  border: 4px solid red;
  border-radius: 50%;
  background-color: transparent;
}
.customnavbar {
    background-color: black;
    padding: 10px 20px;
    height: 60px; /* Set a fixed height for the navbar */
    display: flex;
    align-items: center; /* Keep items aligned vertically */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures navbar stays on top */
}
.diamond {
  position: absolute;
  top: 150px;  /* Positions towards the top */
  left: 40px; /* Positions towards the left */
  width: 25px;
  height: 25px;
  border: 4px solid orange;
  transform: rotate(45deg); /* Rotates to form a diamond */
  background-color: transparent;
}
.square {
  position: absolute;
  top: 150px;  /* Positions at the top */
  right: 40px; /* Positions on the right */
  width: 25px;
  height: 25px;
  border: 4px solid orange;
  background-color: transparent;
}



.art-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100vh; /* Full viewport height */
  width: 100%;
}

/* Green Triangle */
.art-triangle {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 33px solid green;
  position: relative;
}

.art-triangle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: -17px;
  width: 0;
  height: 0;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-bottom: 27px solid white;
}

/* Red Circle */
.art-circle {
  width: 30px;
  height: 30px;
  border: 4px solid red;
  border-radius: 50%;
  background-color: transparent;
  margin-top: 20vh;
}

.customnavbar-brand img {
    height: 120px; /* Increase logo height */
    width: auto; /* Maintain aspect ratio */
    max-height: 100%; /* Ensure it does not overflow */
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}
.cart-icon{
  cursor: pointer;
}

.customnavbar .nav-link {
    color: white;
    margin: 0 10px;
}
.customnavbar .nav-link:hover {
    color: #E74C3C;
}
.customnavbar .btn-subscribe {
    background-color: #E74C3C;
    color: white;
    border-radius: 20px;
}
.customnavbar .btn-contact {
    background-color: white;
    color: #E74C3C;
    border-radius: 20px;
}
.customnavbar .cart-icon {
    color: white;
    font-size: 20px;
    margin-left: 15px;
}

.customnavbar .dropdown-menu {
  background-color: black;
  border: none;
}

.customnavbar .dropdown-item {
  color: white;
}

.customnavbar .dropdown-item:hover {
  background-color: #E74C3C;
  color: white;
}

.homepart-1-carousel-item img {
    /* height: 80vh; */
    object-fit: cover;
}

.homepart-1-gandhi-section {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF7EB;
    color: black;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 425px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.25), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
}
.homepart-1-gandhi-section img {
    max-width: 300px;
}
.homepart-1-gandhi-text {
  flex: 1;
  font-weight: bold;
}
.homepart-1-info-image {
    max-width: 100%;
    height: auto;
}

 
@media (max-width: 768px) {
    .homepart-1-gandhi-section {
        /* flex-direction: column; */
        text-align: center;
    }
    .homepart-1-gandhi-section img {
        /* width: 60%; */
        margin: 0 auto 10px;
    }
    .homepart-1-gandhi-section{
        padding: unset;
    }
    .customfooter-mission h2 {
        font-size: 15px !important;
    }
    .customfooter-address, .customfooter-contact{
        font-size: 13px !important;
    }
    .customfooter-heading{
        font-size: 15px !important;
    }
    .customfooter-visual-container {
        height: 200px !important;
        width: 200px !important;
    }
    .customfooter-image-small:nth-child(2) {
        right: 10% !important;
    }
    .customfooter-image-small:nth-child(4) {
        bottom: 14% !important;
        left: 5% !important;
    }
    .customfooter-image-small:nth-child(3) {
        bottom: 10%;
        right: 6% !important;
    }
    .customfooter-row {
        padding: 10px !important;
    }
    .customnavbar{
        height: unset !important;
        padding: unset !important;
    }
    /* .customnavbar-brand img {
        height: 80px !important;
    } */
    .customnavbar-brand img{
        height: 85px;
    }
    .diamond , .square{
     
      width: 18px;
      height: 18px;
      
  }
  .transformation-image {
    max-width: 186px !important;
  }
  .transformation-content p{
    padding-right: 20px;
    font-size: 14px !important;
}
.homesection-2-card-body {
  font-size: 14px;
}

.teacher-logo {
  max-width: 253px !important;
  margin: 15px 0;
  margin-top: 59px;
}
img.teacher-logo {
  margin-top: 111px;
}
span.navbar-toggler-icon {
  margin-right: 10px;
}
.customfooter-copyright {
  font-size: 9px !important;
  opacity: 0.7;
  margin-top: 10px;
}
.transformation-image-container {
  text-align: center;
  padding: unset;
}
.col-md-2 {
  width: 6vw;
}

}

.about-product-container {
    text-align: center;
    margin-top: 50px;
}
.about-product-title {
    font-weight: bold;
    font-size: 24px;
    margin-top: 9rem;
}

.homeproductcard-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.homeproductcard-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 270px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.homeproductcard-header {
    padding: 10px;
    font-weight: 800;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.homeproductcard-image img {
    width: 100%;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.homeproductcard-content {
    display: none;
    padding: 15px;
}

.homeproductcard-arrow {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.homeproductcard-arrow img {
    width: 16px;
    transition: transform 0.3s ease;
}

.expanded .homeproductcard-image img {
    opacity: 0;
    display: none;
}

.expanded .homeproductcard-content {
    display: block;
}

.expanded .homeproductcard-arrow img {
    transform: rotate(180deg);
}

.btn-pink {
    background-color: #f8a6c7;
    color: white;
    font-weight: bold;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.btn-pink:hover {
    background-color: #f285a2;
}

.btn-gray {
    background-color: #888;
    color: white;
    font-weight: bold;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
}
.home-card .content {
    display: none;
    padding: 15px;
}
.homepart2-h5{
    margin-bottom: 40px;
}
/* footer css starts here */
.customfooter-row{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.whitefooterlogo{
  height: 50px;
}

.customfooter {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

.customfooter-logo {
    margin-bottom: 20px;
}

.customfooter-logo span {
    color: #ff3333;
}

.customfooter-philosophy {
    margin-bottom: 30px;
    font-size: 14px;
    max-width: 380px;
}

.customfooter-heading {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.customfooter-address {
    font-size: 13px;
    margin-bottom: 20px;
    width: 41%;
}

.customfooter-contact {
    font-size: 13px;
    margin-bottom: 20px;
}

.customfooter-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.customfooter-social a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.customfooter-social a:hover {
    color: #ff3333;
}

.customfooter-copyright {
    font-size: 12px;
    padding-top: 20px;
    /* border-top: 1px solid #333; */
    margin-top: 30px;
}

.customfooter-mission {
    margin-bottom: 40px;
}

.customfooter-mission h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.customfooter-mission h2 span {
    color: #ff3333;
    font-weight: bold;
}

/* Circle visual styles */
.customfooter-visual-container {
    position: relative;
    width: 500px;
    height: 300px;
    margin: 0 auto;
}

.customfooter-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: 5px solid #000;
}

.customfooter-semicircle {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.customfooter-semicircle:before {
    content: '';
    position: absolute;
    width: 200px;
    height: 100px;
    background: #ff3333;
    bottom: 0;
    border-radius: 0 0 100px 100px;
}

.customfooter-image-small {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    z-index: 3;
}

.customfooter-image-small:nth-child(1) {
    top: 15%;
    left: 16%;
}

.customfooter-image-small:nth-child(2) {
    top: 13%;
    right: 15%;
}

.customfooter-image-small:nth-child(3) {
    bottom: 1%;
    right: 17%;
}

.customfooter-image-small:nth-child(4) {
  bottom: 4%;
  left: 14%;
}

.customfooter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.customfooter2 {
  background-color: black;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-family: Arial, sans-serif;
}

/* Divider Container */
.iconssection-divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Left and Right Divider */
.iconssection-divider {
  flex: 1;
  height: 1px;
  background-color: white;
  opacity: 0.5;
}

/* Social Icons */
.iconssection-social-icons {
  display: flex;
  gap: 15px;
  padding: 0 10px;
}

.iconssection-social-icons a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.iconssection-social-icons a:hover {
  color: gray;
}

/* Copyright Text */
.customfooter-copyright {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 10px;
}




.wave-bg {
    background: linear-gradient(to bottom, #ffffff 30%, #bfe6ff 100%);
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
  }
  
  .wave-bg::after {
    content: "";
    /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2377bbdd" fill-opacity="1" d="M0,160L60,165.3C120,171,240,181,360,176C480,171,600,149,720,149.3C840,149,960,171,1080,176C1200,181,1320,171,1380,165.3L1440,160L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>'); */
    background-size: cover;
    background-position: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
  }
  
  .game-section {
    background-color: transparent;
    padding: 25px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
  }
  
  .game-cloud {
   
    border-radius: 70px;
    padding: 35px;
    position: relative;
    
    min-height: 280px;
    margin-top: 40px;
  }
  

  
  
 
  
  .game-title {
    color: #Ff7500;
    font-weight: 700;
    font-size: 39px;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .game-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  .transformation-section {
    padding: 60px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
  }
  
  .transformation-title {
    color: #6a3093;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .transformation-content {
    padding-right: 20px;
  }
  
  .transformation-image-container {
    text-align: center;
    padding: 20px;
  }
  
  .transformation-image {
    max-width: 280px;
    height: auto;
    display: inline-block;
  }
  
  .teacher-section {
    padding: 60px 0 70px;
    background-image: url("C:\Users\Exalt\OneDrive\Desktop\sneha\sincereJoy\02 Home Pages\10 Teacher BG.png");
    position: relative;
    z-index: 2;
  }
  
  .teacher-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  
  .teacher-logo {
    max-width: 300px;
    margin: 15px 0;
    margin-top: 59px;
}
  
  .sun-icon {
    color: #ffc107;
    font-size: 3.5rem;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.3));
  }
  
  .card {
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card-body {
    padding: 30px;
  }
  
  .card-title {
    color: #f26522;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .section-heading {
    position: relative;
    margin-bottom: 40px;
  }
  
  @media (max-width: 767px) {
    .game-section {
      margin-top: 30px;
    }
    
    .game-cloud {
      padding: 20px;
    }
    
    .section-heading {
      text-align: center;
    }
    
    .transformation-image,
    .teacher-logo {
      display: block;
      margin: 0 auto 20px;
    }
  }

@media (max-width: 992px) {
    .customfooter-visual-container {
        width: 240px;
        height: 240px;
        margin-top: 30px;
    }
    
    .customfooter-circle {
        width: 140px;
        height: 140px;
    }
    
    .customfooter-semicircle {
        width: 160px;
        height: 160px;
    }
    
    .customfooter-semicircle:before {
        width: 160px;
        height: 80px;
        border-radius: 0 0 80px 80px;
    }
    
    .customfooter-image-small {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .customfooter-address, 
    .customfooter-contact {
        margin-top: 30px;
    }
    
    .customfooter-visual-container {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

/* about section 2 css starts here */
.wave-bg {
    background: linear-gradient(to bottom, #ffffff 30%, #bfe6ff 100%);
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
  }
  
  .wave-bg::after {
    content: "";
    /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2377bbdd" fill-opacity="1" d="M0,160L60,165.3C120,171,240,181,360,176C480,171,600,149,720,149.3C840,149,960,171,1080,176C1200,181,1320,171,1380,165.3L1440,160L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>'); */
    background-size: cover;
    background-position: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
  }
  
  .game-section {
    background-color: transparent;
    padding: 25px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
  }
  
  .game-cloud {
   
    border-radius: 70px;
    padding: 35px;
    position: relative;
  
    min-height: 280px;
    margin-top: 40px;
  }
  

  
  
 
  
  .game-title2 {
    color: #7bc043;
    font-weight: 700;
    font-size: 39px;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .game-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  .transformation-section {
    padding: 60px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
  }
  
  .transformation-title {
    color: #6a3093;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .transformation-content {
    padding-right: 20px;
  }
  
  .transformation-image-container {
    text-align: center;
    padding: 20px;
  }
  
  .transformation-image {
    max-width: 280px;
    height: auto;
    display: inline-block;
  }
  
  .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    z-index: -1;
}
  .teacher-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  
  
  
  .sun-icon {
    color: #ffc107;
    font-size: 3.5rem;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.3));
  }
  
  .homesection-2-card {
    border: none;
    transition: transform 0.3s;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
  }
  
  
  
  .homesection-2-card-body {
    padding: 11vh;
  }
  
  .homesection-2-card-title {
    color: #f26522;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 39px;
    line-height: 1.3;
  }
  
  .section-heading {
    position: relative;
    margin-bottom: 40px;
  }
  @media (max-width:768px) {
    .gamepclass {
      font-size: 15px;
      display: flex;
      text-align: justify;
  }
  .game-title {
    color: #Ff7500;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 15px;
    line-height: 1.3;
}
.game-title2 {
  color: #7bc043;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 15px;
  line-height: 1.3;
}
.homesection-2-card-title {
  color: #f26522;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 25px;
  line-height: 1.3;
}
    
  }
  
  @media (max-width: 767px) {
    .game-section {
      margin-top: 30px;
    }
    
    .game-cloud {
      padding: 20px;
    }
    
    .section-heading {
      text-align: center;
    }
    
    .transformation-image,
    .teacher-logo {
      display: block;
      margin: 0 auto 20px;
    }
  }

  @media (max-width:425px) {
    .customfooter-row{
        display: unset !important;
    }
    .customfooter-container{
        padding: 10px !important;
    }
    .homepart-1-carousel-item img{
        height: unset;
    }
    .homepart-1-gandhi-section img {
        width: 40% !important;
    }
    .homepart-1-gandhi-text p{
        font-size: 11px;
    }
    .homepart-1-gandhi-section {
        margin-top: 12px;
    }
    .homeproductcard-card{
        margin-bottom: 15px;
    }
    .art-triangle ,.art-circle{
      display: none;
    }
    .about-product-title {
      font-size: 16px;
    }
    .homeproductcard-header {
      font-size: 15px;
    }
    .circle{
      left: 84vw;
    } 
    .content-wrapper{
      font-size: 14px;
    }
    .homeproductcard-card{
      padding: unset !important;
      max-width:219px;
    }
    .btn-pink ,.btn-gray{
      padding: 5px;
      font-size: 10px;
      margin-bottom: unset;
    }
    .homeproductcard-arrow{
      height: 12px;
      width: 12px;
    }
    .homeproductcard-arrow img {
      width:13px;

    }
    .game-cloud{
      background-color: unset;
      padding: unset;
      box-shadow: unset;
    }
    .game-image {
      max-width: 67%;
    }
    .customfooter-col-lg-4.d-flex {
      display: unset !important;
  }
  .svg-inline--fa{
    height: 10px !important;
  }
  .homesection-2-card-body {
    padding: unset !important;
  }
  img.teacher-logo {
    margin-top: unset !important;
  }
  .teacher-logo {
    max-width: 150px !important;
  }
  .homesection-2-card-title ,.game-title {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.game-title2 {
  color: #7bc043;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.3;
}
    
    
  }
  [data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
  }
  
  [data-aos].aos-animate {
    opacity: 1;
  }
  