


@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* @import url('https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css'); */


@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
::after,
::before {
  box-sizing: border-box;
}



/* Outer circle */
/* .custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #d1d1d1;
  border-radius: 50%;
  pointer-events: none;      
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  z-index: 9999;
} */

/* Inner dot */
/* .cursor-dot {
  width: 6px;
  height: 6px;
  background: #978800;
  border-radius: 50%;
} */




/* Keep font-awesome icons intact */
.fa,
.fas,
.far,
.fal,
.fab,
.fa-solid,
.fa-regular,
.fa-light,
.fa-thin,
.fa-duotone {
  font-family: "Font Awesome 6 Free" !important;
  
}
.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
}

/* html {
  scroll-behavior: smooth;
} */

body {
    /* scroll-behavior: smooth; */
    margin: 0;
    padding: 0;
    
    /* background:linear-gradient(#fff 5%,#d0f2ff 25%,#efffd6 50%,#b5d1fd 75%, #97b0e7 100%); */
    /* font-family: "Baloo Da 2", sans-serif; */
    font-family: "Fira Sans", sans-serif;
}
html,
body {
  overflow-x: hidden;
}

p{
    font-size: 18px;
}

/* site loader */
/* Loader background */
.site-loader{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0f172a; /* background color */
  z-index:9999;
  opacity:1;
  visibility:visible;
  transition:opacity 600ms ease, visibility 600ms ease;
}
.site-loader.hidden{
  opacity:0;
  visibility:hidden;
}

/* Logo fade-in effect */
.loader-logo{
  opacity:0;
  animation:loaderFadeIn 1.2s ease forwards;
  animation-delay:0.3s; /* logo appears after background */
}

@keyframes loaderFadeIn{
  from{opacity:0}
  to{opacity:1}
}
/* site loader */

#goTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: #0c0457;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 20%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#goTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1200px) {
  .mobile{
    display: none;
  }

}
@media (max-width: 1200px) {
  .desktop{
    display: none;
  }
}


/* overlay a content */

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
/* 

.section_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section_content_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.content {
  flex: 1 1 500px;
}

.content_titile h3 {
  font-size: 3rem;
  color: #222;
  margin-bottom: 20px;
}

.content_para p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.content_btn .btn {
    border: 1px solid #727eec;
    padding: 10px 20px;
    font-weight: 500;
    background-color: #b4baf1;
    color: #000000;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.content_btn .btn:hover {
  background-color: #1c2b7e;
    color: #fff;
}


.side_box {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
} */

/* .side_box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
} */
/* 
.box_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
}

.box {
  background-color: #a4f1d0;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.box:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.box_number {
  font-size: 2.5rem;
  color: #04204c; 
  margin: 0;
}

.box_title {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}


.our_promise .our_promise_content{
    
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: right;
}


.certification .container{
    display: flex;
    gap: 50px;
}
.certification .container .logos{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;

}
.certification .container .logos,.certification .container .section_content_wrapper{
    width: 50%;
}
.certification .container .logos img{
    width: 40%;
    height: auto;
    
}
.certification .container .content{
   
     display: flex;
    flex-direction: column;
    align-items: end;
    text-align: right;
} */

section{
    padding: 50px 10px;
}


.logo-carousel {
  overflow: hidden;
  width: 100%;
  background: #050724;
  padding: 20px;
}

.carousel-track {
  display: flex;
  animation: scrollLogos 20s linear infinite;
}

.carousel-track img {
  width: 150px;
  margin: 0 15px;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

footer{
  /* margin-top: 50px ; */
    background-color: #dce8ff;
    color: #080241;
    padding: 50px 20px;
}

.footer_wrapper {
  display: flex;
  width: 80%;
  margin: 0 auto;

}

.footer_wrapper > div:nth-child(1) {
  flex: 2;
  margin-right: 60px;
  text-wrap: wrap;
  /* background-color: #f94144; */
}

.footer_wrapper > div:nth-child(2),
.footer_wrapper > div:nth-child(3),
.footer_wrapper > div:nth-child(4) {
  flex: 1;
  /* background-color: #43aa8b; */
}

/* Optional styling */
.footer_wrapper > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
  padding: 20px;
  text-align: left;
  /* border: 1px solid #ddd; */
  
}
.footer_wrapper > div > div{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 50px;
}
.footer_wrapper > div > div h4{
    font-size: 18px;
    margin-bottom: 10px;
    color: #4542f0;
}
.footer_wrapper > div > div a{
    text-decoration: none;
    color: #0c035a;
    font-weight: 300;
}
.footer_wrapper > div > div a:hover{
    text-decoration: underline;
}

footer .company_address img{
    width: 50%;
}





/* About Us Page */

