*{
    margin: 0;
    padding: 0;
    
}

:root{
    --primary-blue:#07125d;
    --accent-orange:#ff7a18;
}

body{
    font-family: 'Poppins', sans-serif;
}

/* ================= TOP BAR ================= */
.top-bar{
    background: var(--primary-blue);
    color:#fff;
    font-size:14px;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
    margin-right:15px;
}

.top-bar i{
    /* color:var(--accent-orange); */
}



/* Logo */
.brand-logo{
    font-size:26px;
    font-weight:700;
    color:var(--primary-blue) !important;
}

.brand-logo span{
    color:var(--accent-orange);
}

/* Nav links */
.nav-link{
    font-weight:500;
    margin-left:14px;
    color:#000!important;
    position:relative;
}

/* Underline hover */
/*.nav-link::after{*/
/*    content:'';*/
/*    position:absolute;*/
/*    left:0;*/
/*    bottom:6px;*/
/*    width:0;*/
/*    height:2px;*/
   
/*    transition:0.3s;*/
/*}*/

/*.nav-link:hover::after{*/
/*    width:100%;*/
/*}*/

.nav-link:hover{
    color:var(--accent-orange) !important;
}

/* Dropdown hover open (desktop) */
@media(min-width:992px){
    .dropdown:hover .dropdown-menu{
        display:block;
        opacity:1;
        visibility:visible;
        margin-top:12px;
    }
}

/* Dropdown menu */
.dropdown-menu{
    border:none;
    border-radius:12px;
    padding:12px 0;
    opacity:0;
    visibility:hidden;
    transition:0.3s;
}

.dropdown-item{
    font-weight:500;
    padding:10px 22px;
}

.dropdown-item i{
    color:var(--primary-blue);
}

.dropdown-item:hover{
    background:rgba(255,122,24,0.12);
    color:var(--accent-orange);
}

/* CTA Button */
.btn-quote{
    background:var(--primary-blue)!important;
    color:#fff!important;
    padding:9px 22px;
    border-radius:8px;
    font-weight:500;
}

.btn-quote:hover{
    background:var(--accent-orange)!important;
    color:#fff;
}
/* MOBILE & BOOTSTRAP CLICK SUPPORT */
.dropdown-menu.show{
    opacity:1;
    visibility:visible;
}

/* Desktop hover only */
@media(min-width:992px){
    .dropdown:hover .dropdown-menu{
        display:block;
        opacity:1;
        visibility:visible;
        margin-top:12px;
        top:20px;
    }
}
/* Hide top bar on mobile */
@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
}
.sticky-top{
    z-index: 999;
   
}

.top-bar a i{
    transition: all 0.3s ease;
}



@media(max-width:693px){
    .brand-logo {
        display: contents !important;
    }
    .nav-in{
  
        padding:20px 0 10px 0;
}
}
@media(max-width:991px){
.navbar-collapse {
    background: #07125d!important;
}
    .nav-link {
      color:white !important;  
    }
    .nav-link::after {
   
    bottom: 3px !important; }
    .btn-quote {
    background: #ff6f00 !important;
    margin: 0  0 20px 10px;
}
    
}


/* Home slider */
/* slider height */
.programs-slider img{
  height:80vh;
  object-fit:cover;
}

/* overlay */
.carousel-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgb(0 0 0 / 54%), rgba(0, 0, 0, .3));
  z-index:1;
}

/* caption */
/* caption center */
.carousel-caption{
  z-index:2;
  top:50%!important;
  left:50%!important;
  transform:translate(-50%, -50%)!important;
  bottom:auto;
  text-align:center;
  max-width:700px;
}


.carousel-caption h2{
  font-weight:700;
  font-size:42px;
}

.carousel-caption p{
  font-size:16px;
  margin:15px 0 25px;
}

/* button */
.btn-program{
  background:#fff;
  color:#000;
  padding:12px 32px;
  border-radius:50px;
  font-weight:600;
}

