
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playwrite+ES+Deco+Guides&family=Poppins: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');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   overflow-x: hidden;
}

/*navbar start*/
/* General Styles */
.header_section {
  width: 100%;
  background-color: #f9f9f9;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container-navbar {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 15px 50px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 120px;
}

.navbar-list {
  flex: 2;
  text-align: center;
}

.navbar-show {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 0;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: #001f53;
  font-size: 25px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: grey;
}

.navbar-phone {
  color: grey;
  font-size: 25px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
}
.navbar-phone span{
  margin-left:50px;
  color:grey;
  font-weight:600;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger img {
  width: 35px;
  height: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .navbar-list {
    display: none;
    width: 100%;
    background-color: #f9f9f9;
    text-align: center;
    padding: 20px 0;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .navbar-list.active {
    display: block;
  }

  .navbar-show {
    flex-direction: column;
    gap: 20px;
  }

  .hamburger {
    display: block;
  }

  .navbar-phone {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .logo img {
    height: 90px;
  }
}

@media (max-width: 450px) {
  .container-navbar {
    width: 100%;
    max-width: 120%;
    padding: 15px 20px;
  }

  .navbar-show {
    flex-direction: column;
    gap: 20px;
  }

  .logo img {
    height: 70px;
  }

  .navbar-phone {
    font-size: 18px;
    padding: 5px 10px;
  }
}


/*banner*/
.hero_slider_section {
  position: relative;
  width: 100%;
  float: left;
  background-image: url(../images/picture1.jpg);
  height: 700px; /* updated from 70% */
  padding-bottom: 0; /* remove bottom space since it's very short now */
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  margin-top: 220px;
}

.hero_slider_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero_slider_section > * {
  position: relative;
  z-index: 2;
}

#hero_slider {
  position: relative;
}

.hero_title {
  width: 100%;
  float: left;
  font-size: 65px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 120px;
}

.hero_description {
  width: 50%;
  margin: 0 auto;
  font-size: 26px;
  color: white;
  text-align: center;
}

.hero_button_wrap {
  width: auto;
  margin: 30px auto 0;
  text-align: center;
}

.hero_button {
  display: inline-block;
  width: 90px;
  height: 90px;
  background-color: #001f53;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 50px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.hero_button:hover {
  color: black;
  background-color: white;
}

/* Carousel Arrows */
#hero_slider .carousel-control-prev,
#hero_slider .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: #000;
  opacity: 1;
  font-size: 30px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  z-index: 10;
}

#hero_slider .carousel-control-prev {
  left: 1100px;
}

#hero_slider .carousel-control-next {
  right: 1200px !important; /* move 200px left from default position */
}

#hero_slider .carousel-control-prev:hover,
#hero_slider .carousel-control-next:hover {
  background-color: #001f53;
}

@media (max-width: 1200px) {
  .hero_title {
    font-size: 50px;
    margin-bottom: 100px;
  }

  .hero_description {
    width: 70%;
    font-size: 22px;
  }

  #hero_slider .carousel-control-prev {
    left: 1100px;
  }

  #hero_slider .carousel-control-next {
    right: 200px !important;
  }
}

@media (max-width: 768px) {
  .hero_slider_section {
    height: auto;
    padding: 60px 20px;
    margin-top: 150px;
    background-size: cover;
  }

  .hero_title {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .hero_description {
    width: 90%;
    font-size: 18px;
  }

  .hero_button {
    width: 70px;
    height: 70px;
    font-size: 36px;
    line-height: 70px;
  }

  #hero_slider .carousel-control-prev,
  #hero_slider .carousel-control-next {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
      top: calc(80% + 30px);
  }

  #hero_slider .carousel-control-prev {
    left: 240px;
  }

  #hero_slider .carousel-control-next {
    right: 10px !important;
  }
}

@media (max-width: 480px) {
  .hero_title {
    font-size: 28px;
  }

  .hero_description {
    font-size: 16px;
  }

  .hero_button {
    width: 60px;
    height: 60px;
    font-size: 28px;
    line-height: 60px;
  }
}