.hero-container {
    width: 100%;
    height: 70vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bg-darken-overlay, .bg-fill {
    top: 0;
    z-index: -1;
    position: absolute;
    width: inherit;
    height: inherit;
}
.bg-darken-overlay {
    background: rgba(0, 0, 0, .05);
}
.hero-container .hero-copy {
    color: #fff;
    padding-left: 50px;
}
.hero-container .hero-copy h1 {
    font-weight: 900;
}
.bg-fill .row{
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* 
.tab-container {
  width: 100%;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
   background: rgba(164, 192, 253, 0.4); 
   backdrop-filter: blur(15px);
}

.tab {
 

    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 1.5em 0;
    margin-right: 2em;
    font-size: 14px;
    position: relative;
    text-transform: uppercase;
    color: #000;
    opacity: .6;
    line-height: 1.4em;
}
.tab .top-border{
      width: 100%;
    height: 6px;
    top: 0;
    left: 0;
    display: block;
    position: absolute;
    background-color: #7b7b7b;
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    transition: all .5s ease;
}

.tab.active {
  opacity: 1;
    font-weight: 600;
}
.tab.active .top-border {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
    background-color: #ffd600;
}

.tab-content {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.6s ease;
  pointer-events: none;
  position: absolute;
  padding: 20px 20px 20px 50px;
}


.tab-content.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
} */


/* common section styling */
/* .global_network_container,.about_us_container,.purpuse-container,.governance_container{
    max-width: 1572px;
    margin: 0 auto;
} */

/* our reach content styling */
/* .about-grid-container,.values-grid-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about_us_content,.values_content {
  flex: 1;
  text-align: left;
}

.section-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.about_us_content p,.values_content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.about_us_image,.values_image {
  flex: 1;
  perspective: 1200px;
  display: flex;
  justify-content: center;
}

.about_us_image img ,.values_image img {
  width: 100%;
  max-width: 500px;
  transition: transform 1s ease, box-shadow 1s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.about_us_image img:hover,
.values_image img:hover {
  transform: rotateY(15deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
} */

/* Responsive adjustments */
/* @media (max-width: 768px) {
  .about-grid-container,.values-grid-container {
    flex-direction: column;
    padding: 30px;
  }

  .about_us_image img, .values_image img {
    max-width: 100%;
    transform: none;
    box-shadow: none;
  }
}


.card-grid-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 1em;
    justify-content: center;
}

.card-grid-container > div {
    flex-basis: 100%;
}
.card-grid > div {
    flex-basis: 18em;
}
.card-grid .certification-card {
    height: 100%;
}

.certification-card {
    padding: 0;
    background-color: white;
    border-radius:10px;
    border: 1px solid #d9d9d9;
    box-shadow: 0px 5px 20px rgba(30, 57, 95, 0.5);
    margin-top: 25px;
    display: grid;
    position: relative;
    text-align: left;
    color: #000000;
}
.certification-card h6,h4{
  margin-bottom: 2rem;
}

.certification-card > div:first-child {
    padding: 2em;
}
.certification-card > div:first-child ul {
    margin: 0;
    padding-left: 1.5em;
}

.card-grid .certification-card .certifications-container {
    padding-top: 2.5em;
}

.certification-card .certifications-container {
    padding: 1em;
    border-top: 2px solid #bcbcbc;
}
.card-grid .certification-card h6 {
    color: #3c4b54;
    font-weight: bold;
}


.certification-card .certifications-container > div {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0.5em;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.certification-card .certifications-container > div > div {
    flex-basis: 20%;
}
.certification-card .certifications-container > div > div img {
    max-height: 2.5em;
}

@media (min-width: 1260px) {
    .card-grid{
        grid-gap: 1.5em;
    }
    .card-grid > div{
        flex-basis: calc(50% - 0.75em);
    }
    .certification-card {
        grid-template-columns: repeat(2, 1fr);
    }
    .certification-card > div:last-child {
        border-top: none;
        border-left: 2px solid #bcbcbc;
    }
    .certification-card > div:last-child > div {
        flex-basis: 30%;
    }
} */




/* 
.history_gallery {
  display: grid;
  grid-template: repeat(2, 400px) / repeat(3, 1fr);
  gap: 15px;
  padding: 50px;
}

.history_gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);  
  border-radius: 6px;  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.history_gallery img:hover {
  transform: scale(1.05);  
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);  
  cursor: pointer;
}

.history_gallery .img1 { grid-area: 1 / 1 / 3 / 2; }  
.history_gallery .img2 { grid-area: 1 / 2 / 2 / 3; }
.history_gallery .img3 { grid-area: 1 / 3 / 2 / 4; }
.history_gallery .img4 { grid-area: 2 / 2 / 3 / 4; } */


/* Newsfeed */
.newsCard-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.newsCard {
  width: 500px;
  height: 400px; /* Set a fixed height for 50/50 split */
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
  /* font-family: Arial, sans-serif; */
  display: flex;
  flex-direction: column;
  /* background: linear-gradient(135deg, rgb(255, 255, 255), rgb(155, 155, 155)); */
  /* transition: background-color 0.3s ease; */
}

.newsCard:hover {
  /* background-color: #f9f9f9; */
  /* border-radius: 0px; */
  cursor: pointer;
}

.news-image {
  height: 40%;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 15px; */
}

.news-content {
  height: 60%;
  padding: 16px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.newsTag {
  display: inline-block;
  background-color: #cfe3fa;
  color: rgb(70, 69, 69);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  cursor: default;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.newsDate {
  display: block;
  color: #888;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.newsTitle {
  font-size: 1.1rem;
  margin: 8px 0;
  font-weight: bold;
  color: #000;
}

.newsPara {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.newsPara a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.newsPara a:hover {
  text-decoration: underline;
}




.slider-section .swiper {
    width: 100%;
    height: 100vh;
}

.slider-section .swiper-slide {
    /* position: relative; */
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* background: #000; */
}

.mosaic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

.mosaic div {
    background-repeat: no-repeat;
    background-size: 700% 300%;
    /* 10 cols × 6 rows */
    animation: mosaicIn 0.8s forwards;
    /* animation: mosaicIn 0.8s forwards; */

    /* transform-origin: center center; */
}


@keyframes mosaicIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
        /* start smaller */

        /* fade from center of each tile */
        transform-origin: center center;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}



 


.logo-sticky {
    display: none;
}

/* When navbar gets sticky */
.navbar.sticky .logo-default {
    display: none;
}

.navbar.sticky .logo-sticky {
    display: inline-block;
}


/* Make navbar float over slider */
.main-nav {
    /* position: absolute; */
    top: 0px;
    left: 0;
    width: 100%;
    padding: 15px 40px 0px 40px;
    z-index: 20;
    background: #fff;

    transition: background .4s ease, padding .3s ease, transform .4s ease;
}

/* Sticky state */
.main-nav.sticky {
    position: fixed;
    background: #fff;
    /* white bg */
    padding: 10px 40px;
    /* smaller on scroll */
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    /* start hidden */
}

.main-nav.sticky .navbar-brand img {
    /* width: 80px;
    height: 80px; */
    
}

/* Slide-down animation */
.main-nav.sticky.show {
    transform: translateY(0);
}

/* Change menu color when sticky */
.main-nav.sticky .nav-menu li a {
    color: #000;
    /* black text */
}


.navbar-toggler{
  background-color: #ffffff;
}
/* brand */
.navbar-brand img { 
    height:80px;
    
     }

/* nav links */
.navbar-nav .nav-link {
  text-transform: uppercase;
  font-size: 16px;
  margin-right: 5px;
  /* font-weight:400; */
  color:#000000;
  transition: color .2s ease;
}
.navbar-nav .nav-link i{
    color: #d17e01;
}
.navbar-toggler-icon {
  width: 2em;
  height: 2em;
}
.navbar .social-icons{
  margin-left: 30px;

}
.navbar .social-icons a i{
  color: #acd8fff8;
  font-size: 20px;
}
.sticky .social-icons a i {
    color: #000f64f8;
    font-size: 20px;
}


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

  }
}









.section-heading{
  font-size: 50px;
  /* color: #06156e; */
}
.section-title{
  font-size: 30px;
  color: #040a44;
  text-transform: uppercase;
}
.business .section-heading{
  color: #77c6fa;
}
/* .slider-text p{
  font-size: 1.5rem;
}
.slider-text a{
  padding: 10px 25px;
} */

  
.two-div-container{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
      /* min-height: 400px; */
}

.two-div-container > div {
      flex: 1; /* each div takes 50% */
      padding: 2rem;
}
  .left-div img {
  width: 500px;
  height: 400px;
  object-fit: cover;
  border:7px solid #cf9031;
  border-radius: 10px;
}

.right-div h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0a1f44;
}

