/* hero section css   */
.ice-hero {
    background: linear-gradient(45deg, #43beff, transparent);
    padding: 100px 0 50px 0px;   
    position: relative;
    overflow: hidden;
}
.ice-hero .row {
    align-items: flex-start !important;
    min-height: auto !important;
}
.hero-left-img {
    margin-top: 0;   
}

.hero-left-img img {
    max-width: 90%;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.hero-content {
    color: #000;
    margin-top: 0;
}

.badge-text {
    display: inline-block;
    background: #ffffff;
    color: #0284c7;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-desc {
    font-size: 18px;
    margin: 20px 0;
    opacity: 0.9;
}

.hero-btn {
    background: #ffffff;
    color: #0284c7;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
    border: 1px solid #0284c7;
}

.hero-btn:hover {
    background: #0284c7;
    color: #fff;
}
.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    pointer-events: none;
}

/* tablt me */
@media (max-width: 991px) {

    .ice-hero {
        padding: 60px 0;
    }
    .ice-hero .col-lg-6:first-child {
        order: 2;
    }

    .ice-hero .col-lg-6:last-child {
        order: 1;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-left-img {
        text-align: center;
        margin-top: 20px;
    }

    .hero-title {
        font-size: 36px;
    }
}

/* mobile me */
@media (max-width: 576px) {
    .ice-hero .row {
        flex-direction: column;
    }
    .ice-hero .col-lg-6:last-child {
        order: 1;
        text-align: center;
        margin-bottom: 25px;
    }
    .ice-hero .col-lg-6:first-child {
        order: 2;
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-pattern {
        width: 150px;
    }

    .hero-left-img img {
        max-width: 85%;
    }
}

/* small triple card section */

.feature-section{
    background:#ffffff;
    position:relative;
}

.feature-wrapper{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:25px;
}

.small-tag{
    display:inline-block;
    background:#E0F7FF;
    color:#0077B6;
    padding:6px 15px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:10px;
}

.feature-card{
    padding:25px;
    border-radius:20px;
    text-align:left;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    min-height:150px;
}

/* More Visible Ice Variations */

.purple{
   background:#D6F3FF;   /* crystal blue */
   border:1px solid #0288D1 !important;
}

.pink{
   background: #28aef663;   /* frost cyan */
   border:1px solid #00ACC1;
}

.green{
   background: #54acfa6e;   /* glacier aqua */
   border: 1px solid #3178f8;
}

.feature-card i{
    font-size:30px;
    margin-bottom:10px;
    display:inline-block;
    color:#005F73;
}

.feature-card h2{
    font-weight:600;
    margin-bottom:5px;
    font-size:18px;
}

.feature-card p{
    font-size:13px;
    color:#555;
}

.feature-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.feature-card::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(255,255,255,0.3);
    border-radius:50%;
    top:-40px;
    right:-40px;
}

@media(max-width:992px){
    .feature-wrapper{
        grid-template-columns: repeat(2,1fr);
    }
}

.main-title{
    font-size:40px;
    font-weight:600;
    text-align:center;
    line-height:1.2;
    color:#222;
    margin-bottom:30px;
    font-family:'Poppins', sans-serif;
}

.main-title span{
    color:#0077B6; 
    position:relative;
}

.main-title span::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:100%;
    height:2px;
    background:#0077B6;
    border-radius:5px;
}

@media(max-width:768px){
    .main-title{
        font-size:28px;
    }
}

@media(max-width:576px){
    .feature-wrapper{
        grid-template-columns: repeat(2,1fr);
        gap:12px; 
    }
    .feature-card{
        padding:15px; 
        border-radius:15px;
        min-height:130px;
    }
    .feature-card i{
        font-size:22px;
        margin-bottom:6px;
    }
    .feature-card h2{
        font-size:14px;
    }
    .feature-card p{
        font-size:11px;
        line-height:1.4;
    }
}





/* marquee section */

.marquee-section {
  background: var(--white);
}
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 68px;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  padding-right: 70px;
  transition: color 0.3s ease;
}
.marquee-arrow {
  width: 64px;
  height: 64px;
  border: 2px solid #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.marquee-arrow i {
  font-size: 34px;
  color: #111;
  transition: color 0.3s ease;
}
.marquee-item:hover {
  color: var(--primary);
}
.marquee-item:hover .marquee-arrow {
  border-color: var(--primary);
}
.marquee-item:hover .marquee-arrow i {
  color: var(--primary);
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 992px) {
  .marquee-item {
    font-size: 48px;
  }
  .marquee-arrow {
    width: 48px;
    height: 48px;
  }
  .marquee-arrow i {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .marquee-item {
    font-size: 32px;
    gap: 14px;
    padding-right: 40px;
  }
  .marquee-arrow {
    width: 36px;
    height: 36px;
  }
  .marquee-arrow i {
    font-size: 20px;
  }
}

/* about excel */

.about-section{
  background: linear-gradient(
96deg, #5dcafa, transparent);
  padding:80px 0;
  overflow:hidden;
}
.about-img-box{
  position:relative;
  padding:20px;
}
.shape-box{
  position:absolute;
  width:200px;
  height:200px;
  background: var(--primary);
  top:0;
  left:0;
  z-index:0;
}
.main-img{
  position:relative;
  z-index:2;
  width:85%;
}
.small-img{
  position:absolute;
  bottom:-40px;
  right:20px;
  width:220px;
  z-index:3;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* dotted shape */
.dot-shape{
  position:absolute;
  bottom:0;
  left:-25px;
  width:120px;
  height:120px;
  bottom: -40px;
  border:2px dashed var(--primary);
  border-radius:50%;
  z-index:1;
}

.about-content{
  padding-left:40px;
}

.sub-title{
  display:inline-block;
  background: var(--light) !important;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding:6px 12px;
  border-radius:20px;
  font-size:14px;
  margin-bottom:10px;
}

.about-content h2{
  font-size:36px;
  font-weight:700;
  color: var(--primary);
  margin-bottom:20px;
}

.about-content p{
  color:#555;
  line-height:1.7;
  margin-bottom:25px;
}

/* Button */
.about-btn{
  display:inline-block;
  padding:12px 28px;
  background: var(--primary);
  color: var(--white);
  font-weight:600;
  border-radius:4px;
  text-decoration:none;
  transition:.3s;
}

.about-btn:hover{
  background:var(--black);
  color:var(--white);
}

@media(max-width:992px){
  .about-content{
    padding-left:10px;
    margin-top:40px;
    text-align:left;
  }

  .main-img{
    width:100%;
  }
  .small-img{
    position:relative;
    bottom:auto;
    right:auto;
    margin-top:20px;
    width:70%;
  }

  .shape-box{
    width:120px;
    height:120px;
  }
  .dot-shape{
    display:none;
  }

  .about-content h2{
    font-size:28px;
  }
}

/* services section css */
 .ice-services-section{
    background: var(--light);
}
.ice-service-card {
    background: #85d9ff54;
    padding: 70px 25px 35px 25px;
    border-radius: 20px;
    position: relative;
    transition: 0.4s;
    /* box-shadow: 0 10px 30px rgba(0,150,200,0.08); */
    height: 100%;
    overflow: visible;
    border-top: 3px solid #5a9dcbad;
}

.ice-service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,150,200,0.15);
}

/* Circle Image Half */
.ice-img-wrapper{
    width:120px;
    height:120px;
    border-radius:50%;
    overflow:hidden;
    position:absolute;
    top:-60px;   /* Half outside */
    left:50%;
    transform:translateX(-50%);
    border:6px solid #ffffff;
    box-shadow:0 8px 25px rgba(0,150,200,0.15);
    background:#E6F7FF;
    padding: 20px;
}

.ice-img-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
    
}