/*End banner*/


/* Services Section */
.services {
  padding: 300px 50px;
  background-color:#001f53;
}

.services-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.services-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color:white;
}

.services-subtitle {
  font-size: 22px;
  color: white;
  margin-bottom: 40px;
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* Individual Service Card */
.service-item {
  flex: 1 1 calc(25% - 30px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.2s ease;
  min-height: 450px;
}

.service-item:hover {
  transform: translateY(-5px);
}


.service-icon {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.service-name {
  font-size: 26px;
  margin-bottom: 10px;
  color: black;
  font-weight:bold;
}

.service-description {
  font-size: 25px;
  color: #555;
  margin-bottom: 15px;
}

.service-link a {
  display: inline-block;
  text-decoration: none;
  color: white;
  background-color:#001f53;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 20px;
}

.service-link a:hover {
  background-color: grey;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-item {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .service-item {
    flex: 1 1 100%;
  }

  .services-title {
    font-size: 28px;
  }

  .services-subtitle {
    font-size: 16px;
  }
}
/* End Services Section */

/*about start */
.about_section {
  padding: 60px 0;
}

.about_section .about_text {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #001f53;
}

.about_section .lorem_text {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
}

.about_section .btn-primary {
  background-color: #001f53;
  border: none;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
}

.about_section .image_1 img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

/* Ensure text left, image right on larger screens */
.about_section .row {
  display: flex;
  align-items: center;
}

/* On smaller screens, stack vertically */
@media (max-width: 767px) {
  .about_section .row {
    flex-direction: column;
    text-align: center;
  }
  .about_section .col-md-6 {
    margin-bottom: 20px;
  }
}

/*End about start */

/*objective*/
.Objective {
      width: 100%;
      padding: 400px 300px;
      text-align: center;
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/about-us.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      
    }

    .Objective-container {
      max-width: 900px;
      margin: 0 auto;
      margin-bottom:30px;
    }

    .Objective-header {
      font-size: 38px;
      color:#f0f0f0;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 50px; /* Moved 20px lower from the original 30px */
    }
    

    .Objective_text {
      font-size: 25px;
      line-height: 1.8;
      color: #f0f0f0;
      margin-bottom: 100px; /* Adds 40px space below the paragraph */
    }

    .Objective-btn {
      display: flex;
      justify-content: center;
      margin-top: 30px; /* Moved 30px down */
      margin-bottom: -50px;
    }

    .Objective-get_bt a {
      display: inline-block;
      background-color: #001f53;
      color: white;
      padding: 12px 30px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }

    .Objective-get_bt a:hover {
      background-color: grey;
    }

    @media (max-width: 1024px) {
  .Objective {
    padding: 300px 100px;
  }
}

@media (max-width: 768px) {
  .Objective {
    padding: 200px 50px;
  }

  .Objective-header {
    font-size: 28px;
  }

  .Objective_text {
    font-size: 20px;
    margin-bottom: 60px;
  }

  .Objective-get_bt a {
    padding: 10px 25px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .Objective {
    padding: 150px 20px;
  }

  .Objective-header {
    font-size: 22px;
  }

  .Objective_text {
    font-size: 18px;
  }

  .Objective-get_bt a {
    padding: 10px 20px;
    font-size: 14px;
  }
}


/*objective End*/


.clients_section {
            width: 100%;
            float: left;
            padding-top: 50px;
            padding-bottom: 90px;
        }
        .client_text {
            width: 100%;
            float: left;
            font-size: 36px;
            color: #001f53;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 20px;
        }
        .clients_section2 {
            width: 100%;
            float: left;
            padding-top: 20px;
        }
        .client_1 {
            width: 60%;
            float: left;
            border: 1px solid #000;
            padding: 17px 17px 0px 17px;
            margin-bottom: 30px;
        }
        .client_2 {
            width: 60%;
            float: right;
            border: 1px solid #000;
            padding: 17px 17px 0px 17px;
        }
        .image_7 {
            width: 100%;
            float: left;
        }
        .loksans_text {
            width: 100%;
            float: left;
            font-size: 20px;
            color: #001f53;
            text-transform: uppercase;
            font-weight: bold;
        }
        .dolor_ipsum_text {
            width: 100%;
            float: left;
            font-size: 22px;
            color: #191919;
            margin-left: 0px;
            margin-top: 0px;
        }
        .carousel-indicators {
            justify-content: left;
            margin-left: 0%;
            bottom: -50px;
        }
        .carousel-indicators li {
            width: 20px;
            height: 20px;
            background-color: #001f53;
            border-radius: 20px;
            margin: 0 5px;
        }
        .carousel-indicators .active {
            background-color: rgb(237, 226, 226);
        }
        .carousel-control-prev, 
        .carousel-control-next {
            position: absolute;
            bottom: -60px;
            top: auto;
            width: auto;
            color: #001f53;
        }
        .carousel-control-prev {
            left: 0;
        }
        .carousel-control-next {
            left: 50px;
        }
        .ipsum_text {
            text-align: center;
            margin-bottom: 30px;
             font-size: 25px;
        }

        .contact_section {
    position: relative;
    width: 100%;
    float: left;
    height: auto;
    padding-bottom: 90px;
    overflow: hidden;
    z-index: 1;
    color: white; /* optional if you want white text */
}

.contact_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/contact-us2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px);
    z-index: -2;
}

.contact_section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#001f53; /* dark blue overlay */
    z-index: -1;
}

.email-1{
  font-size:28px;
  color:grey;
}
.email-1 a{
  color:white;
}

@media (max-width: 768px) {
    .email-1 a{
        font-size:20px;
    }
}

@media (max-width: 768px) {
    .email-1 a{
        font-size:20px;
    }
}

.mail_sectin{
    width: 100%;
    float: left;
}
.contact_text{
    width: 100%;
    float: left;
    font-size: 36px;
    color: #ffffff;

}
.email-bt {
    color: #989696;
    width: 100%;
    height: 55px;
    font-size: 18px;
    padding: 20px;
    margin-top: 25px;
    border: 0px;
    border-radius: 5px;
}
input.email-bt::placeholder {
    color: #989696;
}
.massage-bt {
    color: #989696;
    width: 100%;
    height: 150px;
    font-size: 18px;
    padding: 50px 20px 10px 20px;
    margin-top: 25px;
    border: 0px;
    border-radius: 5px;
}
textarea#comment::placeholder {
    color: #989696;
}
.send_bt {
    width: 100%;
    float: left;
    margin-top: 50px;
}
.send_bt a{
    width: 30%;
    float: left;
    font-size: 20px;
    color:rgb(179, 173, 173);
    text-align: center;
    border: 2px solid #ffffff;
    padding: 10px 0px;
    font-weight: bold;
}
.send_bt a:hover{
    color: #989696;
    background-color: #ffffff;
}
.form-submit {
    background-color: black;
    color: grey;
    font-size: 22px;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: white;
}

.image_9 {
    float: left;
    padding-top: 83px;
}
.image_9 img{
    width:50%;
    height:50%;
    margin-top:-120px;
    margin-rigt:30px;
}
.input-group {
    width: 45%;
    float: right;
}
/* General Section Styles */
.section {
  margin-top: 110px;
  padding: 40px 20px;

}

.page-title {
  padding: 40px 20px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.page-title h1 {
  color:black;
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Expertise Section */
.expertise-section {
  margin-top: 150px;
}

.page-title h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  color: #001f53;
  text-transform: uppercase;
}

.expertise-desc {
  text-align: center;
  font-size: 26px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #444;
}

.expertise-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  padding: 0 20px;
   font-size: 300px;

}

.expertise-box {
  background-color: #001f53;
  color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  color:blue;
}
.expertise-box:hover .box-title {
  text-decoration: underline;
}
.box-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}