.right-div p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #333;
}

.right-div .btn {
  background: #cf9031;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.right-div .btn:hover {
  background: #FBAE3C;
}

/* Responsive for mobile */
@media (max-width:1000px) {
  .two-div-container {
    flex-direction: column;
  }
  .two-div-container > div {
    width: 100%;
  }
}

/* ===== About Us Section ===== */
.about-us {
  width: 100%;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Layout Wrapper */
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Image */
.about-left {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.about-left img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border: 6px solid #cf9031;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Right Content */
.about-right {
  flex: 1 1 50%;
}

.about-right .section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 1rem;
}

.about-right p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-right hr {
  width: 60px;
  border: 2px solid #cf9031;
  margin-bottom: 1.5rem;
}

/* Button Styling */
.btn-about {
  display: inline-block;
  background-color: #cf9031;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background-color: #fbae3c;
  color: #000;
}

/* ===== Responsive Design ===== */

/* Tablets */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-left img {
    max-width: 420px;
  }

  .about-right {
    flex: 1 1 100%;
  }

  .about-right p {
    text-align: center;
  }

  .about-right hr {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-us {
    padding: 60px 15px;
  }

  .about-right .section-heading {
    font-size: 1.8rem;
  }

  .about-right p {
    font-size: 1rem;
  }

  .btn-about {
    font-size: 1rem;
    padding: 10px 22px;
  }

  .about-left img {
    max-width: 100%;
  }
}


.counting-div-wrapper{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.counting-div-wrapper>.counting-div{
  flex: 1; /* each div takes 50% */
  padding: 2rem;
  border-left: 1px solid #c3c7c6;
  text-align: center;
  /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
}
.counting-div-wrapper>.counting-div:nth-child(1){
  border: none;
}
.counting-caption{
  font-size: 20px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .two-div-container {
    flex-direction: column;
  }

  .two-div-container>div {
    width: 100%;
  }
}


.chairman-quote {
  background: #020e42ff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.quote-container {
  max-width: 800px;
  text-align: center;
  position: relative;
  /* font-family: 'Georgia', serif; */
  color: #ececec;
  
}


.quote-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.quote-author {
  font-size: 1rem;
  font-weight: 500;
  color: #98eeca;
}
.quote-author span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #90bfeb;
}
.business{
  background: #020e42ff;
  color: #fff;
}
.business h1{
  font-size: 50px;
}
.business-content-wrapper>div{
  padding: 20px;
  border-bottom: 1px solid #6d6d6d;
}
.business-content-wrapper>div:hover{
  background-color: #ffd28e;
  /* color: #fffdfa; */
}
.business-content-wrapper>div:hover h3,.business-content-wrapper>div:hover p{
    
    color: #000000;
}
.business-content-wrapper .business-div h3{
  color: #c73f3f;
}
.business-content-wrapper>.btn{
  padding: 40px 20px;
  font-size: 25px;
  color: floralwhite;
}


.business-img {
  position: relative; /* parent must be relative */
  display: inline-block;
}

.business-img .main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.business-img .overlay-img {
  position: absolute;
  bottom: 10px;   /* adjust spacing */
  right: 10px;    /* adjust spacing */
  width: 40%;     /* scale overlay image */
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}



.slider {
  position: relative;
}

.slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 0, 10, 0.5);
  z-index: 2;
  pointer-events: none;
}

/* Text overlay */
.slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  /* transform: translate(-50%, -50%) translateY(30px); */
  text-align: center;
  color: #fff;
  width: 100%;
  /* max-width: 800px; */
  padding: 20px;
  z-index: 3;
  

  opacity: 0;
  transform: translate(-50%, -50%) translateY(30px);
  transition: all 0.8s ease;
}

