*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif; 
}
html{
    scroll-behavior: smooth;
}
a{
    cursor: pointer;
    text-decoration: none;
    color: white;
}
li{
    list-style: none;
}
.target-class{
    scroll-margin:8vh;
}
body{
    background-color:white;
}

.side-icons{
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
.side-icons-2{
    font-size: 25px;
    padding: 5px;
    position: fixed;
    right: 0px;
    bottom: 10px;
    z-index: 1000;
    transition: all 0.5s;
}
.side-icons-3{
    position: fixed;
    right: 0px;
    bottom: 80px;
    z-index: 1000;
    transition: all 0.5s;
}
.side-icons-2:hover,.side-icons-3:hover{
    transform: translateX(-20%);
}
.side-icons-2 img{
    height: 100%;
    width:100%;
}

.side-icons-2 a{
    color: #ffff;
}
.side-icons img{
    margin-top: 5px;
    width: 60px;
    height: 60px;
}
.reveal{
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease;
}
.reveal.active{
    transform: translateY(0px);
    opacity: 1;
}
#Home{
    width:100%;
}

.nav-bar{
    background-color:  #151B54;
    width: 100%;
    height: 110px;
    position: fixed;
    overflow: hidden;
    /* box-shadow: 0 1px 20px #DCB932; */
}
.nav-items{
    display: flex;
    align-items: center;
    margin-right: 10px;
}

#side-menu{
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items:center;
}
.title-logo{
    display: flex;
    justify-content: calc();
    align-items: center;
    margin-left: 50px;
    width: 150px;
    height: 100px;
}
.title-logo ul img{
    width: 80%;
    height: 100%;
}
.nav-bar ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-bar ul li{
    padding: 25px;
    list-style: none;
}
.nav-bar ul li a{
    font-family: inherit;
    color: white;
    font-size: 23px;
    text-decoration: none;
}

.progress-fill{
    margin-top: 110px;
    position: fixed;
    height: 4px;
    z-index: 1001;
    width: 100%;
}
.progress-bar{
    background: linear-gradient(45deg, white, #151B54);
    width: 20px;
    height: 100%;
}
.dash-icon,.cross-icon{
    margin-right: 30px;
}
.dash-icon img{
    height: 35px;
    width: 35px;
}
.cross-icon img{
    height:35px;
    width: 35px;
}

.nav-items-respo,.dash-icon,.cross-icon{
    display: none;
}
.nav-items-respo .sidebar{
    position: relative;
}
.dash-icon,.cross-icon{
    /* margin-right: 30px; */
}
@media screen and (max-width:1000px){
    .dash-icon{
        justify-content: center;
        align-items: center;
    }
}

.nav-items-respo{
    margin-top: 114px;
    text-decoration: none;
    color: white;
    width: 100%;
    position: fixed;
    z-index: 1001;
   background-color:  #151B54;
}
.nav-items-respo .sidebar{
    padding: 15px;
    position: absolute;
    width: 100%;
   background-color:  #151B54;
}
.nav-items-respo .sidebar li{
    text-decoration: none;
    padding: 15px;
    list-style: none;
    text-decoration: none;
    color: white;
}
.nav-items-respo .sidebar li a{
    text-decoration: none;
    font-size: larger;
    font-weight: bold;
    color: rgb(167, 167, 89);
    z-index: 1000;
}
.home-section{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.seperator{
    z-index: 1500;
    display: flex;
    flex-direction: row;
    /* justify-content: center;
    align-items: center; */
    z-index: 1500;

}
/* .blink-button{
    /* z-index: 10000; */
    /* margin-right: 50px; */
}
.blink-button li button{
    padding: 10px;
    font-size: 20px;
    background-color: #DCB932;
    border: 3px solid #eee9e9;
    border-radius: 5px;
    animation-name: blinking;
    animation-duration: 1s;
    animation-timing-function:linear;
    animation-iteration-count: infinite;
}

.blink-button li button a{
    color: #fff;
} */


/* whatsapp css */


.Whatsapp{
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 600;
}

.WhatsappIcon a{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

#WAIcon{
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 600;
    color: white
    font-size: 50px;
    border-radius: 5px;
    padding: 5px;
}

#WAName{
    display: none;
}

.Whatsapp:hover #WAName{
    display: flex;
}


/* header done */
/* Hero with Local Background Image */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: url('/Images/Back.png') no-repeat center center/cover; */
  /* 🔼 replace hero-bg.jpg with your actual file name */
  color: #151B54;
  text-align: center;
  overflow: hidden;
  margin-top: 100px;
}

/* Dark Blue Overlay */
.overlay {
  position: absolute;
  top: 0; left: 0; 
  width: 100%; height: 100%;
  background: rgb(144, 87, 87); /* #151B54 overlay */
  z-index: 0;
}




/* Clean Hero Section */
.hero-clean {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  color: #151B54;
  gap: 0px;
  margin-top: 100px;
  background: url('/Images/Back.png')no-repeat center center/cover;
}

