@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}

body {
  background-color: #fff;
  color: #404040;
  font-family: 'Montserrat', sans-serif;
}


section,
footer {
  padding: 10rem 6rem 10rem 6rem;
  overflow-x: hidden;
}

footer {
  padding-bottom: 0 !important;
}

header {
  /* min-height: 100vh; */
  overflow: hidden;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #D9D9D9;
  padding: 3.3rem 6rem;
  position: relative;
  z-index: 10001;
  /* overflow-x: hidden; */
}

#menu-icon {
  display: none;
  color: #2D3588;
  z-index: 10001;
  cursor: pointer;
  font-size: 2.3rem;
}

a {
  text-decoration: none;
}

.logo {
  width: 15rem;
}

.nav-box {
  /* flex-basis: 75%; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-box ul {
  display: flex;
  align-items: center;
}

.nav-box ul li {
  list-style: none;
}

.nav-box ul li a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.2rem;
  color: #1C0C2A;
  transition: all .2s;
}

.home {
  background: var(--Gradient-Color, linear-gradient(94deg, #50579C 14.68%, rgba(110, 119, 212, 0.91) 49.82%, rgba(49, 60, 174, 0.70) 69.75%, rgba(24, 145, 218, 0.76) 96.18%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-box ul li a:hover {
  color: #2D3588;
}

.nav-box ul li:not(:last-child) {
  margin-right: 4rem;
}



.nav-btn a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.6rem;
  border-radius: 1.6rem;
  padding: 1.6rem 2.4rem;
  text-align: center;
  border-radius: 0.8rem;
  border: 3px solid #BDC3FF;
  background: var(--primary-color-base, #2D3588);
  color: #FFF;
}

.hero {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%), url(/img/hero-banner2.jpg), lightgray 50% / cover no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* .hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 6rem;
  gap: 8rem;
} */

.hero-textbox {
  width: 60%;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}


h1 {
  font-size: 5rem;
  font-style: normal;
  font-weight: 700;
  /* line-height: 9rem; */
  color: #fff;
  margin-bottom: 2rem;
}

.hero-p {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.6rem;
  color: #fff;
  width: 80%;
}

.hero-textbox a {
  border-radius: 0.8rem;
  border: 3px solid #BDC3FF;
  background: var(--primary-color-base, #2D3588);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.6rem;
  padding: 1rem 2rem;
  display: inline-block;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.checkmark {
  display: flex;
  align-items: center;
}

.checkmark p {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.7rem;
  color: #fff;
  margin-bottom: 2.5rem;
}

.checkmark p i {
  color: #008000;
  background: transparent;
}

.checkmark p:not(:last-child) {
  margin-right: 4rem;
}

/* ABOUT............ */
.about h2,
.service h2,
.testimonial h2 {
  color: #0F122D;
  font-size: 4.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 6.6rem;
  text-align: center;
}

.about-p,
.service-p,
.testimonial-p {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.6rem;
  color: #666;
  text-align: center;
}

.about-container,
.service-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 10rem;
}

.about-container img,
.service-container img {
  width: 45%;
}

.about-textbox,
.service-textbox {
  width: 50%;
}

.about-textbox h3,
.service-textbox h3 {
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4.8rem;
  color: #0F122D;
  margin-bottom: 1.2rem;
}

.service-textbox h3 {
  font-size: 3rem;
}

.about-box p,
.service-textbox p {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3rem;
}

.about-box:not(:last-child) {
  margin-bottom: 3rem;
}

.about-box p span,
.service-textbox p span {
  color: #0F122D;
  font-weight: 600;
}

.about-textbox a,
.service-textbox a {
  border-radius: 0.8rem;
  border: 3px solid #BDC3FF;
  background: var(--primary-color-base, #2D3588);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.6rem;
  display: inline-block;
}

.service {
  margin-top: -10rem;
}

.service-p {
  width: 40%;
  margin-right: auto;
  margin-left: auto;
}

.service-p span {
  color: #0F122D;
  font-weight: 600;
}


.service-container {
  align-items: center;
}

.service-textbox a {
  margin-top: 4rem;
}

.details {
  font-size: 1.5rem;
  font-style: italic;
}

/* SOLUTIONS............ */
.solution {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.solution-box {
  width: 48%;
}

.solution-box h3 {
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4.8rem;
  color: #1A1A1A;
  margin-bottom: 1.3rem;
}

.solution-box p {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.2rem;
}

.solution-box a {
  color: #2D3588;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.6rem;
  display: inline-block;
  border-radius: 0.8rem;
  border: 3px solid var(--primary-color-base, #2D3588);
  padding: 1rem 2rem;
  display: inline-block;
  margin-top: 4rem;
}

/* Gallery */
#gallery {
  /* padding: 10rem 4rem; */
  background: #0F122D;
  color: #fff;
}

.gallery-box img {
  height: 600px;
  width: 600px;
  margin-right: 30px;
}

.security-head {
  text-align: center;
  margin-bottom: 4rem;
}

.security-head h2 {
  color: #fff;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 6.6rem;
  text-align: center;
}

.security-head p {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3rem;
  color: #fff;
  text-align: center;
  width: 50%;
  margin-right: auto;
  margin-left: auto;
}

.security-container img {
  margin-right: 30px;
}

.carousel-navg {
  text-align: center;
  margin-top: 5rem;
}

.carousel-navg button {
  border-radius: 0.8rem;
  border: 1px solid var(--white-color-base, #FFF);
  background: rgba(246, 139, 30, 0.00);
  padding: 0.5rem 1rem;
}

.carousel-navg button i {
  color: #fff;
}

.carousel-navg button:not(:last-child) {
  margin-right: 2rem;
}

/* Testimonial............ */
#testimonial {
  background: #F9F9F9;
}

.testimonial-container {
  display: flex;
  justify-content: space-between;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  gap: 2rem;
}

.carousel-nav button {
  border-radius: 0.8rem;
  border: 1px solid var(--primary-color-base, #2D3588);
  background: rgba(246, 139, 30, 0.00);
  padding: 0.5rem 1rem;
}

.carousel-nav button i {
  color: #2D3588;
}

.prev {
  margin-right: 1rem;
}

/* .slick-prev {
  left: -40px !important;
}

.slick-prev,
.slick-next {
  width: 25px !important;
  height: 25px !important;
}

.slick-prev:before,
.slick-next:before {

  padding: 0.4rem !important;
  border-radius: 0.8rem;
  border: 1px solid var(--primary-color-base, #2D3588) !important;
  background: rgba(246, 139, 30, 0.00) !important;
  color: #2D3588 !important;
}



.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background-color: red;
} */

.testimonial-box {
  margin-top: 10rem;
  padding: 3rem;
  width: 10%;
  border-radius: 0.8rem;
  border: 1px solid var(--primary-color-10, #D5D7E7);
  background: #FFF;
  box-shadow: 0px 8px 24px 0px rgba(28, 156, 233, 0.08);
}

.testimonial-box:not(:last-child) {
  margin-right: 4rem;
}



.user h3 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.6rem;
  color: #0F122D;
}

.user p {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3rem;
  color: #666;
}

.profile {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.stars {
  margin: 4rem 0;
}

.stars i {
  font-size: 1.8rem;
  color: #F68B1E;
}

.review-text {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.2rem;
}



/* Testimonial............ */
.faq h2 {
  font-size: 4.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 6.6rem;
  color: #0F122D;
  text-align: center;
}


.faq-btn {
  text-align: center;
  margin-top: 10rem;

}

.faq-btn h4 {
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4.8rem;
  color: #0F122D;
  margin-bottom: 4rem;
}

.faq-btn a {
  border-radius: 0.8rem;
  border: 3px solid #BDC3FF;
  background: #2D3588;
  display: inline-block;
  padding: 1.9rem 5rem;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.6rem;
  color: #fff;
}

/* FAQ QUESYION */
.faq-heading {
  text-align: center;

}


.faq-heading p {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3rem;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
}

.faq-content {
  margin: 0 auto;
  margin-top: 8rem;
}

.faq-question {
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  padding: 2rem;
  border-radius: 1.6rem;
  border: 1px solid #525252;
  transition: all ease-in .2s;
  position: relative;
}

.faq-question:not(:last-child) {
  margin-bottom: 4rem;
}

.panel-title {
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.2rem;
  width: 90%;
  position: relative;
  margin: 0;
  /* padding: 10px 10px 8px 40px; */
  display: block;
  cursor: pointer;
  transition: all ease-in .2s;
}

.panel-content {
  font-size: 1.6rem;
  padding: 0px 1rem;
  /* margin: 0 20px; */
  height: 0;
  overflow: hidden;
  /* z-index: -1; */
  /* position: relative; */
  opacity: 0;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
  color: #1A1A1A;
  width: 100%;
  line-height: 34px;

}

.panel:checked~.panel-content {
  height: auto;
  opacity: 1;
  padding: 14px;
  padding-left: 0;
}

label {
  cursor: pointer;
}

.plus {
  position: absolute;
  /* margin-left: 6px; */
  margin-top: 0px;
  z-index: 5;
  font-size: 38px;
  line-height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
  cursor: pointer;
  right: 3rem;
  color: #2D3588;
}

.panel:checked~.plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.panel {
  display: none;
}

.faq-question:hover {
  background-color: #F9F9F9;
  border: 1px solid #525252;
}

.faq-question:hover .panel-title,
.faq-question:hover .panel-content,
.faq-question:hover .plus,
.faq-question:hover .get {
  color: black;
}

.faq-cta {
  text-align: center;
  margin-top: 7rem;
}

.faq-cta a {
  display: inline-block;
  border-radius: 32px;
  border: 1px solid #FFD5BD;
  background: #02880F;
  padding: 1.5rem 5rem;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
}

.get {
  text-decoration: none;
  color: #02880F;
  font-weight: 600;
}

/*........ Footer.................................... */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-textbox {
  width: 30%;
}

.footer-textbox img {
  width: 150px;
}

.footer-textbox p {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3rem;
  color: #1C0C2A;
  margin-top: 2rem;
}

.footer-textbox p span {
  color: #0F122D;
  font-weight: 700;
}

.footer-social {
  margin-top: 4rem;
}

.footer-textbox i {
  color: #2D3588;
  font-size: 1.8rem;
  margin-right: 2.5rem;
}

.footer-list {
  width: 15%;
  list-style: none;

}

.footer-list h3 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3rem;
  color: #0F122D;
  margin-bottom: 2rem;
}



.footer-list li:not(:last-child),
.footer-service:not(:last-child) {
  margin-bottom: .8rem;
}

.footer-list a {
  color: #1C0C2A;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.7rem;
}

.footer-list p {
  color: #666;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.7rem;
}

hr {
  margin-top: 4rem;
}

.copy {
  padding: 4rem 0rem;
  /* margin-left: -100px; */
  background: #0F122D;
  text-align: center;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.copy p {

  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.7rem;
  color: #fff;
}

.copy p span {
  font-weight: 600;
  display: inline-block;
}




.datee {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem;
}











/* === TEAM SECTION STYLES === */
#team {
  padding: 80px 0;
  /* Vertical padding */
  background-color: #f8f8f8;
  /* Light background for contrast */
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-heading {
  text-align: center;
  margin-bottom: 50px;
}

.team-heading h2 {
  font-size: 36px;
  color: #333;
  /* Darker color for main heading */
  margin-bottom: 10px;
}

.team-heading .company-name {
  font-size: 24px;
  font-weight: 400;
  color: #666;
  /* Subtler color for company name */
}

.team-slogan {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
  margin: 20px auto 0;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* Responsive grid */
  gap: 30px;
  /* Space between cards */
}

.member-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #0F122D;
  /* Accent color for a professional look */
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.member-category {
  font-size: 14px;
  font-weight: 700;
  color: #0F122D;
  /* Use your brand's primary color */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: inline-block;
  padding: 5px 10px;
  background-color: #e0f0ff;
  border-radius: 5px;
}

.member-name {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.member-title {
  font-size: 16px;
  font-style: italic;
  color: #777;
  margin-bottom: 15px;
  border-bottom: 1px dashed #eee;
  /* Subtle separator */
  padding-bottom: 10px;
}

.member-bio {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* === RESPONSIVE STYLES (for smaller screens) === */
@media (max-width: 768px) {
  #team {
    padding: 60px 0;
  }

  .team-heading h2 {
    font-size: 30px;
  }

  .team-heading .company-name {
    font-size: 20px;
    display: block;
    /* Force company name to a new line on mobile */
  }

  .team-members {
    /* grid-template-columns will handle responsiveness automatically */
    gap: 20px;
  }
}



.member-photo {
  width: 120px;
  /* Size of the container */
  height: 120px;
  margin: 0 auto 20px auto;
  /* Center the image and add space below it */
  overflow: hidden;
  /* Ensures the image is clipped by border-radius */
  border-radius: 50%;
  /* Makes the container circular */
  border: 4px solid #0F122D;
  /* Small border using your accent color */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image covers the area without distortion */
  display: block;
}

/* Update: Adjust member-card padding to accommodate the photo */
.member-card {
  /* Keep existing styles, just ensure padding is adequate */
  padding: 30px;
  text-align: center;
  /* Center the content including the photo and name */
  /* ... existing member-card styles ... */
}

/* Update: Adjust alignment of specific elements within the card */
.member-details {
  text-align: left;
  /* Re-align the text content to the left */
}

.member-card .member-category {
  margin: 0 auto 15px auto;
  /* Re-center category */
}