.slider-text.active {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.slider-text h1 {
  font-size: 30px;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  /* font-family: Roboto, sans-serif; */
  /* margin-bottom: 15px; */
}

/* .slider-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.slider-text .btn {
  padding: 10px 22px;
  background: #00bcd4;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
} */


.footer h5{
  font-size: 18px;
  color: #050752;
}
.footer li,.footer a{
  font-size: 16px;
  color: #363636;
  margin-bottom: 0.5rem;
}
/* .footer li{
  color: #363636 !important;
} */
.footer li i{
  background-color: #bbbbbb;
  padding: 10px;
  border-radius: 50%;
  color: #031f79;
}
.footer li i:hover{
  background-color: #031f79;
   color: #bbbbbb;
  /* transform: translate(rotateY(360deg)); */
}

.footer-social .social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 5px 8px;
  border-radius: 50%;
  background: #050752;
  text-align: center;
  line-height: 40px;
  transition: 0.3s;
  font-size: 17px;
  font-weight: 600;
color: #ffffff !important;
}
.footer-social .social-icon i{
    color: #ffffff !important;
}
.footer-social .social-icon:hover {
  background: #06467a;
}
.footer p>span{
  color: #050752;
  font-weight:500;
  cursor:pointer;
}
.footer p>span:hover{
  color: #009d6f;
}
.mega-list{
    padding-left: 0% !important;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 10px;
}

.mega-list li a {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    padding: 4px 0;
    transition: all 0.25s ease;
    position: relative;
}

/* Hover translate + color change */
.mega-list li:hover a {
    color: #007bff;
    /* professional blue */
    transform: translateX(8px);
}

/* Optional clean underline animation */
.mega-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #007bff;
    transition: width 0.25s ease;
}

.mega-list li:hover a::after {
    width: 100%;
}





/* Mobile adjustments */
@media (max-width: 767px) {
  .footer .footer-logo img {
    max-width: 140px;
  }
  .footer .footer-social {
    margin-top: 10px;
  }
}


/* ===============================
   ABOUT US DROPDOWN (Exclusive)
   with Smooth Animation
================================= */
.navbar .nav-item.dropdown {
  position: relative;
}

/* Dropdown container */
.navbar .nav-item.dropdown .dropdown-menu {
  border: none;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
  z-index: 1000;
  animation: none;
}

/* Show animation trigger */
.navbar .nav-item.dropdown:hover > .dropdown-menu,
.navbar .nav-item.dropdown .dropdown-menu.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  animation: dropdownFade 0.4s ease forwards;
}

/* Dropdown items */
.navbar .nav-item.dropdown .dropdown-item {
  font-size: 0.95rem;
  padding: 10px 15px;
  color: #333;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;

  text-transform: uppercase;
  
}





/* Item hover */
.navbar .nav-item.dropdown .dropdown-item:hover {
  background-color: #000764;
  color: #fff;
  transform: translateX(5px);
}

/* Divider styling */
.navbar .nav-item.dropdown hr.dropdown-divider {
  margin: 0.5rem 0;
  border-top: 1px solid #e0e0e0;
}

/* Small arrow */
.navbar .nav-item.dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 25px;
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

/* ===== Animations ===== */
@keyframes dropdownFade {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.page-banner-image {
    /* Replace 'path/to/your-image.jpg' with a high-quality, relevant background image */
    
    
    background-size: cover; /* Ensures the image covers the entire banner */
    background-position: center center; /* Centers the image */
    background-attachment: scroll; /* Keeps image static or scrolls with content */
    
    min-height: 580px; /* Slightly taller for image impact */
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1); 

    
}

.banner-content {
    color: #FFFFFF;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    text-align: center;
    text-transform: uppercase;
}

.banner-content h1 {
    font-size: 2.8em; /* A bit larger for image backgrounds */
    margin: 0;
    font-weight: 500; /* Bolder text for clarity over image */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Adds depth to text */
}
.banner-content ul{
  list-style: none;
  
}
.banner-content ul a,.banner-content p{
  color: #d4f5ff;
  text-decoration: none;
}


/* ---------------------------------------------------- */
/* 6. Page Banners & Hero Sections */
/* ---------------------------------------------------- */
.page-banner-image {
    height: 60vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-light);
    /* margin-top: 60px; */
    position: relative;
    /* Needed for particles-js container */
}

.page-banner-image h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    color: #030d32;
}

.page-banner-image p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.page-banner-image ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.page-banner-image ul a {
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.page-banner-image ul a:hover {
    border-color: var(--color-accent);
}


/* --- KEYFRAMES FOR ANIMATION --- */
@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- BASE SECTION STYLING --- */
.contact-section-v3 {
  /* background: url('assets/images/banner/contact/contact-bg-map.png'); */
    /* background-color: #f8f9fa; Light grey background for the whole section */
    padding: 80px 0; /* More padding for bigger impact */
    overflow: hidden; 

    background-image: url(https://demo.rstheme.com/wordpress/solutio/wp-content/uploads/2024/01/contact-bg-map.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}


/* --- HEADER TEXT STYLING --- */
.contact-header {
  max-width: 1000px;
    text-align: center;
    margin: 50px auto;
}



.contact-header p {
  color: #606060;
    /* color: #555;
    font-size: 1.15rem;
    max-width: 750px;
    margin: 10px auto 15px;  */
}

.contact-header .cta-line {
    font-size: 1.25rem;
    font-weight: 400;
    color: #00001B;
}

/* --- GRID LAYOUT (Form and Details) --- */
.contact-content-grid {
    display: grid;
    /* On desktop: Two columns, 60% for the form, 40% for the details */
    grid-template-columns: 1fr; /* Default to single column on mobile */
    gap: 40px;
}
@media (min-width: 992px) {
    /* Set the column ratio for desktop */
    .contact-content-grid {
        grid-template-columns: 3fr 2fr; 
    }
}

/* --- CONTACT DETAILS BOX (The Eye-Catcher) --- */
.contact-details-box {
    background-color: #e7ebff; /* **High Contrast Background** */
    color: rgb(0, 0, 0);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(37, 37, 37, 0.2); /* Lifted Shadow */

    text-align: center;
}

.contact-details-box h5 {
    font-size: 1.5rem;
    color: #050d3b; /* Branded color accent */
    /* margin-bottom: 30px; */
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    /* padding-bottom: 10px; */
    font-weight: 400;
}

.contact-details-box ul li {
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Optional: Add a subtle animated underline on hover */
    transition: color 0.3s ease;
    cursor: default;
}



.contact-details-box ul li strong {
    font-weight: 500;
    margin-right: 5px;
}
.contact-details-box .social-links i{
  font-size: 20px;
  margin-right: 15px;
}

/* --- FORM STYLING (Same as before, but cleaner) --- */
.contact-form-col {
    padding-top: 20px; /* Slight padding to align with the box */
}
.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 18px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #007bff; 
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.1);
}

/* --- BUTTON HOVER AND ANIMATION (Refined) --- */
.contact-form .btn-primary {
    background-color: #032141; 
    border-color: #032141;
    padding: 15px 20px; /* Bigger button */
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.3s ease, background-color 0.3s ease; 
    position: relative; /* For the subtle push effect */
    text-transform: uppercase;
}

.contact-form .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px); /* Lifts button more dramatically */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* --- ANIMATION STAGGERED --- */
.contact-header > *,
.contact-content-grid > div {
    opacity: 0;
    animation: fadeInSlideUp 0.7s ease-out forwards;
}

