*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

/* BODY */
body{
  background:#f4f6f8;
  padding-top:120px; /* fixed header space */
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 15px;
}

/* ================= STICKY HEADER ================= */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
}

/* TOP BAR */
.top-bar{
  background:#92251e;
  color:#fff;
  font-size:13px;
  transition:all .35s ease;
}
.site-header.hide-top .top-bar{
  transform:translateY(-100%);
  opacity:0;
  height:0;
  overflow:hidden;
}
.top-bar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 15px;
}
.top-right a{
  color:#fff;
  margin-left:15px;
  text-decoration:none;
}

/* MAIN HEADER */
.main-header{
  background:#ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0px 0;
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
 
  padding:10px 15px;
}
.logo img{
  width:226px;
  margin-right:10px;
}
.logo-text h2{
  color:#0d3b66;
  font-size:22px;
}
.logo-text span{
  font-size:12px;
  color:#777;
}

/* ================= NAV ================= */

.nav{
  display:flex;
  align-items:center;
}
.nav ul{
  display:flex;
  list-style:none;
}
.nav li{
  position:relative;
}
.nav > ul > li > a{
  color:#000;
  padding:10px 15px;
  text-decoration:none;
  display:block;
  font-size:17px;
}
.nav > ul > li > a:hover{
  color:#92251e;
}

/* SUBMENU DESKTOP */
.submenu{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  background:#fff;
  list-style:none;
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:all .35s ease;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
   display:flex;
  flex-direction:column;
}
.submenu li a{
  padding:12px 18px;
  display:block;
  color:#333;
  text-decoration:none; font-size:16px;
}
.submenu li a:hover{
  background:#0d3b66;
  color:#fff;
}
.nav li:hover > .submenu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* MOBILE TOGGLE */
.menu-toggle{
  display:none;
  font-size:26px;
  color:#000;
  cursor:pointer;
  position: absolute;
right: 20px;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

  .menu-toggle{
    display:block;
  }

  .nav{
    position:fixed;
    top:120px;
    left:0;
    width:100%;
    background:#0d3b66;
    flex-direction:column;
    display:none;
    z-index:9998;
  }

  .nav.menu-open{
    display:flex;
  }

  .nav ul{
    flex-direction:column;
    width:100%;
  }

  .nav li a{
    border-top:1px solid rgba(255,255,255,.15);
  }

 /* submenu base */
.submenu{
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 999;

  /* ðŸ‘‡ important for vertical */
  display: flex;
  flex-direction: column;
}

/* show on hover */
.has-sub:hover .submenu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* submenu links */
.submenu li{
  list-style: none;
  border-bottom: 1px solid #eee;
}

.submenu li:last-child{
  border-bottom: none;
}

.submenu a{
  padding: 12px 18px;
  display: block;
  color: #333;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.submenu a:hover{
  background: #f2f2f2;
  color: #e63946;
}
}

/* ================= TOP BLOCK SECTION ================= */

.top-block-xldc {
  max-width: 1200px;
  margin: 15% auto 0;
}

.top-block-xldc .block-wrap {
  display: flex;
  flex-wrap: wrap;
}

.top-block-xldc .block-item {
  flex: 1;
  min-height: 120px;
  padding: 20px 25px; /* Padding thoda adjust kiya space ke liye */
  color: #fff;
  position: relative;
  
  /* ðŸ‘‡ Icon left aur content right karne ke liye */
  display: flex;
  align-items: flex-start; 
  gap: 20px; /* Icon aur text ke beech ka gap */
}

.top-block-content {
  flex: 1;
}

.top-block-xldc h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.top-block-xldc p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.top-block-xldc .icon {
  font-size: 35px; /* Size thoda chhota kiya side alignment ke liye */
  line-height: 1;
}

.top-block-xldc .arrow {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,.25);
  z-index: 2;
  cursor: pointer;
}