.box-text {
  font-size: 24px;
  line-height: 1.6;
  color: #f2f2f2;
}

/* Trusts Section */
.trusts-section {
  margin-top: 60px;
}

.trusts-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #001f53;
  text-transform: uppercase;
}

.trusts-desc {
  text-align: center;
  font-size: 26px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #444;
}

.trusts-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.trusts-card {
  background-color: #001f53;
  color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trusts-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.trusts-card:hover .card-title {
  text-decoration: underline;
}
.card-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}

.card-text {
  font-size: 25px;
  line-height: 1.6;
  color: #f2f2f2;
}


.map-container {
  display: flex;
  justify-content: center;
  margin-top: 300px;
}

.map-way iframe {
  max-width: 100%;
  height: 600px;
  border: 0;
}



/*footer*/
 .copyright_section {
    width: 100%;
    background-color: #f8f8f8; /* optional background color */
    padding: 20px 0;
    text-align: center;
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.copy-right-social_icon ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copy-right-social_icon img.linkedin-icon {
    width: 30px; /* adjust as needed */
    height: 30px; /* adjust as needed */
    transition: opacity 0.3s ease;
}

.copy-right-social_icon img.linkedin-icon:hover {
    opacity: 0.8;
}

.copyright_text {
    margin: 0;
    font-size: 25px;
    color: #666;
}

.creator_info {
    font-size: 20px;
    color: #666;
}
.cpoy-right p{
  font-size: 20px;
  font-weight:bold;
}
.social_icon img{
  width:60px;
    height:60px;
}

/* Optional responsive adjustments */
@media (max-width: 768px) {
    .copyright_text, .creator_info {
        font-size: 12px;
    }
}

/*footer end */


/*whatsapp*/
 .whatsapp_float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
        }
        .whatsapp-icon {
            margin-top: 16px;
        }

        /* for mobile */
        @media screen and (max-width: 767px){
            .whatsapp-icon {
                margin-top: 10px;
            }
            .whatsapp_float {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 10px;
                font-size: 22px;
            }
        }