.contact-header .section-title { animation-delay: 0.1s; }
.contact-header p:nth-of-type(1) { animation-delay: 0.2s; }
.contact-header .cta-line { animation-delay: 0.3s; }
.contact-form-col { animation-delay: 0.4s; }
.contact-details-box { animation-delay: 0.5s; }




@media (max-width: 991px) {
    .navbar .nav-item.dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .navbar .nav-item.dropdown .dropdown-menu.show {
        display: block;
    }
}

/* Mobile: make dropdowns flow inside collapsed nav */
@media (max-width: 991px) {
    .navbar .nav-item.dropdown .dropdown-menu {
        position: static !important;
        /* flow inside collapsed menu */
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        /* hidden by default, shown with .show */
        margin: 0.35rem 0 0;
        /* slight spacing */
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
    }

    .navbar .nav-item.dropdown .dropdown-menu.show {
        display: block;
    }

    /* dropdown items styling inside mobile menu (adjust to taste) */
    .navbar .nav-item.dropdown .dropdown-item {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        background: #fff;
    }
}


/* === Fix unwanted horizontal scroll === */
.slider-section .swiper {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slider-section .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #444;  */
    background: #ECECEC;
        
    display: flex;
    justify-content: center;
    align-items: center;
}



.slider-section .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 9s ease-in-out forwards;
    opacity: 0.85;
}


@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.10);
    }
}



/* Parent pagination container */
.slider-section .swiper-pagination {
    position: absolute !important;
    top: 50% !important;
    right: 30px !important;
    transform: translateY(-50%);
    display: flex !important;
    flex-direction: column !important;
    gap: 0px;
    z-index: 10;
}

/* Bullet wrapper */
.slider-section .swiper-pagination-bullet {
    background: none !important;
    width: auto !important;
    height: auto !important;
    position: relative;
    cursor: pointer;
}

/* Thumbnail circle */
.slider-section .swiper-pagination-bullet .thumb {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #fff;
    display: block;
    opacity: 0.8;
    transition: all .3s ease;

}


/* Active state */
.slider-section .swiper-pagination-bullet-active .thumb{
    opacity: 1;
    transform: scale(1.08);
    /* border: 2px solid #fff; */
    /* border-color: #00a8ff; */
}

/* Tooltip */
.slider-section .swiper-pagination-bullet .tooltip {
    position: absolute;
    top: 50%;
    right: 75px;
    transform: translateY(-50%) translateX(15px);
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all .35s ease;
    z-index: 99;
}

/* Tooltip arrow */
.slider-section .swiper-pagination-bullet .tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.78);
}

/* Hover animation */
.slider-section .swiper-pagination-bullet:hover .tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0px);
}





.hero-slider,
.slider-section .swiper-slide {
    width: 100%;
    height: 100vh;
    position: relative;
}


.slider-section .slide-content {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    color: #fff;
    text-align: left;
}