/* Image */
.hero-clean .hero-image {
  flex: 1;
}

.hero-clean .hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.hero-clean .hero-image img:hover {
  transform: scale(1.05);
}

/* Text */
.hero-clean .hero-text {
  flex: 1;
}

.hero-clean h1 {
  font-size: 40px;
  margin-bottom: 15px;
  font-weight: 800;
  font-style: italic;
}

.hero-clean .subtitle {
  font-size: 2rem;
  margin-bottom: 30px;
  opacity: 0.85;
}

/* Button */
.hero-clean .btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: #151B54;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-clean .btn:hover {
  background: #0f143f;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-clean {
    flex-direction: column;
    text-align: center;
  }

  .hero-clean .hero-image {
    margin-bottom: 30px;
  }

  .hero-clean h1 {
    font-size: 2.3rem;
  }

  .hero-clean .subtitle {
    font-size: 1rem;
  }
}


/* 

/* -----------------------Section About-------------------- */

.About{
   padding: 80px 20px;
   /* padding-bottom: 0px; */
}

.AboutContainer{
   display: flex;
   flex-direction: column;
   gap: 30px;
   align-items: center;
}

.AboutContainer1 {
   display: flex;
   flex-direction: row;
   justify-content: center;
   flex-wrap: wrap;
   width: 100%;
   gap: 30px;
}

.AboutContainer1Left {
   width: 45%;
   display: flex;
   align-items: center;
}

.AC1LWH1 h1{
   color:  #151B54;
   text-shadow: 0 0 1px  #151B54;
   font-size: 60px;
   margin-top: 0px;
}

.AC1LWContext p{
   font-size: 22px;
   color:  #151B54;
   text-shadow: 0 0 1px  #151B54;
}

.AboutContainer1LeftWrap {
   padding: 15px;
   color:  #151B54;
   text-shadow: 0 0 1px  #151B54;
   font-size: 23px;
}

.AboutContainer1Right {
   width: 50%;
}

.AC1RImg img{
   display: block;
   width: 90%;
   height: 400px;
   object-fit: cover;
   border-radius: 20px;
}

.AboutContainerPhoneWrap {
   display: flex;
   align-items: end;
   height: 100%;
}

.ACPWImg {
   position: relative;
}

#ACPWIMainPerson{
   position: absolute;
   z-index: 200;
   left: -140px;
   bottom: 0;
   height: 320px;
   width: auto;
}

#ACPWIMainImg{
   z-index: 100;
   position: relative;
   display: block;
}

.ListOfImagesInPhone {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   margin: 15px;
   z-index: 1;
   display: flex;
   flex-direction: row;
   overflow: hidden;
   position: absolute;
}

.LOIIPEach{
   width: 100%;
   height: 100%;
   flex-shrink: 0;
   transition: right 1s ease-in-out;
   position: absolute;
}

#servicepng{
   height: 50%;
   width: 50%;
}

@media (width<=769px) {
   .AboutContainer1LeftWrap{
       padding: 0%;
   }
   .AboutContainer1Left,
   .AboutContainer1Right{
       width: 100%;
   }
   .AC1RImg img{
       height: 200px;
   }
}





/* What We Do Section */
.what-we-do {
  padding: 80px 10%;
  background: #151B54;
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.section-header p {
  font-size: 1.4rem;
  color: white;
}

/* Each Item */
.do-item {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 70px;
  background-color: white;
  gap: 30px;
  padding: 30px;
  border-radius: 10px;
}

.do-item.reverse {
  flex-direction: row-reverse;
}

.do-text {
  flex: 1;
}

.do-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #151B54;
}

.do-text p {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #151B54;
}

.do-image {
  flex: 1;
}

.do-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

.do-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .do-item {
    flex-direction: column;
    text-align: center;
  }
  .do-item.reverse {
    flex-direction: column;
  }
  .do-image img {
    max-width: 90%;
  }
}




/* Scheme Section Styles */
.scheme-section {
  background: #f8f9fc;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
  color: #151B54;
}

.scheme-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr); /* Default for mobile */
}

.scheme-point {
  background-color: #151B54;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.scheme-point .number {
  font-size: 1.6rem;
  font-weight: bold;
  color: #151B54;
  background: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  display: inline-block;
  margin-bottom: 10px;
}

.scheme-point p {
  font-size: 1rem;
  color: white;
  margin: 0;
}

.scheme-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Animate on scroll */
.scheme-point.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Grid Layout */
@media (min-width: 768px) {
  .scheme-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .scheme-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}



/* General Section Styling */
.testimonial-section {
  padding: 60px 20px;
  background-color: #dfe0f1;
}

.testimonial-section.alt-bg {
  background-color: #ebedf9;
}

.testimonial-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-heading {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #151B54;
}

.testimonial-subheading {
  font-size: 1rem;
  color: #151B54;
  margin-bottom: 30px;
}

/* Swiper Container */
.swiper-container-wrapper {
  position: relative;
}