/* COLORS */
.orange { background: #0d3b66; }
.blue { background: #92251e; }
.yellow { background: #082334; }

/* BLOCK MOBILE */
@media(max-width:900px) {
  .top-block-xldc .block-item {
    flex: 100%;
    /* Mobile par bhi left icon rahega, agar center chahiye toh flex-direction: column karein */
  }
}
/********************************************************************/

.mid-block-evntc-news{
  background:#fff;
  padding:60px 0;
  font-family: Arial, sans-serif;
}

.mid-block-evntc-news .container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:40px;
}

/* HEADINGS */
.mid-block-evntc-news h3{
  font-size:22px;
  margin-bottom:20px;
  position:relative;
}
.mid-block-evntc-news h3::after{
  content:"";
  width:25px;
  height:2px;
  background:#ccc;
  display:block;
  margin-top:8px;
}

/* NEWS */
.news-item{
  padding:12px 0;
  border-bottom:1px solid #eee;
}
.news-item .date{
  font-size:12px;
  color:#999;
  display:block;
  margin-bottom:5px;
}
.news-item a{
  color:#0d3b66;
  text-decoration:none;
  font-size:14px;
}
.news-item a:hover{color:#e63946;}

/* EVENTS */
.event-item{
  display:flex;
  margin-bottom:20px;
  border:1px solid #ccc; padding:10px;
}
.event-date{
  width:60px;
  text-align:center;
  color:#fff;
  padding:8px 0;
  margin-right:15px;
}
.event-date span{
  font-size:12px;
}
.event-date strong{
  font-size:26px;
  display:block;
}

.event-date.blue{background:#0d3b66;}
.event-date.orange{background:#f26c4f;}
.event-date.gray{background:#bdbdbd;}

.event-info a{
  color:#0d3b66;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
}
.event-info p{
  font-size:13px;
  color:#777;
  margin-top:4px;
}

/* ABOUT */
.about-block img{
  width:100%;
  margin-bottom:15px;
}
.about-block p{
  font-size:14px;
  color:#666;
  line-height:1.6;
}

/* LINKS */
.link-more{
  display:inline-block;
  margin-top:15px;
  color:#e63946;
  font-size:14px;
  text-decoration:none;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:900px){
  .mid-block-evntc-news .container{
    grid-template-columns:1fr;
  }
}
/************************************************************************/
.footer-universo{
  background: url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f') center/cover no-repeat;
  color:#fff;
  font-family: Arial, sans-serif;
}

.footer-overlay{
  background: linear-gradient(rgba(7,40,77,.95), rgba(7,40,77,.95));
}

.footer-universo .container{
  max-width:1200px;
  margin:auto;
  padding:70px 15px;
}

.footer-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:40px;
}

/* LOGO */
.logo{
  font-size:28px;
  font-weight:700;
}
.logo span{
  display:block;
  font-size:14px;
  font-weight:400;
  opacity:.8;
  margin-top:5px;
}

/* HEADINGS */
.footer-col h3{
  font-size:20px;
  margin-bottom:20px;
}

/* TEXT */
.footer-col p{
  font-size:14px;
  line-height:1.6;
  opacity:.9;
}

/* LINKS */
.footer-col ul{
  list-style:none;
  padding:0;
}
.footer-col ul li{
  margin-bottom:10px;
}
.footer-col ul a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  opacity:.9;
}
.footer-col ul a:hover{
  color:#f26c4f;
}

.footer-link{
  display:inline-block;
  margin-top:10px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}
.footer-link:hover{color:#f26c4f;}

/* BOTTOM */
.footer-bottom{
  background:#041f3a;
  text-align:center;
  padding:15px;
  font-size:13px;
  opacity:.9;
}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }
}

/********************************************************************/

/********************************************************************************************/

/* Stats Section Styling */
.rd-block-stats {
 
  background-image: linear-gradient(rgba(0,51,102,0.9), rgba(0,51,102,0.9)), url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f'); /* Optional: Subtle background image */
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.rd-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.rd-stat-box {
  padding: 20px;
  transition: all 0.4s ease;
  position: relative;
}

/* Hover par box thoda glow karega */
.rd-stat-box:hover {
  transform: translateY(-10px);
}

.rd-icon-wrapper {
  margin-bottom: 20px;
  display: inline-block;
}

/* Icons styling - Image ke icons se match karne ke liye */
.rd-icon-img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1); /* Black icons ko white karne ke liye */
  opacity: 0.9;
}

.rd-counter {
  font-size: 2.5rem; /* Bada aur bold number */
  font-weight: 800;
  margin: 10px 0;
  display: block;
  line-height: 1;
}

.rd-stat-line {
  width: 40px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 15px auto;
  border-radius: 2px;
}

.rd-stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive fixes */
@media (max-width: 768px) {
  .rd-counter {
    font-size: 2.8rem;
  }
  .rd-block-stats {
    padding: 50px 20px;
  }
  .logo img {
  width: 170px;
  margin: auto;
 }
 .top-bar {
    font-size: 8px;
}
.nav {
  background: #f5f5f5;}
  .top-block-xldc{margin: 0px !important;}
  .ro-t{height:250px !important;}
  .student-fetured .cta-text h3 {
  font-size: 13px !important;}
}

.ro-t{width:100% !important; height:295px }
/**********************************************************/
.rd-block-about {
  padding: 80px 20px 12px;
  background-color: #fff;
  font-family: 'Arial', sans-serif;
}

.rd-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* Image side slightly wider */
  gap: 40px;
  align-items:left;
}

/* LEFT SIDE GRID */
.rd-about-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
}

.rd-img-top {
  grid-column: 1 / span 2; /* Large top image across both columns */
}

.rd-img-top img, .rd-img-bottom img {
  width: 100%;
  display: block;
  object-fit: cover; height:236px;
}

.rd-experience-box {
  background-color:#92251e; /* Specific red from image */
  color: white;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rd-experience-box h2 {
  font-size: 4rem;
  margin: 0;
  line-height: 1;
text-align:center;font-weight:bold;
}

.rd-experience-box hr {
  width: 50px;
  margin: 15px 0;
  border: 1px solid white;
}

.rd-experience-box p {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
}

/* RIGHT SIDE CONTENT */
.rd-red-line {
  width: 40px;
  height: 2px;
  background-color: #f5b417;
  margin-bottom: 20px;
}

.rd-lead-text {
  color: #777;
  line-height: 1.6;
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.rd-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.rd-features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
  font-size:16px;
}

.rd-features-list li span {
  background-color:#f5b417;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-right: 15px;
  flex-shrink: 0;
}

.rd-btn-read {
  display: inline-block;
  background-color: #082334;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  transition: opacity 0.3s; font-size: 15px;
}

.rd-btn-read:hover {
  opacity: 0.9;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .rd-container {
    grid-template-columns: 1fr; /* Stack layout */
  }
  
  .rd-about-visuals {
    order: 1; /* Images on top for mobile */
  }
  
  .rd-about-content {
    order: 2;
  }
}

@media (max-width: 500px) {
  .rd-about-visuals {
    grid-template-columns: 1fr;
  }
  .rd-img-top {
    grid-column: 1 / span 1;
  }
  .rd-experience-box h2 {
    font-size: 3rem;
  }
}

/******************************************************************************/
.rd-block-whychoose {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Arial', sans-serif;
}

.rd-block-whychoose .rd-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr; /* Left side narrow, right side wide */
    gap: 50px;
    align-items: flex-start; text-align:left;
}

/* LEFT SIDE */
.rd-why-title {
    font-size: 42px;
    color: #0d1b3e; /* Dark Blue from design */
    font-weight: 700;
    margin-bottom: 25px;
}

.rd-why-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.rd-btn-learn {
    display: inline-block;
    background-color: #f5b417; /* Orange from design */
    color: #fff;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
    transition: background 0.3s;
}

.rd-btn-learn:hover {
    background-color: #e54e00;
}

/* RIGHT SIDE FEATURES */
.rd-why-features {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns grid */
    gap: 40px 30px;
}

.rd-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px; border:1px solid #ccc; padding:15px;
}

