
body {
  font-family: 'Inter', sans-serif;
      }


    /* Sticky navbar */

    section {
      scroll-margin-top: 70px; /* Ensures section not hidden under sticky navbar */
    }
.logo {width: 140px;}
      a {text-decoration: none; color: #000;}
      a:hover {text-decoration: none !important;}
      /* Banner Section */
h1 {font-weight: 700;}
h3 {    margin-bottom: 1rem !important;}
p {font-size: 17px;}


.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-scrolled {
  background-color: #fff !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


.btn-color {background: #6e9dd4; color: #fff; padding: 10px 30px;}
.btn-color:hover {background:#25307a; color: #fff;}

.btn-color1 {background: #25307a; color: #fff; padding: 10px 30px;}
.btn-color1:hover {background:#fff; color: #000;}
.no-outline:focus {
    outline: none !important;
    box-shadow: none !important;
}
.no-focus:focus {
    outline: none !important;
    box-shadow: none !important;
}
.form-control:focus {
    border-color: #ced4da !important; /* default gray border */
    outline: none !important;
    box-shadow: none !important;
}
.btn-outline-primary:focus,
.btn-outline-primary:focus-visible,
.btn-outline-primary:focus:active {
  box-shadow: none !important;
  outline: none !important;
}
.btn:focus,
.btn:focus-visible,
.btn:focus:active {
  box-shadow: none !important;
  outline: none !important;
}
.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}
.accordion {--bs-accordion-inner-border-radius: 30px !important; --bs-accordion-border-width: none;}

.banner {
      position: relative;
      height: 80vh;
      background: url("../../files/images/homepage-2.jpg") no-repeat center center/cover;
      display: flex;
      align-items: center;
      color: #fff;
      text-align: left;
    }


.banner h1 {color: #fff;}
    .banner::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.55); /* dark overlay */
    }
    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }
    .banner h1 {
      font-weight: 700;
      font-size: 80px;
    } 
    .banner h2 {font-size: 65px;
    color: #fff;
    font-weight: 600;}
    .btn-custom {
      border-radius: 10px;
      padding: 10px 25px;
      font-weight: 500;
    }

    /* Banner1*/
.banner1 {
      position: relative;
      height: 350px;
      background: url("../../files/images/summit-inner-banner.jpg") no-repeat center center/cover;
      display: flex;
      align-items: center;
      color: #fff;
      text-align: center;
    }

.banner1 h1 {color: #fff;}
    .banner1::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.55); /* dark overlay */
    }


    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }
    .banner1 h1 {
      font-weight: 700;
      font-size: 80px;
    }
    .banner1 h2 {  font-size: 50px;  color: #fff;
    font-weight: 600; text-align: left;}

/* End Banner1*/

.navbar-toggler-icon {
  background-image: url("../images/icons/nav-icon.png");
}
.navbar-toggler {border: none; margin: 0 !important;}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none; 
}
/* Form1 */
.form1 {padding: 50px;}
.form1 h1 {text-align: c;}
.zf-errorMessage {color: red; display: none; margin-top: 5px;}
/* End Form1*/

    /* Navbar Styles */
    .navbar {
      transition: all 0.3s ease;
      background: transparent !important;
    }

.nav1 {padding: 20px 0;}
    .navbar.scrolled {
      background: #fff !important;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .navbar.scrolled .nav-link,
    .navbar.scrolled .navbar-brand {
      color: #000 !important;
    }
    .navbar .nav-link {
      color: #fff;
      transition: color 0.3s;
    }


/* Banner Video */
 /* Banner container fills the viewport */
      .video-banner {
        position: relative;
        width: 100%;
        height: 100vh; /* full viewport height */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
      }
.gap-2 {margin-top: 30px;}      
.btn2 {font-size: 18px;}
      /* Make video cover the whole container */
      .video-banner video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        object-fit: cover;
        z-index: 0;
      }

      /* Overlay to darken the video for readable text */
      .video-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
        z-index: 1;
      }

      .video-overlay1 {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(37,48,122,.35), rgba(37,48,122,.55));
        z-index: 1;
      }

      .video-overlay2 {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(37,48,122,.70), rgba(37,48,122,.70));
        z-index: 1;
      }

      /* Content sits above video and overlay */
      .video-content {
        position: relative;
        z-index: 2;
        padding: 1rem;
      }

      /* Make the headline responsive */
      .video-content h1 {
        font-weight: 700;
        letter-spacing: -0.02em;
      }

      /* Controls container */
      .video-controls {
        position: absolute;
        right: 1rem;
        bottom: 1rem;
        z-index: 3;
        display: flex;
        gap: .5rem;
      }

      .video-controls .btn {
        opacity: .9;
      }

      /* Ensure navbar sits above everything */
      .banner-nav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 4;
      }

      /* Mobile tweak: reduce headline size */
      @media (max-width: 576px) {
        .video-content h1 { font-size: 28px; }
        .video-content p { font-size: .95rem; }
      }