.btn-program:hover{
  background:linear-gradient(135deg,var(--green),var(--orange));
  color:#fff;
}

/* mobile */
@media(max-width:768px){
  .programs-slider img{ height: 60vh !important; }
  .carousel-caption{
    bottom:15%;
    text-align:center;
    margin:auto;
  }
  .carousel-caption h2{ font-size:21px; }
  
    .carousel-caption{
         transform:translate(-0%, -80%)!important;
          left:15%!important;
    }
    .btn-program{
        font-size:12px;
         padding:9px 18px;
    }
    
}



.about-premium{
  background:linear-gradient(180deg,#fff,#f9f9f9);
}

/* badge */
.about-badge{
  background:rgba(245,124,0,.1);
  color:#07125d;
  padding:8px 18px;
  border-radius:30px;
  font-weight:600;
}

/* heading */
.about-premium h2{
  font-size:38px;
  line-height:1.3;
   color:#07125d;
}
.about-premium h2 span{
  color:#07125d;

}

/* stats */
.about-stat{
  background:#fff;
  padding:18px;
  border-radius:14px;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.about-stat h4{
  color:#07125d;
  font-weight:700;
  margin:0;
}
.about-stat span{
  font-size:14px;
  color:#555;
}


/* ===== SERVICES ===== */
.service-link{
  text-decoration:none;
  color:inherit;
  display:block;
}

.service-card{
  background:#fff;
  border-radius:22px;
  padding:22px 18px;
  height:100%;
  box-shadow:0 15px 45px rgba(0,0,0,.08);
  transition:.45s ease;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 70px rgba(0,0,0,.15);
}

/* icon */
.service-illu{
  width:90px;
  margin-bottom:10px;
  transition:.5s;
}

.service-card:hover .service-illu{
  transform:translateY(-6px) scale(1.05);
}

/* text */
.service-card h5{
  font-weight:600;
  margin-top:12px;
}

.service-card p{
  font-size:14px;
  color:#555;
}

/* arrow */
.arrow-btn{
  width:48px;
  height:48px;
  background:#07125d;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:14px auto 0;
  transition:.45s;
}

.service-card:hover .arrow-btn{
  background:#f57c00;
}

.service-card:hover .arrow-btn i{
  transform:rotate(45deg) scale(1.1);
}

.arrow-btn i{
  transition:.45s;
}


/* image */
.about-image-box{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,.18);
}
.about-image-box img{
  transition:.6s;
}
.about-image-box:hover img{
  transform:scale(1.06);
}

/* overlay */
.about-image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(245,124,0,.15),rgba(0,0,0,.35));
}

/* floating badge */
.experience-badge{
  position:absolute;
  bottom:20px;
  left:20px;
  background:#fff;
  padding:18px 22px;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,.2);
  text-align:center;
}
.experience-badge h3{
  color:#07125d;
  font-weight:700;
  margin:0;
}
.experience-badge span{
  font-size:13px;
  color:#555;
}

/* mobile */
@media(max-width:768px){
  .about-premium h2{ font-size:28px; }
  .experience-badge{ left:10px; bottom:10px; }
}

.service-illu{
  width:90px;
  transition:.4s ease;
}

.service-card:hover .service-illu{
  transform:translateY(-8px) scale(1.05);
}

/* Card */
.service-card{
  background:#fff;
  border-radius:20px;
  box-shadow:0 15px 45px rgba(0,0,0,.08);
  transition:.4s;
}

.service-card:hover{
  transform:translateY(-10px);
}

/* Premium arrow */
.arrow-btn{
  width:48px;
  height:48px;
  background:#07125d;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:18px auto 0;
  transition:.4s;
}

.service-card:hover .arrow-btn{
  background:#f57c00;
  transform:rotate(45deg);
}



/* ================= SECTION ================= */
.bcs-contact-section{
  position:relative;
  background:linear-gradient(
    135deg,
    #07125d,
    #0b1c7a,
    #07125d
  );
  font-family:'Poppins',sans-serif;
  overflow:hidden;
  cursor: pointer;
}