.rd-feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    /* Design color match filters (optional if using orange icons) */
}

.rd-feature-content h3 {
    font-size: 19px;
    color: #0d1b3e;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.rd-feature-content p {
    color: #777;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .rd-block-whychoose .rd-container {
        grid-template-columns: 1fr; /* Stack on tablet */
        text-align: center;
    }
    
    .rd-why-features {
        gap: 30px;
    }
    
    .rd-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .rd-why-features {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    
    .rd-why-title {
        font-size: 32px;
    }
}


/*********************************/

.bookacall {
  background-color: #92251e;
  padding: 40px 20px;
}

.bookacall-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bookacall-text {
  color: #ffffff;
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.bookacall-btn {
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.bookacall-btn:hover {
  background-color: #ffffff;
  color: #3f78a8;
}

.bookacall-btn span {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .bookacall-container {
    flex-direction: column;
    text-align: center;
  }

  .bookacall-text {
    font-size: 22px;
  }

  .bookacall-btn {
    margin-top: 10px;
  }
}


/*************************************************/

.student-fetured {
  background: #f5f5f5;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
}

.student-fetured .container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.student-fetured .heading {
  text-align: center;
  margin-bottom: 60px;
}

.student-fetured .heading h2 {
  font-size: 28px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.student-fetured .heading p {
  max-width: 700px;
  margin: auto;
  color: #777;
  font-size: 15px;
  line-height: 1.7;
}

/* Features */
.student-fetured .features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  margin-bottom: 80px;
}

.student-fetured .feature-box img {
  width: 60px;
  margin-bottom: 20px;
}

.student-fetured .feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.student-fetured .feature-box p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

/* CTA */
.student-fetured .cta-box {
  background: linear-gradient(rgba(20, 70, 140, 0.9), rgba(20, 70, 140, 0.9)),
              url('../../assets/img/call-to-action-bg.jpg') center/cover no-repeat;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
 border-radius:10px;}

.student-fetured .cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.student-fetured .cta-icon img {
  width: 70px;
}

.student-fetured .cta-text h3 {
  font-size: 40px;
  margin-bottom: 5px;
}

.student-fetured .cta-text p {
  font-size: 16px;
  opacity: 0.9;
}

.student-fetured .cta-btn {
  background: #f4a62a;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: 0.3s;
}

.student-fetured .cta-btn:hover {
  background: #d98e1f;
}

/* Responsive */
@media (max-width: 992px) {
  .student-fetured .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .student-fetured .cta-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .student-fetured .features {
    grid-template-columns: 1fr;
  }

  .student-fetured .heading h2 {
    font-size: 22px;
  }
}

////////////////////////////////////////////////////////////////////////////////// equire form
.enquire-form {
  padding: 60px 20px;
  background: #f8f9fa;
}

.enquire-form .container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* FORM SIDE */
.form-box {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-box h2 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.form-group textarea {
  height: 100px;
  resize: none;
}

button {
  width: 100%;
  padding: 12px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #92251e;
}

/* IMAGE SIDE */
.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  border-radius: 10px;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .enquire-form .container {
    flex-direction: column;
  }

  .image-box {
    order: -1;
  }
}

////////////////////////////////////////////////////////////////////////////cotact

.cotct-sectio {
  background: #f8f9fa;
}

/* MAP */
.map-box iframe {
  display: block;
}

/* CONTAINER */
.cotct-sectio .container {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* BLOCKS */
.contact-block {
  flex: 1;
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-block h3 {
  margin-bottom: 10px;
  color: #92251e; font-weight: bold;
}

.contact-block p {
  font-size: 14px;
  color: #333;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .cotct-sectio .container {
    flex-direction: column;
  }
}