/* End Banner Video*/

/* Iframe */
.backgroundBg {background: #fff !important;}
.iframe-form {
  height: 1720px;
    width: 99%;
    border: none;
}
/* End Iframe */

/* Accordion */
.design {}
.design .mar1 {margin: 150px 0 0 -130px;}

    .custom-card {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
    }
    .content-section {
      color: #fff;
      padding: 40px 200px 40px 40px;
      background: rgba(0, 0, 0, 0.0);
      border-radius: 20px;
    }
    .accordion-button {
      background-color: #e1ecf7;
      color: #333;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 10px;
          margin: -1px;
    border-bottom: 2px #fff solid;
    }
    .accordion-button:not(.collapsed) {
      background-color: #25307a;
      color: #fff;     border-left: 6px solid #6c9dd4;
    }
    .design .text-upper {text-transform: uppercase;}

    .design .accordion-button:not(.collapsed)::after {display: none !important;}
.design .accordion-button::after {display: none !important;}
    @media (min-width: 992px) {
      .accordion-button {
        border-radius: 0;
      }

    }
/* End Accordion*/

/* Main Heading */
.main-heading {padding: 100px 50px 50px 50px;background: #25307a; color: #fff;}

/* End Main Heading */


.flex-column-reverse {
    flex-direction: row !important;
}


/* Jobs */
    .job-card {
      border: 1px solid #e5e5e5;
      border-radius: 8px;
      padding: 20px;
      background: #fff;
      transition: box-shadow 0.2s ease-in-out;
      max-width: 800px;
      margin: 0 auto 20px auto;
    }
    .job-card:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .job-card .btn-color:hover {background-color: #25307a; color: #fff;}
    .job-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .job-location {
      color: #d00;
      font-weight: 500;
      margin-right: 10px;
    }
    .job-salary {
      font-weight: 500;
      color: #333;
    }
    .job-desc {
      margin-top: 10px;
      color: #555;
      font-size: 0.95rem;
    }
    .job-footer {
      margin-top: 15px;
    }
    .bookmark-btn {
      border: 1px solid #ccc;
      background: transparent;
      border-radius: 6px;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    /* End Jobs*/


/* job-details */
.job-details {padding: 50px;}
/* End job-details*/

/* Apply Now */
.apply-bg {background: #6e9dd4; padding: 30px; color: #fff;}
.apply-bg .form-control {margin-bottom: 8px;}
/* End Apply Now*/ 

    .intro { padding: 40px 0 20px 0 !important;}
    .intro p {text-align: justify;}

    .intro1 {background: #d6d6d6;}
    .intro1 p { text-align: justify;}

    .looking-for-hire {margin: 0 auto; width: 50%;}
    .looking-for-hire label {margin-top: 20px; margin-bottom: 10px;}
    .looking-for-hire em {
    color: #000 !important;
    padding: 0;
    font-size: 17px !important;
    margin-left: 2px;
    font-weight: bold;
}
    .looking-for-hire .form { padding: 50px;    -webkit-box-shadow: 0px 0px 22px 0px #d8dfed;
    -moz-box-shadow: 0px 0px 22px 0px #d8dfed;
    box-shadow: 0px 0px 22px 0px #d8dfed;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 10px; margin-bottom: 50px;}
    .looking-for-hire-para p {text-align: justify;}
  

    .job-para {margin: 0 auto; max-width: 800px;padding: 20px 0;}

    .whychoose { }
    .whychoose h1 {}
    .whychoose p {text-align: justify; padding-right: 30px;}
    .whychoose .para1 {margin: 0 0 0 -150px; padding-right: 15px;}
    .whychoose .mar1 {margin-top: -130px;}
    .whychoose .content1  {width: 100%; margin: 0 auto; padding-right: 40px;}
    .whychoose .para {color: #000; font-size: 16px; padding: 0;}
    .whychoose h2 {font-weight: normal;}
    .whychoose h4 {font-weight: normal;}
    .whychoose .fa-solid {font-size: 50px; margin-bottom: 20px;color: #c62828;}
    .whychoose .content2 {    max-width: 100%;
    margin: 40px auto 0 auto;}
    .whychoose .icon {width: 60px;   
    padding: 5px;
    border-radius: 15px;}    
    .whychoose .box {
    border-radius: 8px;    height: 360px;
    padding: 50px 40px 40px;
    background:#f5f5f5;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    margin-bottom: 40px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-end;
    will-change: transform;
    transition: 0.45s 
ease-in-out;
    max-width: 470px;
    min-height: auto;
}

    .services {background: #c62828; padding: 50px 0;}
    .services2 {background: #e9eaef; padding: 50px 0;}
    .services a {color: #c62828;}
    .services .service-item:hover {border-left:10px solid #c62828;}
    .services .section-title {
    padding-bottom: 60px;
    position: relative;
}

    .services .fa-solid {
    --fa-style: 900;
    margin: 0 0 0 6px;
}
.services .service-item .card-links .link-item:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  height: 100%;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px -5px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--accent-color);
  transition: height 0.3s ease-in-out;
}

.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px -5px rgba(0, 0, 0, 0.08);
}

.services .service-item:hover::before {
  height: 100%;
}

.services .service-item:hover .icon i {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-color);
}

.services .service-item:hover .link-item i {
  transform: translateX(5px);
}

.services .service-item .icon {
  margin-bottom: 1.5rem;
}

.services .service-item .icon i {
  font-size: 2.5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transition: all 0.3s ease-in-out;
}

    .services .service-item {
    height: 100%; color: #000;
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 0px;border-radius: 8px;
    box-shadow: 0 5px 25px -5px rgba(0, 0, 0, 0.09);
    transition: all 0.3s 
ease-in-out;
    position: relative;
    overflow: hidden;
    background: #fff;
}
.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--accent-color);
  transition: height 0.3s ease-in-out;
}

.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px -5px rgba(0, 0, 0, 0.08);
}

.services .service-item:hover::before {
  height: 100%;
}

/* featured*/
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/

.featured-services {padding: 90px 0;}
.featured-services .service-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;border-radius: 8px;
}
.featured-services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.featured-services .service-card:hover .service-image img {
  transform: scale(1.05);
}

.featured-services .service-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #c62828;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.featured-services .service-icon i {
  font-size: 24px;
  color: #fff;
}

.featured-services .service-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.featured-services .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-services .service-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--surface-color), transparent);
}

.featured-services .service-content {
  padding: 30px 25px;
}

.featured-services .service-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
  line-height: 1.4;
}