.swiper {
  padding: 10px 0;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Video Sizing */
.swiper-slide video {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-heading {
    font-size: 2rem;
  }

  .swiper-slide video {
    max-width: 100%;
    height: auto;
  }
}


.quote-section {
  background-color: white; /* nice blue */
  color: #151B54;
  padding: 50px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.quote-container {
  max-width: 700px;
  margin: 0 auto;
}

.quote-heading {
  font-size: 2.3rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quote-text {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 600px) {
  .quote-heading {
    font-size: 1.8rem;
  }

  .quote-text {
    font-size: 1rem;
  }
}







/* footer section */

footer{
    background-color: white;
}

.footerSectionConatiner{
    display: flex;
    flex-direction: row;
}

.footerSectionContainer1{
    width: 100%;
}

/*.footerSectionContainer2{*/
/*    width: 70%;*/
/*}*/

/*.footerSectionContainer2Main {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    height: 100%;*/
/*}*/

.footerSectionContainer1{
    color:  white;
}

.footerSectionContainer1Main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:  #151B54;

}

.footerSectionContainer1MainPart1 {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerSectionContainer1MainPart1 img {
    height: 250px;
}

.footerSectionContainer1MainPart2{
    padding: 20px 25px;
    padding-top: 0px;
    color:  white;
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
}

.FSC1MP2Address{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 25px 0px;
}

.FSC1MP2AddressH2 h2{
    margin: 0px;
}

.FSC1MP2AddressTitleIcon{
    padding: 0px 15px;
    padding-left: 0px;
}

.FSC1MP2AddressTitleText a{
    text-decoration: none;
    color:  white;
    text-shadow: 0 0 1px  white;
    font-family: 'Nunito Sans', sans-serif;
}

.FSC1MP2AddressTitle{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.FSC1MP2Phone{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 25px 0px;
    gap: 20px;
}

.FSC1MP2PhoneTitle{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.FSC1MP2PhoneIcon{
    padding: 0px 15px;
    padding-left: 0px;
}

.FSC1MP2PhoneNumber a{
    text-decoration: none;
    color:  white;
    text-shadow: 0 0 1px  white;
}

.FSC1MP2PhoneH2 h2{
    margin: 0px;
}

.FSC1MP2Email{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 25px 0px;
}

.FSC1MP2EmailIcon{
    padding: 0px 15px;
    padding-left: 0px;
}

.FSC1MP2EmailId{
    width: max-content;
}

.FSC1MP2EmailId a{
    text-decoration: underline;
    color:  white;
    text-shadow: 0 0 1px  white;
}

.FSC1MP2Metatags{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 35px 0px;
}

.FSC1MP2MT a{
    text-decoration: none;
    color:  white;
    text-shadow: 0 0 1px  white;
    margin: 0px 25px;
    font-size: 34px;
}

.footerSectionContainer2MainPart1 img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.footerSectionContainer2MainPart2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* height: 320px; */
    height: 100%;
}

.footerSectionContainer2MainPart2Container{
    display: flex;
    flex-direction: row;
    /* padding: 115px 0px; */
}

.footerSectionContainer2MainPart2Container1,.footerSectionContainer2MainPart2Container2{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.FSC2MP2C1ULLinks,.FSC2MP2C1NLLinks {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 25px;
    font-family: 'Nunito', sans-serif;
}

.FSC2MP2C1UL,.FSC2MP2C1NL{
    color:  white;
    text-shadow: 0 0 1px  white;
    font-size: 34px;
}

#FSC2MP2C1ULLinks a,#FSC2MP2C1NLLinks a{
    text-decoration: none;
    color:  white;
    text-shadow: 0 0 1px  white;
    font-size: 20px;
    width: 100%;
    display: flex;
    text-align: center;
}

.footercopyrights {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color:  white;
    text-shadow: 0 0 1px white;

}

.footercopyrights span a{
    text-decoration: underline;
    color:  white;
    text-shadow: 0 0 1px white;
}

.footerSectionContainer2Main {
    height: 100%;
}

.fa-solid{
    color:  white;
}

.fa-brands{
    color:  white;
}

iframe{
    width: 100%;
    height: 100%;
}

/* --------------------------------------------------footer-------------------------------------------------------------- */
@keyframes clouds {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@media (width<1024px) {
    .footerSectionConatiner{
        flex-wrap: wrap;
    }
    .footerSectionContainer1,.footerSectionContainer2{
        width: 100%;
    }
    iframe{
        height: 300px;
    }
    .footerSectionContainer1MainPart2{
        font-size: 16px;
    }
}

#line{
    height: 2px;
    width: 100%;
    background-color:#151B54;
    margin: 0px;
}

.copyrights{
    padding: 20px 0;
    color: #151B54;
    text-align: center;
    background:  white;
}

.copyrights span{
    font-size: 18px;
}

.copyrights a{
    color: rgb(0, 0, 0);
    font-weight: 700;
    text-shadow: 0 0 10px #ecf3f5;
    text-decoration: none;
}