
    h2 { 
      font-size: 22px;
      margin-bottom: 18px;
      font-weight: bold;
      color: #0f172a;
    }
    label {
      font-weight: 600;
      margin-top: 14px;
      display: block;
      font-size: 14px;
      color: #374151;
    }
    input[type=text],
    input[type=email],
    select,
    textarea {
      width: 100%;
      padding: 10px;
      margin-top: 6px;
      border: 1px solid #cbd5e1;
      border-radius: 6px;
      font-size: 14px;
      box-sizing: border-box;
    }
    textarea {
      height: 90px;
      resize: vertical;
    }
    .radio-group,
    .rating-group {
      margin-top: 6px;
    }
    .radio-group label,
    .rating-group label {
      margin-right: 12px;
      font-weight: normal;
    }
    button {
      background: #1e3a8a;
      color: #fff;
      font-size: 15px;
      padding: 12px 16px;
      margin-top: 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      width: 100%;
    }
    button:hover {
      background: #122466;
    }
    .radio-group,
.rating-group{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;   /* mobile me next line me aa jayega */
  margin-top: 6px;
}

.radio-group label,
.rating-group label{
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  cursor: pointer;
}

/*Home Page*/

   
            /* ===== Spotlight Marquee (Full CSS) ===== */
            .spotlight-marquee{
                width: 100%;
                background: #cfeeff; /* Light Blue */
                overflow: hidden;
                position: relative;
                border-top: 1px solid rgba(0,0,0,0.05);
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }
            
            .spotlight-wrapper{
                display: flex;
                align-items: center;
                width: 100%;
                gap: 0;
            }
            
            /* Left SPOTLIGHT box */
            .spotlight-title{
                background: #0b4b7a;  /* Dark Blue */
                color: #fff;
                font-weight: 700;
                padding: 17px 25px;
                text-transform: uppercase;
                position: relative;
                min-width: 181px;
                text-align: center;
                font-size: 18px;
                line-height: 1;
                z-index: 2;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            /* Arrow */
            .spotlight-title::after{
                content: "";
                position: absolute;
                right: -33px;
                top: 0;
                width: 0;
                height: 0;
                border-top: 28px solid transparent;
                border-bottom: 28px solid transparent;
                border-left: 34px solid #0b4b7a; /* same as spotlight-title bg */
            }
            
            /* Marquee area */
            .spotlight-marquee-area{
                flex: 1;
                overflow: hidden;
                white-space: nowrap;
                padding-left: 45px;
                position: relative;
                z-index: 1;
                background: transparent;
            }
            
            /* Track animation */
            .spotlight-track{
                display: inline-block;
                white-space: nowrap;
                animation: spotlightScroll 18s linear infinite;
            }
            
            /* Items */
            .spotlight-item{
                display: inline-block;
                color: #083b66; /* Dark text for light bg */
                font-weight: 600;
                font-size: 15px;
                margin-right: 40px;
            }
            
            /* Animation */
            @keyframes spotlightScroll{
                0%{
                    transform: translateX(0);
                }
                100%{
                    transform: translateX(-50%);
                }
            }
            
            /* Pause on hover (optional) */
            .spotlight-marquee:hover .spotlight-track{
                animation-play-state: paused;
            }
            
            /* Responsive */
            @media(max-width: 768px){
                .spotlight-title{
                    min-width: 140px;
                    font-size: 14px;
                    padding: 12px 15px;
                }
            
                .spotlight-title::after{
                    right: -28px;
                    border-top: 24px solid transparent;
                    border-bottom: 24px solid transparent;
                    border-left: 28px solid #0b4b7a;
                }
            
                .spotlight-marquee-area{
                    padding-left: 35px;
                }
            
                .spotlight-item{
                    font-size: 13px;
                    margin-right: 25px;
                }
            }
            
            
             /* ================================
   ICE HERO SLIDER - FINAL CSS
================================ */

.ef-hero-sec{
  position: relative;
  overflow: hidden;
}

/* slider wrapper */
.ice-hero-slider{
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

/* slide */
.ice-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 4s ease-in-out;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1);
}

/* active slide */
.ice-slide.active{
  opacity: 1;
  visibility: visible;
  z-index: 5;
  transform: scale(1.06);
}

/* overlay */
.ice-slide::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* content */
.ice-slide .hero-inner{
  position: relative;
  z-index: 999;
  height: 100%;
  min-height: 650px;
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
}

/* shapes behind content */
.ice-slide .elements,
.ice-slide svg.lineanm{
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

/* ensure hero content is visible */
.ice-slide .hero-content,
.ice-slide .hero-image-box{
  position: relative;
  z-index: 9999;
}

.hero-content h1,
.hero-content p{
  color: #fff !important;
}

/* images responsive */
.hero-image-box img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* spotlight bar should not overlap hero */
.spotlight,
.spotlight-bar,
.spotlight-section{
  position: relative !important;
  z-index: 99999 !important;
}

/* responsive */
@media (max-width: 991px){
  .ice-hero-slider{
    height: auto;
    min-height: 600px;
  }
  .ice-slide{
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .ice-slide.active{
    transform: none;
  }
  .ice-slide .hero-inner{
    padding-top: 110px;
    padding-bottom: 80px;
    min-height: 600px;
    text-align: center;
  }
  .hero-image-box{
    margin-top: 30px;
  }
}


 
 
  .ice-parallax-courses{
    position: relative;
    background-image: url('/uploads/IMG_0385.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* PARALLAX */
  }

  /* dark overlay for better readability */
  .ice-parallax-courses::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.68);
    z-index: 0;
  }

  .ice-parallax-courses .container{
    position: relative;
    z-index: 1;
  }

  /* title white on dark bg */
  .ice-parallax-courses .section-title h2,
  .ice-parallax-courses .section-title span,
  .ice-parallax-courses .section-title .sub-heading{
    color: #fff !important;
  }

  /* mobile fix: background-attachment fixed issue */
  @media (max-width: 991px){
    .ice-parallax-courses{
      background-attachment: scroll !important;
    }
  }
 
/* ===== Auto Scrolling Gallery Section ===== */
.auto-gallery-section{
    padding: 60px 0;
    background: #fff;
}

.auto-gallery-slider{
    position: relative;
    overflow: hidden;
    width: 100%;
}

.auto-gallery-track{
    display: flex;
    gap: 18px;
    transition: transform 0.6s ease-in-out;
}

.auto-gallery-item{
    min-width: 260px;
    flex: 0 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

.auto-gallery-item img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Dots */
.auto-gallery-dots{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.auto-gallery-dots button{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #d9d9d9;
    cursor: pointer;
    transition: 0.3s;
}

.auto-gallery-dots button.active{
    background: #000;
    transform: scale(1.2);
}

/* Button */
.auto-gallery-btn-wrap{
    text-align: center;
    margin-top: 25px;
}

.auto-gallery-btn{
    display: inline-block;
    padding: 14px 45px;
    border-radius: 50px;
    background: #ff6a00;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
}

.auto-gallery-btn:hover{
    background: #e85f00;
    color: #fff;
}

 


/* Responsive */
@media(max-width: 768px){
    .auto-gallery-item{
        min-width: 220px;
    }
    .auto-gallery-item img{
        height: 150px;
    }
}