*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#faf6f0;
  color:#4a3b2f;
  line-height:1.7;
}

h1,h2,h3{
  font-family:'Playfair Display', serif;
  color:#5a3e2b;
}

/* ===== NAVBAR ===== */

nav{
  position:fixed;
  width:100%;
  top:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 8%;
  background:#fffaf5;
  box-shadow:0 5px 25px rgba(0,0,0,0.05);
  z-index:1000;
}

.logo{
  color:#000000;
  font-weight:700;
}
.logo:hover{
  color:#e67e22;
}

nav a{
  color:#000000;
  text-decoration:none;
  margin-left:30px;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  color:#e67e22;
}

/* ===== HERO ===== */

.hero{
  height:100vh;
  background:
linear-gradient(rgba(255,255,255,0.45), rgba(255,255,255,0.45)),
url("img/sunrise.jpg")center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding-top:80px;
}

.hero h1{
  font-size:56px;
  margin-bottom:20px;
}

.hero p{
  font-size:20px;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  padding:14px 32px;
  background:#e67e22;
  color:white;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  margin:10px;
  transition:0.3s;
  box-shadow:0 8px 20px rgba(230,126,34,0.3);
}

.btn:hover{
  background:#cf711d;
  transform:translateY(-3px);
}

.btn-outline{
  display:inline-block;
  padding:14px 32px;
  border:2px solid #e67e22;
  color:#e67e22;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  margin:10px;
  transition:0.3s;
}

.btn-outline:hover{
  background:#e67e22;
  color:white;
  transform:translateY(-3px);
}
/* ===== PREMIUM VISION SECTION ===== */

.vision-section{
  padding:140px 8%;
  background:linear-gradient(to right,#faf6f0,#f2ebe2);
  position:relative;
  overflow:hidden;
}

.vision-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
  flex-wrap:wrap;
}

/* Decorative soft circle */
.vision-section::before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:rgba(230,126,34,0.08);
  border-radius:50%;
  top:-100px;
  right:-100px;
  z-index:0;
}

.vision-text{
  flex:1;
  position:relative;
  z-index:1;
}

.vision-text h2{
  font-size:48px;
  color:#5a3e2b;
}

.vision-line{
  width:70px;
  height:4px;
  background:#e67e22;
  margin:20px 0 40px 0;
  border-radius:4px;
}

.vision-card{
  background:white;
  padding:45px;
  border-radius:25px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  border-left:6px solid #e67e22;
}

.vision-card p{
  font-size:20px;
  line-height:1.8;
  color:#4a3b2f;
}

.vision-image{
  flex:1;
  position:relative;
  z-index:1;
}

.vision-image img{
  width:100%;
  border-radius:30px;
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
  transition:0.5s;
}

.vision-image img:hover{
  transform:scale(1.03);
}

/* Responsive */

@media(max-width:900px){
  .vision-container{
    flex-direction:column;
    text-align:center;
  }

  .vision-line{
    margin:20px auto 40px auto;
  }
}

/* ===== SECTIONS ===== */

section{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:40px;
  position:relative;
}

.section-title h2::after{
  content:"";
  width:60px;
  height:3px;
  background:#000000;
  text-align: center;
  display:block;
  margin:15px auto 0;
}



/* ===== CARDS ===== */
/* ===== ULTRA PREMIUM CARDS ===== */

.timeline{
  position:relative;
  max-width:1200px;
  margin:auto;
  padding:40px 0;
}

.timeline::after{
  content:'';
  position:absolute;
  width:4px;
  background:#e67e22;
  top:0;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
}

.timeline-item{
  width:45%;
  padding:30px 35px;
  background: #f4f9ff;
  border-radius:20px;
  position:relative;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  margin-bottom:50px;
  transition:0.4s;
}

.timeline-item:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(230,126,34,0.18);
}

.timeline-item.left{
  left:0;
}

.timeline-item.right{
  left:55%;
}

.timeline-item::before{
  content:'';
  position:absolute;
  width:18px;
  height:18px;
  background:#e67e22;
  border-radius:50%;
  top:30px;
}