/* soft glow */
.bcs-contact-section::after{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%,rgba(255,122,24,.18),transparent 40%),
    radial-gradient(circle at 80% 70%,rgba(255,255,255,.08),transparent 45%);
  pointer-events:none;
}

/* ================= LEFT ================= */
.bcs-left-badge{
  display:inline-block;
  background:rgba(255,255,255,.15);
  color:#fff;
  padding:8px 22px;
  border-radius:30px;
  font-weight:600;
  letter-spacing:1px;
  backdrop-filter:blur(8px);
}

.bcs-left-title{
  font-size:42px;
  font-weight:800;
  line-height:1.3;
  color:#fff;
}

.bcs-left-title span{
  color:var(--accent-orange);
}

.bcs-left-text{
  color:#dfe4ff;
  max-width:520px;
}

/* points */
.bcs-left-points{
  list-style:none;
  padding:0;
  margin-top:25px;
}

.bcs-left-points li{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
  color:#fff;
}

.bcs-point-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent-orange);
  transition:.4s;
}

.bcs-left-points li:hover .bcs-point-icon{
  background:var(--accent-orange);
  color:#fff;
  transform:rotate(360deg);
}

/* ================= FORM ================= */
.bcs-form-wrapper{
  position:relative;
  z-index:2;
}

.bcs-form-box{
  background:#fff;
  padding:40px;
  border-radius:24px;
  box-shadow:0 35px 90px rgba(0,0,0,.35);
}

.bcs-form-title{
  font-weight:700;
  color:var(--primary-blue);
}

/* inputs */
.bcs-input{
  border-radius:14px;
  padding:14px 16px;
  border:1px solid #ddd;
}

.bcs-input:focus{
  border-color:var(--accent-orange);
  box-shadow:0 0 0 3px rgba(255,122,24,.18);
}

/* button */
.bcs-submit-btn{
  background:linear-gradient(
    135deg,
    var(--primary-blue),
    var(--accent-orange)
  );
  color:#fff;
  padding:15px;
  border-radius:50px;
  font-weight:700;
  letter-spacing:.5px;
  transition:.4s;
}

.bcs-submit-btn:hover{
  background:linear-gradient(
    135deg,
    var(--accent-orange),
    var(--primary-blue)
  );
  transform:translateY(-2px);
  box-shadow:0 18px 45px rgba(255,122,24,.45);
}

/* mobile */
@media(max-width:768px){
  .bcs-left-title{ font-size:28px; }
}

/* about page */
.it-about-section{
  padding:100px 0;
  background:#ffffff;
}