.slider-section .slide-content h1 {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.slider-section .slide-content p {
    font-size: 20px;
    /* opacity: .9; */
}





/* .reveal-text {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.3;
    opacity: 1;
}

.word {
    display: inline-block;
    white-space: nowrap; 
    margin-right: 8px;   
}

.reveal-letter {
    opacity: 0;
    display: inline-block;
    transform: translateX(-10px);
    animation: letterFade 0.05s forwards ease-out;
}

@keyframes letterFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
} */


.word {
    display: inline-block;
    white-space: nowrap;
    margin-right: 8px;
}

.reveal-letter {
    opacity: 0;
    display: inline-block;
    transform: translateX(-10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.reveal-letter.show {
    opacity: 1;
    transform: translateX(0);
}





.about-tabs{
  display: flex;
  gap: 10px;
  border-bottom: none;
}

/* ------ TABS ------ */
.about-tabs .nav-link {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 12px 28px;
    border-radius: 6px;
    margin-right: 10px;
    font-weight: 600;
    color: #444;
}

.about-tabs .nav-link.active {
    background: #0d1b2a;
    color: #fff;
}

/* ------ FEATURES ------ */
.about-feature {
    font-weight: 400;
    margin: 15px 0;
    color: #606060;
    font-size: 15px;
}

.about-feature span {
    color: #8d7907;
    margin-right: 5px;
}

/* ------ BUTTON ------ */
.about-btn {
    display: inline-block;
    background: #07548d;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
}

.about-btn:hover {
    background: #ffffff;
    border: 1px solid #000;
    color: #000 !important;
}

/* ------ IMAGES ------ */
.about-images {
  padding: 0px 0px 0px 50px;
    position: relative;
}

.about-img-main {
    width: 370px;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.about-img-side {
    width: 300px;
    height: auto;
    border-radius: 12px;
    position: absolute;
    right: 0;
    top: 32%;
    z-index: 2;
}






/* --- SECTION LAYOUT --- */
/* --- SECTION LAYOUT --- */

.luxe-container {
    /* width: 90%; */
    /* max-width: 1300px; */
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- LEFT CONTENT --- */


.luxe-text {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

/* --- STATS GRID --- */
.luxe-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
    gap: 20px;
}

.stat-box {
    background: #fff;
    padding: 20px;
    border: 1px solid saddlebrown;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 28px;
    color: #07548d;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-box p {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* --- RIGHT IMAGE AREA --- */
.luxe-right .luxe-image {
  background-color: #eaf6ff;
    width: 420px;
    height: 520px;
    border-radius: 14px;
    padding: 10px;
    border: 1px solid #ffffff;
    /* background: url('assets/images/banner/img/3.jpeg') center/cover no-repeat; */
    box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}
.luxe-right .luxe-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

/* --- RESPONSIVE --- */
@media(max-width: 1000px) {
    .luxe-container,.sustainability-section .content-wrapper {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .luxe-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .luxe-right .luxe-image {
        margin-top: 30px;
        width: 100%;
        height: 400px;
    }

    .sustainability-section .image-grid{
      width: 100%;
      align-items: center;
    }
    .sustainability-section .image-grid .img-box{
      height: 194px;
    }
    .sustainability-section .text-content{
      width: 100%;
    }

    
    .service-section .service-content{
      gap: 50px;
      flex-direction: column;
      padding: 0px;
    }
    .service-section .service-content .service-list,
    .service-section .service-content .service-text{
      width: 100%;
      align-items: center;
      text-align: center;
    }

    .about-area .about-images{
      padding: 0px;
    }
    
    .contact-boxes .contact-card{
      width: 220px;
    }

}

@media (max-width: 500px) {
    .contact-boxes .contact-card {
        width: 148px;
    }
    .contact-boxes .contact-card .social-links{
      gap: 2px;
    }
}

/* --- FADE SCROLL EFFECT (Global) --- */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
}

.fade-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}



.sustainability-section {
    padding: 100px 0;
}

.content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

/* LEFT IMAGE GRID */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* grid-template-rows: repeat(4,400px); */
    gap: 0px;
    width: 50%;
}

.img-box {
    width: 100%;
    height: 350px;
    overflow: hidden;
    /* border-radius: 6px; */
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
}
.img-box img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 4px; */
}

/* RIGHT SIDE TEXT */
.text-content {
    width: 50%;
    position: relative;
}

/* Background faded title */
/* .bg-title {
    font-size: 110px;
    font-weight: 800;
    color: #e8e8e8;
    position: absolute;
    top: -40px;
    left: 0;
    z-index: -1;
    line-height: 0.9;
    pointer-events: none;
} */

/* Small main heading */
/* .small-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 20px;
} */

/* Paragraph */


/* Button */
.know-btn {
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #07548d;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: .3s ease;
}

.know-btn:hover {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000;
}

.know-btn span {
    font-size: 20px;
    display: inline-block;
    transition: .3s;
}

.know-btn:hover span {
    transform: translateX(5px);
}



/* ------ TEXT STYLE ------ */
.about-subtitle {
    color: #8d7907;
    /* font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px; */


    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* color: var(--e-global-color-primary); */
    margin: 0px;
    padding: 0px;
    line-height: 25px;
    font-weight: 600;
}



.about-title,.luxe-title {
    /* font-size: 35px;
    font-weight: 800;
    text-transform: capitalize; */
    /* color: #0d1b2a; */
    /* margin-bottom: 30px;
    line-height: 1.2; */


    /* font-family: "Fira Sans", Sans-serif; */
    /* font-size: 40px;
    line-height: 55px;
    font-weight: 600;
    margin: 18px 20px 15px 0px !important;
    perspective: 400px; */
}

/* .luxe-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
} */


.about-text {
    /* color: #606060;
    line-height: 1.7;
    margin-top: 3rem !important;
    margin-bottom: 20px;

    margin: 20px 0px 0px; */
}


/* global design */

.title-inner .sub-text{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #070a8d;
    line-height: 25px;
}
.title-inner .title{
    color: #091D2D;
    font-size: 50px;
    line-height: 55px;
    font-weight: 600;
    margin: 18px 0px 0px 0px !important;
    padding: 0px 0px 15px 0px !important;
}
.title-inner p{
  /* margin-top: 30px; */
  font-size: 16px;
  line-height: 1.7;
  color: #333;

}


.gradient-curve-section {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
    overflow: hidden;
}

/* curved gradient fade */
.gradient-curve-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    top: -60px;
    width: 60%;
    height: 170px;

    /* curve shape */
    border-bottom-left-radius: 200px 100px;

    /* gradient fade mixing with white */
    background: linear-gradient(
        to top left,
        #f5f5f5 0%,
        #ffffff 80%
    );
}


/* curve 1 */
.section-with-curve {
    position: relative;
    /* background: #f5f5f5; */
    background: linear-gradient(to top, #f5f5f5 0%, #ffffff 100%);
    padding: 100px 0;
    clip-path: ellipse(80% 60% at 50% 100%);
}


/* curve 2 */
.curve-section {
    position: relative;
    /* background: #f5f5f5; */
    background: linear-gradient(to top, #f5f5f5 0%, #ffffff 100%);
    padding-bottom: 130px;
}

.bottom-wave {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}


/* curve 3 */
.section-curve {
    position: relative;
    background: linear-gradient(to top, #f5f5f5 0%, #ffffff 100%);
    padding: 120px 0;
    overflow: hidden;
}

.section-curve::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    /* background: #ffffff; */
    background: linear-gradient(
        to top left,
        #f5f5f5 0%,
        #ffffff 80%
    );
    border-radius: 50% 50% 0 0;
}






.about-area .title-inner .title{
  font-size: 35px;
}

.contact-card{
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 285px;
  padding: 50px 20px;
  background-color: #fffff9;
  border-radius: 0px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: border-bottom 0.3s ease-in-out;
}


/* Bottom border animation line */
.contact-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #070a8d;      /* change color as needed */
    transition: width 0.35s ease-in-out;
}

/* On hover: line grows left → right */
.contact-card:hover::after {
    width: 100%;
    
}
/* Individual heights */
/* .contact-boxes .contact-card:nth-child(3) {
    width: 350px;
} */

.contact-card:hover {
  cursor: pointer;
}
.contact-card .contact-icon {
  background-color: #050752;
  border-radius: 50%;
  padding: 25px;
}
.contact-card .contact-icon svg path {
    fill: #FFFFFF !important;
}
.contact-card .contact-icon:hover{
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0); /* Starting and ending position */
  }
  50% {
    transform: translateY(-10px); /* Highest point of the bounce */
  }
}

.contact-text .label{
      /* font-family: "Roboto", Sans-serif; */
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin: 26px 0px 10px 0px;
}
.contact-text a{
  font-size: 20px;
  color: #2d2509;
  font-weight: 600;
  text-align: center;
}
.contact-card .social-links{
  display: flex;
  gap: 15px;
  justify-content: center;
}
.contact-card .social-links a{
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #ffffff; */
  width: 40px;
  height: 40px;
  /* padding: 10px; */
  border: 1px solid #8f8f8f;
  border-radius: 50%;

  color: #292002;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.contact-card .social-links a:hover{
  color: #ffffff;
  background-color: #07548d;
}

.contact-header p{
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}




.service-content{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  padding: 100px;
}
.service-list{
  
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 25px;
  /* padding: 10px;
  background-color: #ffc525;
  margin-right: 10px;
  border-radius: 50%; */

}
.service-card{
  width: 70%;
  position: relative;

  border-bottom: 1px solid saddlebrown;
  padding: 10px 20px;
  background-color: #e2f5ff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: all 0.3s ease-in-out;
}

/* Bottom border animation line */
.service-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: saddlebrown;      /* change color as needed */
    transition: width 0.35s ease-in-out;
}