/* Text */
.ice-service-card h4{
    margin-top:60px;
    font-weight:600;
    margin-bottom:12px;
    color:#003B44;
}

.ice-service-card p{
    font-size:14px;
    color:#555;
    margin-bottom:20px;
    line-height:1.6;
}

/* Button */
.ice-btn{
    display:inline-block;
    padding:8px 22px;
    background: var(--primary);
    color:#fff;
    border-radius:25px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.ice-btn:hover{
    background: #0096D6;
    color:#fff;
}
@media(max-width:992px){
    .ice-img-wrapper{
        width:100px;
        height:100px;
        top:-50px;
    }
    .ice-service-card{
        padding-top:60px;
    }
}

@media(max-width:576px){
    .ice-img-wrapper{
        width:90px;
        height:90px;
        top:-45px;
    }
    .ice-service-card{
        padding:55px 15px 25px 15px;
    }
}
/* gallery sectrion */
.ice-gallery-section {
    padding: 40px 20px;
    background: var(--light);
}
.container {
    max-width: 1200px;
    margin: auto;
}
.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.gallery-header p {
    color: #555;
    font-size: 16px;
}
.gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.gallery-card {
    position: relative;
    overflow: visible;
    transition: 0.4s ease;
}
.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}
.gallery-card::before {
    content: "";
    position: absolute;
    top: -8px;
    right: -8px;
    width: 60px;
    height: 60px;
    border-top: 6px solid var(--primary);
    border-right: 6px solid var(--primary);
}
.gallery-card::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: -8px;
    width: 60px;
    height: 60px;
    border-bottom: 6px solid #009688;
    border-left: 6px solid #009688;
}
/* light box */
#lightbox {
    display: none;
    position: fixed;
    z-index: 9999999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
}
.lightbox-content {
    max-width: 100%;
    max-height: 100%;
    animation: zoomIn 0.4s ease;
}
.close-lightbox {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}
@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
@media(max-width:768px){
    .lightbox-content {
        max-width: 95%;
    }
}

