/* =================================
GLOBAL
================================= */
html,body{
overflow-x:hidden;
max-width:100%;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
}


body{
font-family:'Poppins',sans-serif;
line-height:1.6;
color:#333;
}

img,svg{
max-width:100%;
height:auto;
display:block;
}

section{
width:100%;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* =================================
HERO SECTION
================================= */

.contact-hero{
position:relative;
height:350px;
background:url("/assets/bg.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.contact-overlay{
position:absolute;
inset:0;
background:rgba(210,60,20,0.85);
}

.contact-content{
position:relative;
z-index:2;
color:white;
}

.contact-content h1{
font-size:44px;
font-family:Georgia,serif;
}

/* =================================
ADMISSION CARD
================================= */

.admission-card{
flex:1;
min-width:320px;
background:#d71919;
color:white;
padding:45px 40px;
border-radius:16px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.admission-card h3{
color:#ffd43b;
font-size:30px;
margin-bottom:15px;
font-family:Georgia,serif;
}

.admission-card p{
font-size:16px;
line-height:1.6;
margin-bottom:20px;
}

.contact-item{
display:flex;
gap:15px;
margin-bottom:18px;
align-items:flex-start;
}

.contact-item .icon{
font-size:20px;
color:#ffd43b;
}

.contact-item strong{
display:block;
font-size:15px;
color:#ffd43b;
margin-bottom:4px;
}

.contact-item p{
margin:0;
font-size:15px;
}

.admission-card hr{
border:none;
height:1px;
background:rgba(255,255,255,0.3);
margin:25px 0;
}

.admission-card h4{
color:#ffd43b;
margin-bottom:10px;
}

/* =================================
PROCESS HEADING
================================= */

.process-heading{
text-align:center;
margin-bottom:60px;
}

.process-heading .sub{
font-size:14px;
letter-spacing:3px;
text-transform:uppercase;
color:#9a8a7a;
}

.process-heading .main{
font-size:42px;
font-weight:800;
margin-top:10px;
}

.process-heading span{
color:#d94030;
}

/* =================================
ADMISSION PROCESS SECTION
================================= */
/* =================================
ADMISSION PROCESS SECTION ONLY
================================= */
.admission-process{
  position: relative;
  padding: 100px 8%;
  background: #fdf5ee;
  text-align: center;
  overflow: hidden;
}

.admission-process .heading{
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.admission-process .heading .sub{
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9a8a7a;
}

.admission-process .heading .main{
  font-size: 42px;
  font-weight: 800;
  margin-top: 8px;
  line-height: 1.2;
}

.admission-process .heading .main span{
  color: #d94030;
}

/* CARDS ROW */
.admission-process .stage{
  position: relative;
  z-index: 2;
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

/* EXACTLY 3 CARDS IN SAME LINE */
.admission-process .card{
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  min-width: 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.admission-process .card-strip{
  height: 4px;
  width: 100%;
}

.admission-process #c1 .card-strip{ background:#d94030; }
.admission-process #c2 .card-strip{ background:#f06a2a; }
.admission-process #c3 .card-strip{ background:#f5a623; }

.admission-process .icon-area{
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff7f5;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.admission-process .icon-area img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admission-process .card-body{
  padding: 22px;
}

.admission-process .card-num{
  font-size: 42px;
  font-weight: 800;
  opacity: 0.1;
  line-height: 1;
}

.admission-process .card-title{
  font-weight: 700;
  font-size: 22px;
  margin-top: 8px;
  color: #222;
}

.admission-process .card-desc{
  font-size: 14px;
  color: #777;
  margin-top: 8px;
  line-height: 1.6;
}

/* DECORATION ONLY INSIDE THIS SECTION */
.admission-process .dot{
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.admission-process .glow-red{
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217,64,48,0.08), transparent);
  top: -150px;
  left: -100px;
  z-index: 0;
}

.admission-process .glow-gold{
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245,166,35,0.08), transparent);
  bottom: -120px;
  right: -80px;
  z-index: 0;
}

.admission-process .heading-box{
  position: absolute;
  top: 30px;
  left: 30px;
  width: 260px;
  height: 160px;
  border: 1px solid rgba(217,64,48,0.08);
  z-index: 0;
}

.admission-process .connector-svg{
  position: absolute;
  width: 100%;
  max-width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 0;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .admission-process .stage{
    gap: 20px;
  }

  .admission-process .card{
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
  }

  .admission-process .heading .main{
    font-size: 34px;
  }

  .admission-process .icon-area{
    height: 180px;
  }
}

@media (max-width: 768px){
  .admission-process{
    padding: 70px 20px;
  }

  .admission-process .stage{
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .admission-process .card{
    flex: 0 0 85%;
    max-width: 85%;
  }

  .admission-process .heading .main{
    font-size: 28px;
  }

  .admission-process .connector-svg,
  .admission-process .heading-box,
  .admission-process .dot{
    display: none;
  }
}
/* =================================
ENQUIRY SECTION
================================= */

/* =================================
UX HIGHLIGHT SECTION
================================= */

.ux-highlight-section{
background:#fff;
padding:80px 20px;
}

.ux-highlight-card{
max-width:900px;
margin:auto;
display:flex;
gap:28px;
align-items:flex-start;
}

.ux-line-wrap{
width:40px;
display:flex;
flex-direction:column;
align-items:center;
}

.ux-top-icon{
width:34px;
height:34px;
border-radius:50%;
background:linear-gradient(180deg,#d71919,#ef4b2b);
display:flex;
align-items:center;
justify-content:center;
}

.ux-top-icon span{
color:#fff;
font-size:18px;
}

.ux-vertical-line{
width:3px;
height:250px;
margin-top:6px;
background:linear-gradient(to bottom,#d71919,rgba(215,25,25,0.08));
}

.ux-content h2{
font-size:38px;
color:#c81818;
margin-bottom:28px;
}

.ux-item{
display:flex;
gap:16px;
margin-bottom:22px;
}

.ux-bullet{
width:22px;
height:22px;
border-radius:50%;
background:linear-gradient(180deg,#d71919,#ef4b2b);
color:white;
display:flex;
align-items:center;
justify-content:center;
font-size:12px;
}

.ux-item p{
font-size:24px;
color:#4a4a4a;
}

.ux-item strong{
color:#1f1f1f;
}

/* =================================
DECORATION
================================= */

.dot{
position:absolute;
border-radius:50%;
}

.glow-red{
position:absolute;
width:400px;
height:400px;
background:radial-gradient(circle,rgba(217,64,48,0.08),transparent);
top:-150px;
left:-100px;
}

.glow-gold{
position:absolute;
width:350px;
height:350px;
background:radial-gradient(circle,rgba(245,166,35,0.08),transparent);
bottom:-120px;
right:-80px;
}
.connector-svg{
position:absolute;
width:100%;
max-width:100%;
left:0;
top:0;
pointer-events:none;
}
.stage{
position:relative;
overflow:hidden;
}
/* =================================
RESPONSIVE
================================= */

/* Laptop */

@media (max-width:1200px){

.stage{
flex-wrap:wrap;
justify-content:center;
}

.card{
width:48%;
}

.contact-grid{
grid-template-columns:1fr;
}

}

/* Tablet */

@media (max-width:992px){

.contact-content h1{
font-size:36px;
}

.stage{
flex-direction:column;
align-items:center;
}

.card{
width:100%;
max-width:520px;
}

.admission-header h3{
font-size:36px;
}

}

/* Mobile */

@media (max-width:768px){

.contact-hero{
height:260px;
}

.contact-content h1{
font-size:30px;
}

.admission-process,
.admission-enquiry-section{
padding:70px 6%;
}

.heading .main,
.process-heading .main{
font-size:30px;
}

.admission-card{
padding:32px 26px;
}

.admission-card h3{
font-size:26px;
}

.contact-icon{
width:44px;
height:44px;
}

}

/* Small Mobile */

@media (max-width:480px){

.contact-content h1{
font-size:26px;
}

.heading .main,
.process-heading .main{
font-size:24px;
}

.card{
width:100%;
}

.icon-area{
height:110px;
}

.icon-area svg{
width:48px;
}

.btn-apply{
width:100%;
justify-content:center;
}

.contact-card{
flex-direction:column;
gap:10px;
}

.glow-red{
width:180px;
height:180px;
}

.glow-gold{
width:160px;
height:160px;
}

}
/* Prevent horizontal overflow */

html,body{
overflow-x:hidden;
max-width:100%;
}

.stage{
flex-wrap:wrap;
overflow:hidden;
}

.connector-svg{
width:100%;
max-width:100%;
height:auto;
left:0;
top:0;
position:absolute;
}

.card{
max-width:100%;
}

/* SECTION */
.admission-section{
  padding:60px 20px;
  background:#f5f6f8;
}

/* CONTAINER */
.admission-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:40px;
  align-items:flex-start;
}
  .admission-card{
    width:100%;
    /* SECTION BACKGROUND */
  padding:60px 20px;
  background: linear-gradient(
   135deg, #b30000, #ff5a00
  );
  }
/* FORM */
.admission-form{
  width:50%;
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.admission-form h3{
  margin-bottom:10px;
}

.admission-form p{
  margin-bottom:20px;
  color:#666;
}

/* FORM INPUTS */
.admission-form input,
.admission-form select{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:14px;
}

/* TWO INPUTS ROW */
.form-row{
  display:flex;
  gap:15px;
}

.form-row input{
  width:100%;
}

/* BUTTON */
.admission-form button{
  width:100%;
  padding:12px;
  border:none;
  border-radius:8px;
  background:#d23c14d9;
  color:white;
  font-size:15px;
  cursor:pointer;
  transition:0.3s;
}

.admission-form button:hover{
  background:#d94030;
}

/* YOUR EXISTING CARD */
.admission-card{
  width:50%;
}

/* RESPONSIVE */
@media(max-width:900px){
  .admission-container{
    flex-direction:column;
  }

  .admission-form,
  .admission-card{
    width:100%;
}
  .admission-card{
    width:100%;
    /* SECTION BACKGROUND */
  padding:60px 20px;
  background: linear-gradient(
   135deg, #b30000, #ff5a00
  );
  }
}