/* On hover: line grows left → right */
.service-card:hover::after {
    width: 100%;
}


.service-card i{
  margin-right: 10px;
}
.service-card span{
  font-size: 16px;
  font-weight: 500;
}
.service-card:hover{
  background-color: #92cdfa;
  color: #000;
  cursor: grab;
}

.service-image{
width: 15%;
}
.service-image-wrapper{
  width: 300px;
  height: 400px;
}
.service-image-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-text{
width: 55%;
/* margin-right: 30px; */
}

.service-list span:hover{
  /* color: #b5c901;
  cursor:grabbing; */
}

/* Button */
.service-btn {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: all .3s ease;

     background: #ffffff;
    color: #000000;
    border: 1px solid #000;
}

.service-btn:hover {
    background: #07548d;
    color: #f8f8f8;
    border: 1px solid #bea224;
}

.service-btn span {
    font-size: 20px;
    display: inline-block;
    transition: .3s;
}

.service-btn:hover span {
    transform: translateX(5px);
}




/* --- FIXED SIZE CARD --- */
.product-swiper-unique .product-card {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;

    width: 299px;     /* CHANGE WIDTH HERE */
    height: 400px;    /* CHANGE HEIGHT HERE */

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Image fills entire box */
.product-swiper-unique .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.product-swiper-unique .product-card:hover img {
    transform: scale(1.08);
}


/* --- PRODUCT NAME OVERLAY (Smooth Improved) --- */
.product-swiper-unique .product-name {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    padding: 12px 5px;
    text-align: center;
    font-size: 17px;
    font-weight: 600;

    background: #021229;
    color: #ececec;
    /* backdrop-filter: blur(6px); */
    border-top: 1px solid #443400;

    opacity: 1;
    transform: translateY(40px);
    transition: all 0.35s ease;
}

.product-swiper-unique .product-card:hover .product-name {
    bottom: 20px;
    opacity: 1;
    transform: translateY(0);
}


/* --- CUSTOM ARROWS --- */
.product-next, .product-prev {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 20;
    background: #fff;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.product-prev { left: -50px; }
.product-next { right: -50px; }

.product-next i, .product-prev i {
    font-size: 20px;
    color: #000;
}

.product-next:hover, .product-prev:hover {
    background: #000;
}

.product-next:hover i, .product-prev:hover i {
    color: #fff;
}





a{
  text-decoration: none;
}
li{
  list-style: none;
}


@media (max-width: 992px) {
    #mainNavbar {
        text-align: center;
        padding-bottom: 36px;
        /* background-color: #070033; */
    }
    .main-nav{
      padding: 0%;
    }
    .slider-section .swiper-pagination{
      top: 34% !important;
    }
    .navbar.sticky #mainNavbar {
        /* background-color: #b9c6ff; */
    }

    .navbar .social-icons a i {
        color: #fff;
        font-size: 25px;
    }

    .navbar .social-icons a i {
        color: #fff;
    }

    .navbar .nav-item.dropdown .dropdown-menu.show {
        display: flex;
        /* background-color: transparent; */
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-item.dropdown .dropdown-item {
        background: none;
        /* color: #fff; */
    }
    
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link.show{
        color: #0a0327;
    }
    .navbar .nav-item.dropdown .dropdown-menu::before{
        display: none !important; 
    }


}


.square-list {
  list-style-type: circle !important;
  /* square bullets */
  padding-left: 20px;
  /* ensures bullets are visible */
  margin: 0;
  /* optional: reset default margin */
}


/* Section Background */
.md-section {
  background: #f8f9fa;
}

/* Blob Image Shape */
.blob-img img {
  width: 100%;
  height: 100%;
  border-radius: 60% 40% 65% 35% / 50% 60% 40% 50%;
    /* border-radius: 7% 49% 54% 82% / 50% 60% 40% 115%;; */
  object-fit: cover;
}

/* LinkedIn Icon */
.linkedin-btn {
  background: #0A66C2;
  color: #fff;
  font-size: 24px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.3s;
}

.linkedin-btn:hover {
  background: #004a98;
  color: #fff;
}

/* Message Box */
.md-box {
  background: #0D1B2A;
  color: #fff;
  border-radius: 12px;
  line-height: 1.7;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.md-box p{
  font-weight: 300;
}

.md-box h3 {
  font-weight: 500;
}

/* Responsive */
@media (max-width: 767px) {
  .blob-img {
    margin-bottom: 20px;
  }
}


.certificates img{
    max-width: 120px;
    height: auto;
}


/* list design */
  .check-list li {
      margin-bottom: 10px;
  }

  .check-list li i {
      color: #11065a;
      margin-right: 8px;
  }

  .map-box iframe{
        /* background: #fff; */
        /* border-radius: 12px; */
        /* padding: 5px; */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        /* soft professional shadow */
        /* margin-bottom: 40px; */
  }

  .content h6{
    margin-top: 10px;
    color: #11065a;
  }




/* === Slider Container === */
.slider-section .swiper {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  /* Fix horizontal overflow */
}

.slider-section .swiper-wrapper {
  overflow: hidden;
  /* Prevent slides from exceeding width */
}

.slider-section .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  /* background: #444;background: #ECECEC; */
    /* background: #F0F0F0; */
background: linear-gradient(-45deg, #818181, #686868, #555555, #535353);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;


  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.4);
    /* blur and darken */
    transition: background-image 0.5s ease-in-out;
    z-index: 0;
}
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.slider-section .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 9s ease-in-out forwards;
  opacity: 0.85;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.10);
  }
}