/*Ends here whatsapp*/

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.contact-header {
  flex: 1;
  min-width: 300px;
}

.contact-left-side {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-left-image img {
  max-width: 100%;
  height: 200px;
  border-radius: 8px;
}

/* Optional styling for form inputs */

.contact-section-page {
  background-color: #00245a; /* Dark blue */
  color: white;
  padding: 40px 0;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  margin: auto;
  gap: 40px;
}

.contact-details {
  flex: 1;
}

.contact_text {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-details p {
  margin: 8px 0;
  font-size: 20px;
}

.contact-details a {
  color: #e0e0e0;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
}

.contact-form button {
  width: 100px;
  padding: 10px;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.contact-form button:hover {
  background-color: #333;
}

.contact-image img {
  max-width: 250px;
  border-radius: 6px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .contact-container {
    max-width: 90%;
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
  }
  
  .contact-details {
    width: 100%;
    text-align: center;
  }
  
  .contact_text {
    font-size: 22px;
  }
  
  .contact-details p {
    font-size: 18px;
  }
  
  .contact-image {
    order: -1; /* Move image above content on mobile */
    margin-bottom: 20px;
  }
  
  .contact-image img {
    max-width: 200px;
  }
}

@media screen and (max-width: 480px) {
  .contact-section-page {
    padding: 30px 0;
  }
  
  .contact-container {
    gap: 25px;
    padding: 0 15px;
  }
  
  .contact_text {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .contact-details p {
    font-size: 16px;
    margin: 6px 0;
  }
  
  .contact-form {
    gap: 10px;
    margin-top: 12px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 8px;
    font-size: 14px;
  }
  
  .contact-form button {
    width: 90px;
    padding: 8px;
    font-size: 14px;
  }
  
  .contact-image img {
    max-width: 150px;
  }
}

@media screen and (max-width: 320px) {
  .contact_text {
    font-size: 18px;
  }
  
  .contact-details p {
    font-size: 14px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 6px;
    font-size: 13px;
  }
  
  .contact-image img {
    max-width: 120px;
  }
}