@media (max-width: 992px) {
    .gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .gallery-row {
        grid-template-columns: 1fr;
    }

    .gallery-card img {
        height: 220px;
    }
}

/* student review section */

 .google-review-section {
  width: 100%;
  padding: 60px 10px;
  background: #82dcf87d;
  background: repeating-linear-gradient(
45deg, #3cd0f380, transparent 100px);
  overflow: hidden;
}

.review-title {
  text-align: center;
  margin-bottom: 50px;
}

.review-title h2 {
  font-size: 32px;
  font-weight: 700;
}
.c-name{
  font-size : 16px;
  font-weight: 600;
  color : #000
}
.review-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.review-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-card {
  min-width: 33.33%;
  padding: 20px;
  box-sizing: border-box;
}

.review-card > div,
.review-card p {
  /* background: white; */
}

.review-card {
  padding: 35px;
}

.review-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.google-logo {
  width: 30px;
  height: 30px;
}

.stars i {
  color: #ffc107;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.client-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
}

.review-text {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: #555;
}

.review-card {
  background:#e6f6ff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.review-card {
  min-width: 33.33%;
}
@media (max-width: 1024px) {
  .review-card {
    min-width: 50%;
  }
}
@media (max-width: 768px) {
  .review-card {
    min-width: 100%;
  }
}

.review-track {
  display: flex;
}

@media (min-width: 1025px) {
  .review-track {
    gap: 10px;
  }
}


/* faq section */

.faq-map-section{
  padding:60px;
  background: var(--white);
}
.faq-map-container{
  display:flex;
  height:550px;
  border-radius:0px 100px 0px 0px;
  overflow:hidden;
  background:var(--white);
}
.faq-left{
  width:50%;
  padding:40px;
  background: var(--white);
}
.faq-left h2{
  font-size:28px;
  margin-bottom:5px;
}
.faq-left .subtitle{
  font-size:14px;
  color:#777;
  margin-bottom:25px;
}
.faq-box{
  display:flex;
  flex-direction:column;
  gap:15px;
}
.faq-item{
  background:#e5faff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  cursor:pointer;
  transition:0.3s;
}
.faq-question{
  padding:15px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-question span{
  font-size:18px;
  transition:0.3s;
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 15px;
  font-size:14px;
  color:#555;
  transition:0.4s ease;
}
.faq-item.active .faq-answer{
  max-height:200px;
  padding:15px;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}
.map-right{
  width:50%;
}
.map-right iframe{
  width:100%;
  height:100%;
  border:0;
}
@media(max-width:992px){
  .faq-map-section{
    padding:40px 20px;
  }
  .faq-map-container{
    flex-direction:column;
    height:auto;
    border-radius:20px;
  }
  .faq-left,
  .map-right{
    width:100%;
  }
  .map-right{
    height:300px;
  }
  .faq-left{
    padding:30px 20px;
  }
}

@media(max-width:576px){
  .faq-left h2{
    font-size:22px;
  }

  .faq-left{
    padding:25px 15px;
  }
}



/* form */

.enquiry-section{
  padding:60px;
  background: #e3eff36e;
}

.enquiry-container{
  display:flex;
  height:550px;
  border-radius:100px 0px 0px 0px;
  overflow:hidden;
  background:var(--white);
}

.left-side{
  width:50%;
  position:relative;
}

.left-side img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.left-side::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.5)
  );
}