/* === Pagination === */
.slider-section .swiper-pagination {
  position: absolute !important;
  top: 50% !important;
  right: 30px !important;
  transform: translateY(-50%);
  display: flex !important;
  flex-direction: column !important;
  gap: 0px;
  z-index: 10;
}

.slider-section .swiper-pagination-bullet {
  background: none !important;
  width: auto !important;
  height: auto !important;
  position: relative;
  cursor: pointer;
}

.slider-section .swiper-pagination-bullet .thumb {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid #fff;
  display: block;
  opacity: 0.8;
  transition: all .3s ease;
}

.slider-section .swiper-pagination-bullet-active .thumb {
  opacity: 1;
  transform: scale(1.08);
}

.slider-section .swiper-pagination-bullet .tooltip {
  position: absolute;
  top: 50%;
  right: 75px;
  transform: translateY(-50%) translateX(15px);
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all .35s ease;
  z-index: 99;
}

.slider-section .swiper-pagination-bullet .tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.78);
}

.slider-section .swiper-pagination-bullet:hover .tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0px);
}

/* === Slide Content === */
.hero-slider,
.slider-section .swiper-slide {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  /* position: relative; */
}

.slider-section .slide-content {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  color: #fff;
  text-align: left;
}

.slider-section .slide-content h1 {
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.slider-section .slide-content p {
  font-size: 20px;
}

/* === Responsive Fixes === */
@media (max-width: 1024px) {
  .slider-section .slide-content {
    left: 10%;
  }
        .slider-section .swiper-pagination {
          top: 39% !important;
          right: 10px !important;
        }
}

@media (max-width: 768px) {
  .slider-section .slide-content {
    left: 5%;
    right: 5%;
  }

  .slider-section .slide-content h1 {
    font-size: 36px;
  }

  .slider-section .slide-content p {
    font-size: 16px;
  }

  .slider-section .swiper-pagination {
    top: 35% !important;
    right: 10px !important;
  }

  .slider-section .swiper-pagination-bullet .tooltip {
    display: none;
    /* Hide tooltips on small screens */
  }
}

/* Prevent horizontal scroll globally */
body,
html {
  overflow-x: hidden;
}




/* For Mobile */

@media (max-width: 992px){
  .main-nav.sticky{
    padding: 10px;
  }
  .slider-section .swiper-pagination{
    bottom: 0%;
  }
  .about-area .title-inner .title{
      font-size: 20px;
  }
  .title-inner .title{
    line-height: 38px;
  }
  
}

/* === About Section Responsive === */
@media (max-width: 991px) {
  .about-area {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .about-area .row.align-items-center {
    flex-direction: column-reverse;
  }

  .about-area .title-inner {
    text-align: center;
    margin-top: 2rem;
  }

  .about-area .title-inner .title {
    font-size: 28px;
  }

  .about-tabs {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .about-tabs .nav-link {
    flex: 1 1 auto;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    margin-right: 0;
  }

  .tab-content {
    text-align: center;
  }

  .about-feature {
    font-size: 14px;
  }

  .about-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* Images */
  .about-images {
    padding-left: 0;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
  }

  .about-img-main {
    width: 70%;
    max-width: 350px;
    height: auto;
    margin-bottom: 1rem;
  }

  .about-img-side {
    width: 50%;
    max-width: 250px;
    height: auto;
    position: absolute;
    right: 10%;
    top: 30%;
    z-index: 2;
  }
}

@media (max-width: 576px) {
  .about-area .title-inner .title {
    font-size: 22px;
  }

  .about-tabs .nav-link {
    font-size: 12px;
    padding: 8px 12px;
  }

  .about-feature {
    font-size: 13px;
  }

  .about-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .about-img-main {
    width: 80%;
  }

  .about-img-side {
    width: 55%;
    right: 5%;
    top: 25%;
  }
}



.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.product-grid img {
    width: 350px;
    height: 500px;
    object-fit: cover;
    /* border-radius: 0px; */
    /* border: 1px solid #ddd; */
}