.timeline-item.left::before{
  right:-9px;
}

.timeline-item.right::before{
  left:-9px;
}

/* Mobile Responsive */
@media(max-width:768px){

  .timeline::after{
    left:20px;
  }

  .timeline-item{
    width:100%;
    left:0 !important;
    padding-left:60px;
  }

  .timeline-item::before{
    left:20px !important;
  }
}
/* ===== MESSAGE ===== */

#ethics{
  position:relative;
  padding:140px 8%;
  text-align:center;
  color:white;
  display: flex;
  flex-direction: column;
  align-items: center;

  background:
  linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("img/ganga.jpg") center/cover no-repeat;


}


/* Text Styling Improve */
#ethics .big-text{
  font-size:24px;
  max-width:900px;
  margin:auto;
  line-height:1.9;
}

/* ===== FIX ETHICS HEADING ALIGNMENT ===== */

#ethics .section-title{
  text-align: center;
  width: 100%;
}

#ethics .section-title h2{
  text-align: center;
  margin: 0 auto 20px auto;
  color: #000000;
}

#ethics .section-title h2::after{
  margin: 15px auto 0 auto;
}

/* ===============================
   REGISTRATION SECTION DESIGN
================================ */

.alt-section{
  padding:80px 5%;
  background:linear-gradient(135deg,#f9fbff,#eef2ff);
  display:flex;
  justify-content:center;
  align-items:center;
}

.form-box{
  background:#ffffff;
  width:100%;
  max-width:500px;
  padding:45px;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
  animation:fadeUp 0.6s ease;
}

.form-box h2{
  text-align:center;
  margin-bottom:30px;
  font-size:26px;
  font-weight:700;
  background:linear-gradient(90deg,#4f46e5,#06b6d4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Inputs */
.form-box input,
.form-box textarea{
  width:100%;
  padding:14px 16px;
  margin-bottom:18px;
  border-radius:12px;
  border:1px solid #e2e8f0;
  background:#f8fafc;
  font-size:14px;
  transition:0.3s;
}

.form-box input:focus,
.form-box textarea:focus{
  border-color:#4f46e5;
  background:#ffffff;
  box-shadow:0 0 0 4px rgba(79,70,229,0.15);
  outline:none;
  transform:translateY(-2px);
}

/* File Upload */
.form-box input[type="file"]{
  padding:10px;
  cursor:pointer;
}

/* Button */
.form-box button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:linear-gradient(90deg,#4f46e5,#06b6d4);
  color:#fff;
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  transition:0.3s;
}

.form-box button:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(6,182,212,0.35);
}

/* Animation */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Responsive */
@media(max-width:480px){
  .form-box{
    padding:30px;
  }
}


/* ===== PROFESSIONAL FOOTER FIXED ===== */

.main-footer{
  background:#5a3e2b;
  color:#fff;
  padding:70px 8% 30px 8%;
}

.footer-container{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:60px;
  max-width:1200px;
  margin:auto;
}

.footer-col{
  flex:1;
}

.footer-col h3{
  font-size:20px;
  margin-bottom:20px;
  position:relative;
  color: #000000;
}

.footer-col h3::after{
  content:"";
  width:40px;
  height:3px;
  background:#f39c12;
  display:block;
  margin-top:8px;
}

.footer-col p,
.footer-col ul li{
  font-size:14px;
  margin-bottom:10px;
  line-height:1.6;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li a{
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#f39c12;
}

.social-icons{
  margin-top:15px;
}

.social-icons a{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:38px;
  height:38px;
  border-radius:50%;
  background:#f39c12;
  color:#fff;
  margin-right:10px;
  transition:0.3s;
}

.social-icons a:hover{
  transform:translateY(-4px);
  background:#e67e22;
}

.footer-bottom{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.2);
  text-align:center;
  font-size:14px;
}

/* Responsive */
@media(max-width:768px){
  .footer-container{
    flex-direction:column;
    gap:40px;
  }
}