.it-about-badge{
  color:#ff7a18;
  font-weight:600;
  letter-spacing:1px;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.it-about-badge::after{
  content:'';
  width:50px;
  height:2px;
  background:#ff7a18;
}

.it-about-title{
  font-size:44px;
  font-weight:800;
  margin:20px 0;
  color:#07125d;
}

.it-about-text{
  color:#555;
  line-height:1.8;
  margin-bottom:14px;
}

.it-value-list{
  padding:0;
  margin-top:30px;
}

.it-value-list li{
  list-style:none;
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
  font-weight:500;
}

.it-value-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(135deg,#07125d,#ff7a18);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.4s;
}

.it-value-list li:hover .it-value-icon{
  transform:rotate(360deg) scale(1.1);
}

.it-about-img img{
  width:100%;
  border-radius:30px;
  box-shadow:0 25px 60px rgba(0,0,0,.2);
}
.it-mv-section{
  background:linear-gradient(135deg,#07125d,#0c1f8f);
  padding:50px 0;
  color:#fff;
}

.it-mv-title{
  text-align:center;
  margin-bottom:60px;
}

.it-mv-card{
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(12px);
  padding:45px;
  border-radius:22px;
  height:100%;
  box-shadow:0 20px 45px rgba(0,0,0,.3);
  transition:.4s;
}

.it-mv-card:hover{
  transform:translateY(-12px);
}

.it-mv-icon{
  width:80px;
  height:80px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff7a18,#07125d);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin:0 auto 25px;
}

.it-mv-card h3{
  text-align:center;
  margin-bottom:18px;
  font-weight:700;
}
.it-infra-section{
  padding:90px 0;
  background:#f8fafc;
}

.it-infra-card{
  background:#fff;
  padding:40px 25px;
  border-radius:20px;
  text-align:center;
  height:100%;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  transition:.4s;
}

.it-infra-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(7,18,93,.25);
}

.it-infra-icon{
  width:90px;
  height:90px;
  border-radius:50%;
  background:linear-gradient(135deg,#07125d,#ff7a18);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  margin:0 auto 22px;
}

/* contact page */

 .cu-section-title {
      text-align: center;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 14px;
      font-weight: 600;
      color: #ff7a00;
    }

    .cu-heading {
      text-align: center;
      font-weight: 700;
      margin-bottom: 50px;
    }

    /* LEFT INFO BOX */
    .cu-info-box {
      display: flex;
      background: #f8f8f8;
      padding: 22px;
      margin-bottom: 20px;
      border-radius: 10px;
      align-items: center;
      border: 1px solid #eee;
    }

    .cu-info-icon {
      background: #000;
      color: #ff7a00;
      font-size: 22px;
      padding: 16px 18px;
      border-radius: 8px;
      margin-right: 20px;
    }

    .cu-info-text h5 {
      margin: 0;
      font-weight: 600;
      color: #666;
    }

    .cu-info-text p {
      margin: 5px 0 0;
      font-size: 15px;
      font-weight: 600;
    }

    /* CONTACT FORM WRAPPER */
    .cu-form {
      background: #ffffff;
      border: 1px solid #eee;
      border-radius: 12px;
      transition: 0.3s;
    }

    /* INPUT FIELDS */
    .cu-input {
      border: 1px solid #ccc !important;
      border-radius: 8px !important;
      padding: 12px 14px;
      transition: 0.3s;
      font-size: 15px;
    }

    .cu-input:focus {
      border-color: #ff7a00 !important;
      box-shadow: 0 0 0 0.18rem rgba(253, 216, 53, 0.4) !important;
    }

    /* SUBMIT BUTTON */
    .cu-submit-btn {
      background: #000;
      color: #fff;
      border-radius: 8px;
      font-size: 16px;
      transition: 0.3s;
    }

    .cu-submit-btn:hover {
      background: #ff7a00
    }

    /* FORM HOVER EFFECT */
    .cu-form:hover {
      box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
      transform: translateY(-2px);
    }

    /* MAP */
    .cu-map {
      margin-top: 40px;
      border-radius: 10px;
      overflow: hidden;
    }







  /* ================= FOOTER ================= */

.footer{
    background: var(--primary-blue);
    color: #fff;
}

.footer-logo{
    font-size:24px;
    font-weight:700;
}

.footer-logo span{
    color: var(--accent-orange);
}

.footer-text{
    font-size:14px;
    color:#ddd;
}

.footer-title{
    font-size:16px;
    font-weight:600;
    margin-bottom:15px;
    position:relative;
}

.footer-title::after{
    content:'';
    width:40px;
    height:2px;
    background: var(--accent-orange);
    position:absolute;
    left:0;
    bottom:-6px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#ddd;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.footer-links a:hover{
    color: var(--accent-orange);
    padding-left:6px;
}

/* Social Icons */
.footer-social a{
    width:36px;
    height:36px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background: rgba(255,255,255,0.1);
    border-radius:50%;
    color:#fff;
    margin-right:8px;
    transition:0.3s;
}

.footer-social a:hover{
    background: var(--accent-orange);
    transform: translateY(-4px);
}

.footer-line{
    border-color: rgba(255,255,255,0.1);
}

.footer-copy{
    font-size:13px;
    color:#ccc;
}
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