.overlay-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:var(--white);
  z-index:2;
}
.mini-card{
  width:150px;
  height:150px;
  margin:auto;
  margin-bottom:15px;
  border-radius:10px;
  overflow:hidden;
  border:3px solid var(--white);
}

.mini-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay-content h2{
  font-size:28px;
  font-weight:700;
  color:var(--white); 
}

.overlay-content p{
  font-size:14px;
}

.right-side{
  width:50%;
  padding:40px;
  background: linear-gradient(45deg, #c9e0f5d6, transparent);
}

.right-side h2{
  font-size:28px;
  margin-bottom:5px;
}
.subtitle{
  font-size:14px;
  color:#777;
  margin-bottom:30px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.full{
  grid-column:1 / -1;
}

.form-group label{
  font-size:13px;
  color:#555;
  margin-bottom:5px;
  display:block;
}

.form-group input,
.form-group select{
  width:100%;
  border:none;
  border-bottom:1px solid #ccc;
  padding:8px 0;
  outline:none;
  background:transparent;
  font-size:14px;
}

.form-group input:focus,
.form-group select:focus{
  border-color:#0072ff;
}

.submit-btn{
  grid-column:1 / -1;
  margin-top:20px;
  padding:12px;
  border:none;
  background: var(--primary);
  color:var(--white);
  font-weight:600;
  border-radius:5px;
  cursor:pointer;
}

@media(max-width:992px){
  .enquiry-section{
    padding:40px 20px;
  }

  .enquiry-container{
    flex-direction:column;
    height:auto;
    border-radius:20px; 
  }

  .left-side,
  .right-side{
    width:100%;
  }

  .left-side{
    height:320px;
  }

  .overlay-content h2{
    font-size:24px;
  }

  .mini-card{
    width:120px;
    height:120px;
  }

  .right-side{
    padding:30px 20px;
  }

}

@media(max-width:576px){
  .enquiry-section{
    padding:30px 15px;
  }

  .left-side{
    height:260px;
  }

  .overlay-content{
    width:90%;
  }

  .overlay-content h2{
    font-size:20px;
  }

  .overlay-content p{
    font-size:13px;
  }

  .mini-card{
    width:90px;
    height:90px;
  }

  .form-grid{
    grid-template-columns:1fr;
    gap:15px;
  }

  .right-side{
    padding:25px 15px;
  }

  .right-side h2{
    font-size:22px;
  }

  .submit-btn{
    padding:14px;
    font-size:15px;
  }

}