.featured-services .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-services .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
color: #c62828;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px; transition: all 0.3s ease;
}

.featured-services .service-link:hover {
  color: var(--heading-color);
  gap: 12px;
}

.featured-services .service-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.featured-services .service-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .featured-services .service-icon {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 15px;
  }

  .featured-services .service-icon i {
    font-size: 20px;
  }

  .featured-services .service-image {
    height: 180px;
  }

  .featured-services .service-content {
    padding: 20px;
  }

  .featured-services .service-content h3 {
    font-size: 18px;
  }
}
/* End featured */
    .team {padding: 50px 0;}
    .team h2 {margin-bottom: 20px;}
    .team .para {font-size: 19px;}
    .team .team-bg {background: #25307a; color: #fff; border-radius: 8px; padding: 50px;}
    .team .team-bg1 {background: #4a6880; color: #fff; border-radius: 8px; padding: 50px;}
    .team img {width: 100%; margin: 25% 0;}
    .team .pad-content {padding: 20px 50px; }


    /* Dropdown on Hover */
    @media (min-width: 992px) {
      .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
      }
    }


.sector-tabContent {
  background: url("../../files/images/services.jpg") no-repeat center center fixed;
    background-clip: border-box;
    border-radius: 30px;
    padding: 40px;
    color: #fff;
    min-height: 500px;
    background-size: cover;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-blend-mode: normal;
}
.sector-content {
    background-color: #fff !important;
    padding: 2rem;
    border-radius: 8px; width: 80%;
    border: 1px #ccc solid;
}
.sector-content p {color: #333; font-size: 20px;}
        .sector-nav .nav-link {
      color: #333;
      font-weight: 500;
      padding: 1rem;
      border-left: 4px solid transparent;
      transition: all 0.3s ease; text-align: left;
    }
    .sector-nav .nav-link.active {
      background-color: #6c9dd4;
      border-left: 6px solid #25307a;
      color: #fff;
    }
    .sector-content {
      background-color: #d0f0e6;
      padding: 2rem;
      border-radius: 8px;    margin-top: 10%;
    }
    .sector-content h4 {
    color: #25307a;
    font-size: 34px;
    }
    .sector-content a {
      text-decoration: underline;
      color: #000;
    }



/* Testimonial */
.testimonial {padding: 50px 0; background: #f8f9fa;}
.testimonial .testimonial-card {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 2rem;
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      max-width: 85%;
      margin: auto;
    }

.testimonial .testimonial-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1rem;
    }

.testimonial .testimonial-name {
      font-weight: 600;
      font-size: 1.25rem;
      margin-bottom: 0.25rem;
      color: #25307a;
    }

.testimonial .testimonial-role {
      color: #3e74b1;
      margin-bottom: 1rem;
    }

.testimonial .testimonial-text {
      font-style: italic;
      color: #555;
      margin-bottom: 1rem;
    }

.testimonial .testimonial-stars i {
      color: #f7c04a;
    }

.testimonial .carousel-control-prev-icon,
.testimonial .carousel-control-next-icon {
      filter: invert(0.4);
    }

.testimonial .carousel-control-prev,
.testimonial .carousel-control-next {
      width: 5%;
    }

.testimonial .carousel-inner {
      padding: 2rem 0;
    }
/* End Testimonial */

.contact-logo {width: 200px; margin: 0px auto 20px auto;}
.contact-form {padding: 50px; margin: 50px auto 0px auto;}
.contact-form .form-control {margin-bottom: 20px;}
.contact-form h2 {font-weight: 600;}
.contactus2 {background: #6c9dd4; color: #fff; padding: 100px 100px 100px 250px;}
.contactus2 a {color: #fff;}
.contactus {text-align: center; background-color: #6c9dd4; color: #fff;}
.contactus a {color: #fff;}

.social-icons a {
      font-size: 30px;
      color: #fff;
      transition: 0.3s;
    }
    .social-icons a:hover {
      color: #6c9dd4; /* Bootstrap primary color */
    }


.copyright {background-color: #25307a; color: #fff; text-align: center; padding: 10px;}
.copyright p {margin: 0;}


    @media only screen and (max-width: 1600px) and (min-width: 1365px)  {.team p {font-size: 16px;}
  .team .pad-content {
    padding: 50px 50px;
}}
    @media only screen and (max-width: 1366px) and (min-width: 1199px)  {
           .contactus2 {padding: 100px 100px 100px 80px;}
    }
    @media only screen and (max-width: 1200px) and (min-width: 1024px)  {
            .contactus2 {padding: 100px 100px 100px 50px;}
    }
    @media only screen and (max-width: 1023px) and (min-width: 991px)  {
      .contactus2 {padding: 100px 100px 100px 50px;}
    }

    
    @media only screen and (max-width: 992px) and (min-width: 260px)  {
      .logo {width: 80px;}      

    .navbar-nav {background-color: #fff;}
    .navbar .nav-link {color: #000;text-align: center;border-bottom: 1px #25307a solid;}
    .nav1 {padding: 10px 0;}
    .banner .btn-danger {margin-bottom: 10px;}
    .banner {padding: 0 20px;}
    .btn-color {margin-bottom: 10px;}
    .btn-light {margin-bottom: 10px;}
.intro {padding: 80px 20px !important;}
.looking-for-hire {width: 90%;}
.looking-for-hire .form {padding: 15px;}
    .sector-content {width: 100%;}
    .sector-content h4 {font-size: 24px;}
    .sector-content p {font-size: 18px;}
    .sector-tabContent {padding: 15px; margin-top: 15px;}
    .flex-column-reverse {flex-direction: column-reverse !important;}
    .whychoose {text-align: center;}
    .whychoose .content1 { width: 90%;}
    .whychoose .content1 p {font-size: 18px;}
    .whychoose p {padding-right: 0;}
    .services {padding: 65px 20px;} 
    .featured-services {padding: 65px 20px;}
    .team {padding: 65px 20px;}
    .team-bg {margin-bottom: 15px;}
    .team .para {font-size: 16px;}
    .team .pad-content {padding: 20px;}
    .team .team-bg {padding: 10px;}
    .team .team-bg1 {padding: 10px;}
    .team img {    margin: 0% 0;}
.banner1 {height: auto; padding: 90px 0 60px 0;}
    .banner1 h1 {font-size: 40px;}
    .banner1 h2 {font-size: 35px;}

    .job-card {width: 100%;}
    .job-details .col-8 {width: 100%;}  
    .job-details .col-4 {width: 100%;}    
    .design .mar1 {margin: 0;}
    .design .accordion-button:not(.collapsed)::after {display: block !important;}
    .design .accordion-button::after {display: none !important;}
    .contactus2 {padding: 100px 20px 100px 20px;}
    .address .col-6 {width: 100%;}

    }
    @media only screen and (max-width: 992px) and (min-width: 766px)  {
      
      .navbar.scrolled .nav-link, .navbar.scrolled .navbar-brand {padding: 10px 0;}
       .col-4 {width: 50%;}
       .video-content h1 {font-size: 30px;}


    }

    @media only screen and (max-width: 767px) and (min-width: 280px)  {
      .col-4 {width: 100%;}

    }