* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


header {
  width: 100%;
  font-family: Arial, sans-serif;
}

/* Topbar */
.topbar {
  background-color: #222;
  color: #fff;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.topbar-left span,
.topbar-right span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  line-height: 29px;
  font-family: "inter", sans-serif;
}

.topbar i {
  color: #fff;
  font-size: 50px;
  font-weight: bold;
}


/* Navbar */
.nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 50px;
  background: #fff;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left i {
  color: #033544;
  font-size: 50px;
}

.brand-text h1 {
  font-size: 35px;
  color: #033544;
  font-weight: bold;
}

.brand-text p {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
  padding-left: 0;
  margin: 0;
}

.nav-links li a {
  font-size: 16px;
  color: #292929;
  padding: 35px 0;
  font-weight: 500;
  text-transform: capitalize;
  font-family: "inter", sans-serif;
  letter-spacing: -0.058px;
  text-decoration: none;
}

.nav-links li a i {
  font-size: 12px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.explore-btn {
  background: #033544;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

#active {
  color: #033544;
}

@media (max-width: 992px) {
  .hamburger {
    display: block;
    color: #4a0030;
    margin-left: auto;
  }


  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #fff;
    padding: 10px 0;
    margin-top: 10px;
    border-top: 1px solid #ddd;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: left;
    padding: 10px 5%;
  }

  .navbar-right {
    width: 100%;
    margin-top: 10px;
    justify-content: flex-start;
  }

  .explore-btn,
  .nav-right .search {
    display: none;
  }

  .topbar {
    display: none;
  }

}


@media (max-width: 768px) {
  .brand-text h1 {
    font-size: 18px;
  }

  .nav-links li a {
    font-size: 14px;
  }

  .explore-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 40px;
    height: 40px;
  }

  .explore-btn {
    font-size: 13px;
    padding: 8px 12px;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.dropbtn {
  color: black;
  padding: 10px 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

#dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 250px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-top: 2px solid #033544;
  padding: 0px 0;
  top: 200%;
}

#dropdown-content a {
  color: #1a1a1a;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-size: 15px;
  font-weight: 500;
  transition: All 0.3s ease-in-out;

}

#dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #033544;
  margin-left: 10px;
}

.dropdown:hover #dropdown-content {
  display: block;
}

@media screen and (max-width: 480px) {
  #dropdown-content {
    min-width: 100vw;
    left: 0;
    right: 0;
    padding: 8px 0;
  }

  #dropdown-content a {
    padding: 12px 20px;
    font-size: 16px;
  }
}


/* hero section */

.hero-section {
  background: url('../images/banner-bg-1.png') no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}


.overlay {
  width: 100%;
  height: 100%;
  padding: 60px 5%;
  display: flex;
  align-items: center;
}

/* Content styles */
.hero-content {
  max-width: 500px;
  color: white;
  margin: 0 200px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #D2D2D2;
}

.hero-content button {
  background-color: red;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

/* Responsive design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {

  .hero-content {
    max-width: 500px;
    color: white;
    margin: 0 0;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .overlay {
    padding: 40px 20px;
    text-align: center;
    justify-content: center;
  }
}

/* About section */

.about-section {
  margin: 50px 0;
  padding: 80px 10%;
}

.about-container {
  display: flex;
  /* flex-direction: row !important; */
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h5 {
  color: #033544;
  letter-spacing: -0.064px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: "Lora", system-ui;
  font-weight: 500;
  font-size: 20px;
}

.about-text h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1d1d1d;
  font-family: "Lora", system-ui;

}

.about-text p {
  color: #555;
  margin-bottom: 0px;
  margin: 25px 0;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.058px;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.about-text ul li {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 20px;
  color: #000;
}

.about-text ul li i {
  background-color: #033544;
  color: #fff;
  padding: 5px;
  border-radius: 50%;
  font-size: 12px;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-actions button {
  background-color: #033544;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.call-icon {
  background: #f5edf1;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-icon span {
  color: #033544;
  font-size: 18px;
}

.about-actions p {
  font-weight: bold;
  font-size: 1rem;
}

/* Image Section */
.about-images {
  display: flex;
  flex: 1 1 500px;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
}

.top-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0.8;
}

.top-images img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.stat-box {
  background: #033544;
  color: white;
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.stat-box h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 1.5rem;
  color: #fff;
}

.tall-image {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.tall-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.round-img img {
  border-top-left-radius: 60%;
}

.round-img-I img {
  border-top-right-radius: 60%;

}



@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
  }

  .about-images {
    flex-direction: column;
  }

  .tall-image img {
    aspect-ratio: 2 / 1;
  }
}

@media (max-width: 600px) {
  .about-text h5 {
    font-size: 15px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 15px;
  }

  .about-text ul li {
    font-size: 15px;
  }

  .about-actions button {
    margin-bottom: 10px;
  }
}


/* Feature section */

:root {
  --Daacs-base: #033544;
}

.feature-section {
  position: relative;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
  margin: 100px 0;
}

.feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, var(--Daacs-base) 51.07%, rgba(1, 19, 60, 0) 100%),
    url('../images/service-bg.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.95;
  z-index: -1;
}

.feature-section .container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.feature-content {
  display: flex;
}

.left-feature-content h5 {
  color: #fff;
  letter-spacing: -0.064px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: "Lora", system-ui;
  font-weight: 500;
  text-align: left;
  font-size: 20px;
}

.left-feature-content h2 {
  font-size: 48px;
  font-weight: 600;
  text-align: left;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Lora", system-ui;
}

.left-feature-content {
  width: 55%;
}

.desc {
  width: 35%;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
  text-align: left;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.feature-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 25px;
  margin-top: 50px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card img {
  width: 55px;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 1.3rem;
  font-family: "Lora", system-ui;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.guide-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.guide-section p {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
}

.guide-section button {
  background: #033544;
  border: none;
  margin-left: 10px;
  padding: 2px 16px;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.guide-section button:hover {
  background: #042a35;
}



/* Responsive tweaks */
@media (max-width: 992px) {

  .feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }

  .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    color: #000;
    border-radius: 10px;
    padding: 25px 30px;
    margin-top: 50px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .feature-card img {
    width: 55px;
    margin-bottom: 15px;
  }

  .left-feature-content {
    width: 60%;
  }

  .desc {
    width: 40%;
  }
}

@media (max-width: 768px) {

  .feature-content {
    display: flex;
    flex-direction: column;
  }


  .left-feature-content {
    width: 100%;
  }

  .desc {
    width: 100%;
  }

  .feature-content h2 {
    font-size: 2rem;
  }

  .feature-card {
    padding: 20px 10px;
  }
}

/* Our Services */
.services-section {
  max-width: 1200px;
  margin: auto;
  margin-top: 100px;
}

.services-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.services-header h2 {
  font-size: 48px;
  font-weight: bold;
}

.services-header p {
  max-width: 600px;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: #f1f1f1;
  border-radius: 15px;
  padding: 30px 20px;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 40px;
  color: red;
  margin-bottom: 20px;
}

.card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.card-text {
  font-size: 16px;
  color: #444;
  flex-grow: 1;
}

.card-arrow {
  width: 180px;
  border-radius: 27.5px;
  gap: 0 15px;
  background-color: #051A53;
  border-color: #051A53;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  padding: 15px 20px;
}

.card-arrow:hover {
  background-color: #fff;
  color: #051A53;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .services-header p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .services-header h2 {
    font-size: 36px;
  }

  .services-header p {
    font-size: 15px;
  }

  .service-card {
    padding: 25px 15px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-text {
    font-size: 15px;
  }

  .card-arrow {
    font-size: 20px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 30px 15px;
  }

  .services-header h2 {
    font-size: 28px;
  }

  .services-header p {
    font-size: 14px;
  }

  .service-card {
    min-height: auto;
    padding: 20px 10px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-text {
    font-size: 14px;
  }

  .card-icon {
    font-size: 32px;
  }

  .card-arrow {
    font-size: 18px;
  }
}

/* Portfolio */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.portfolio-section {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-label {
  color: #033544;
  letter-spacing: -0.064px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: "Lora", system-ui;
  font-weight: 500;
  font-size: 20px;
}

.portfolio-title {
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: "Lora", system-ui;

}

.slider-container {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 300px;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}




.slide.active {
  width: 350px;
  height: 380px;
  z-index: 10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}


.slide:nth-child(1) {
  transform: translateX(-720px);
}

.slide:nth-child(2) {
  transform: translateX(-380px);
}

.slide:nth-child(3) {
  transform: translateX(0);
  z-index: 10;
}

.slide:nth-child(4) {
  transform: translateX(380px);
}

.slide:nth-child(5) {
  transform: translateX(720px);
}


.slide:nth-child(n+6),
.slide:nth-child(-n+0) {
  opacity: 0;
  pointer-events: none;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
  background-color: #fff;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.slider-nav svg {
  width: 20px;
  height: 20px;
  fill: #333;
}

/* For tablets */
@media (max-width: 992px) {
  .slide {
    width: 250px;
    height: 330px;
  }

  .slide.active {
    width: 300px;
    height: 330px;
  }

  .slide:nth-child(1) {
    transform: translateX(-600px);
  }

  .slide:nth-child(2) {
    transform: translateX(-320px);
  }

  .slide:nth-child(4) {
    transform: translateX(320px);
  }

  .slide:nth-child(5) {
    transform: translateX(600px);
  }
}

@media (max-width: 768px) {
  .portfolio-title {
    font-size: 2rem;
  }

  .slider-container {
    height: 300px;
  }

  .slide {
    width: 220px;
    height: 280px;
  }

  .slide.active {
    width: 260px;
    height: 280px;
  }

  .slide:nth-child(1) {
    transform: translateX(-520px);
  }

  .slide:nth-child(2) {
    transform: translateX(-280px);
  }

  .slide:nth-child(4) {
    transform: translateX(280px);
  }

  .slide:nth-child(5) {
    transform: translateX(520px);
  }
}

@media (max-width: 576px) {
  .portfolio-title {
    font-size: 1.5rem;
  }

  .slider-container {
    height: 260px;
  }

  .slide {
    width: 180px;
    height: 240px;
  }

  .slide.active {
    width: 220px;
    height: 240px;
  }

  .slide:nth-child(1) {
    transform: translateX(-400px);
    opacity: 0;
  }

  .slide:nth-child(2) {
    transform: translateX(-220px);
  }

  .slide:nth-child(4) {
    transform: translateX(220px);
  }

  .slide:nth-child(5) {
    transform: translateX(400px);
    opacity: 0;
  }

  .slider-nav {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 400px) {

  .slide:nth-child(1),
  .slide:nth-child(5) {
    display: none;
  }

  .slide:nth-child(2) {
    transform: translateX(-180px);
  }

  .slide:nth-child(4) {
    transform: translateX(180px);
  }
}

/* contact inquery */

.contact-inquiry {
  position: relative;
  background-image: url('../images/cta-img-1.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.contact-inquiry .overlay {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.contact-inquiry .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-inquiry .content h1 {
  font-size: 4rem;
  color: #fff;
  font-weight: 700;
  margin: 0 200px;
  line-height: 1.2;
}

.contact-inquiry .contact-btn {
  padding: 15px 30px;
  background-color: #e50914;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  width: 200px;
  margin-top: 50px;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.contact-inquiry .contact-btn:hover {
  background-color: #c10810;
}

@media (max-width: 1100px) {
  .contact-inquiry .content h1 {
    margin: 0 0;
  }
}

@media (max-width: 768px) {
  .contact-inquiry .content h1 {
    font-size: 2.8rem;
    margin: 0 0;
  }

  .contact-inquiry .contact-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .contact-inquiry .content h1 {
    font-size: 2rem;
    margin: 0 0;
  }

  .contact-inquiry .contact-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}


/* Blog section */


.blog-section {
  max-width: 1200px;
  margin: auto;
  margin-top: 100px;
}

.blog-subtitle {
  color: #033544;
  letter-spacing: -0.064px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: "Lora", system-ui;
  font-weight: 500;
  font-size: 20px;
  text-align: left;
}

.blog-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.3;
  text-align: left;
  color: #292929;
  font-family: "Lora", system-ui;

}


.blog-row {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  display: flex;
  width: 50%;
  height: 300px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-image {
  width: 50%;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #033544;
  color: #fff;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
}

.blog-content {
  width: 50%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.view-all-btn {
  background-color: #033544;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.meta {
  font-size: 14px;
  color: #4B4B4B;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}

.blog-heading {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  font-family: "Lora", system-ui;
  font-size: 22px;
  line-height: 1.7;

}

.author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* Responsive */
@media (max-width: 1024px) {

  .blog-title {
    font-size: 40px;
  }

  .view-all-btn {
    background-color: #033544;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .blog-row {
    flex-direction: column;
  }

  .blog-card {
    width: 100%;
  }
}

@media (max-width: 594px) {
  .blog-card {
    flex-direction: column;
    height: auto;
  }

  .card-image,
  .blog-content {
    width: 100%;
  }

  .card-image img {
    height: 200px;
  }
}

/* footer */

.footer {
  background-color: #2d2d2d;
  color: #fff;
  padding: 60px 0 0;
  position: relative;
  /* margin-top: 100px; */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.contact-section h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 5px;
  font-family: "Lora", system-ui;

}

.contact-section p {
  font-size: 24px;
  color: #fff;
}

.email-form {
  display: flex;
  max-width: 450px;
  width: 100%;
}

.email-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  border-radius: 4px 0 0 4px;
}

.email-form button {
  background-color: #033544;
  color: white;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  font-size: 18px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-about {
  flex: 0 0 300px;
  margin-right: 20px;
  margin-bottom: 30px;
}

.logo-container {
  margin-bottom: 20px;
}

.ft-logo {
  display: flex;
  align-items: center;
}

.ft-logo i {
  font-size: 40px;
  margin-right: 10px;
}

.logo-text h3 {
  font-size: 24px;
  font-weight: 600;
}

.logo-text span {
  font-size: 12px;
  color: #ccc;
}

.about-text {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}

.facebook {
  background-color: #3b5998;
}

.instagram {
  background-color: #e1306c;
}

.twitter {
  background-color: #1da1f2;
}

.linkedin {
  background-color: #0077b5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
}

.footer-column {
  flex: 0 0 30%;
  margin-bottom: 30px;
  min-width: 200px;
  text-align: left;
}

.footer-column h3 {
  font-size: 24px;
  font-weight: 600;
  position: relative;
  margin-bottom: 25px;
  line-height: 1.3;
  font-family: "Lora", system-ui;

}

.footer-column ul {
  list-style: none;
  padding-left: 0 !important;
}

.footer-column ul li {
  margin-bottom: 12px;
  text-align: left;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16px;

}

.footer-column ul li a:hover {
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-item i {
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  margin-top: 3px;
}

.contact-item p {
  color: #ccc;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #fff;
  letter-spacing: -0.058px;
}



/* Responsive styles */
@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-about {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .footer-links {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .email-form {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {

  .email-form input{
    width: 100px;
  }

  .contact-section h2 {
    font-size: 28px;
  }

  .contact-section p {
    font-size: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}




/* About section */


:root {
  --Daacs-base: #033544;
}

.about-hero-section {
  height: 60vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, var(--Daacs-base) 51.07%, rgba(1, 19, 60, 0) 100%),
    url('../images/About-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 60px 40px;
}

.about-hero-content {
  max-width: 600px;
  margin: 0 100px;
}

.about-hero-contentt p {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}

.about-hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  font-family: "Lora", system-ui;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero-section {
    padding: 40px 20px;
    background-position: center right;
  }

  .about-hero-content h1 {
    font-size: 36px;
  }

  .about-hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 450px) {
  .about-hero-content {
    margin: 0 30px;
  }
}


/* eligible section */

:root {
  --Daacs-base: #033544;
}

.eligibility-section {
  background-color: var(--Daacs-base);
  padding: 40px 20px;
  border-radius: 20px;
  margin: 100px 200px;
  color: #fff;
}

.eligibility-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}

.eligibility-text h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Lora", system-ui;
}

.eligibility-text p {
  font-size: 17px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
}

.eligibility-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.icon-circle {
  background-color: #fff;
  color: var(--Daacs-base);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.contact-info {
  display: flex;
  align-items: start;
}

.contact-info span {
  font-size: 20px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.contact-info strong {
  font-size: 24px;
  font-weight: 600;
  font-family: "Lora", system-ui
}

.eligibility-button button {
  background-color: #fff;
  color: var(--Daacs-base);
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eligibility-button button:hover {
  background-color: #eee;
}

/* Responsive */
@media (max-width: 1024px) {
  .eligibility-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .eligibility-text h2 {
    font-size: 28px;
  }

  .contact-info span,
  .contact-info strong {
    text-align: left;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 992px) {
  .eligibility-section {
    margin: 10px;
  }

}

@media (max-width: 400px) {

  .contact-info span,
  .contact-info strong {
    font-size: 13px;
  }
}

/* testimonial */

:root {
  --Daacs-base: #033544;
}

.testimonial-section {
  background-color: var(--Daacs-base);
  padding: 60px 20px;
  margin: 100px 0;
  color: #fff;
  text-align: center;
}

.testimonial-header p {
  font-weight: 500;
  font-family: "Lora", system-ui;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.064px;
  margin-bottom: 5px;
}

.testimonial-header h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 40px;
  font-family: "Lora", system-ui;

}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  color: #333;
  padding: 30px 20px;
  text-align: left;
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-top img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid var(--Daacs-base);
}

.stars {
  background-color: var(--Daacs-base);
  color: #fff;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 30px;
  letter-spacing: -0.07px;
  font-weight: 400;
  font-family: "inter" sans-serif;
  color: #5E5F63;
}

.customer-role {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  font-family: "Lora", system-ui;

}

.customer-name {
  color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .testimonial-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-container {
    grid-template-columns: 1fr;
  }

  .testimonial-section {
    padding: 40px 15px;
  }

  .testimonial-header h2 {
    font-size: 26px;
  }
}


.faq-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 40px;
  justify-content: center;
}

.faq-left {
  flex: 1 1 500px;
  max-width: 600px;
}

.subtitle {
  font-weight: 500;
  font-family: "Lora", system-ui;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.064px;
  margin-bottom: 5px;
}

.faq-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 40px;
  font-family: "Lora", system-ui;
}

.accordion-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  padding: 16px 20px;
  width: 100%;
  border: none;
  font-size: 17px;
  font-weight: 700;
  font-family: "lora", system-ui;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header.active {
  background-color: #033544;
  color: #fff;
}

.accordion-header .icon {
  font-size: 16px;
  padding: 1px 6px;
  text-align: center;
  background-color: #033544;
  color: #fff;
  border-radius: 50%;
}

.accordion-content {
  display: none;
  font-family: "inter" sans-serif;
  font-weight: 400;
  color: #5E5F63;
  padding: 20px;
  margin-bottom: 15px;
}

.accordion-content.open {
  display: block;
}


.faq-right {
  flex: 1 1 400px;
  max-width: 500px;
}

.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #033544;
  cursor: pointer;
}

.faq-list {
  margin-top: 25px;
  list-style: none;
}

.faq-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 500;
  color: #333;
}

.faq-list li i {
  color: #033544;
  margin-right: 10px;
  font-size: 22px;
}

.faq-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.consult-btn {
  background-color: #033544;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.call-icon {
  background-color: #033544;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
}

.phone-number {
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 768px) {
  .faq-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .faq-title {
    font-size: 28px;
  }

  .consult-btn {
    font-size: 14px;
  }
}



/* Blog */


.blog-section {
  max-width: 1140px;
  margin: 40px auto;
  padding: 50px 20px;
}

.blog-box {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
  display: block;
  width: 100%;
}

.blog-img {
  width: 100%;
  height: 100%;
  display: block;
  border-bottom: 1px solid #eee;
}

.blog-details {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #555;
  gap: 12px;
  margin-bottom: 16px;
}

.author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.author-text {
  line-height: 1;
  color: #292929;
  letter-spacing: -0.058px;
  text-transform: capitalize;
  font-size: 17px;
  font-family: "inter", sans-serif;
}

.date-icon,
.comment-icon {
  line-height: 1;
  color: #292929;
  letter-spacing: -0.058px;
  text-transform: capitalize;
  font-size: 17px;
  font-family: "inter", sans-serif;
}


.blog-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
  font-family: "lora", system-ui;
  line-height: 1.3;
}

.blog-desc {
  font-size: 16px;
  color: #5E5F63;
  font-family: "inter", sans-serif;
  font-weight: 400;
  line-height: 29px;
  margin-bottom: 40px;
}

.read-more {
  color: #fff;
  background-color: #033544;
  padding: 18px 30px;
  font-weight: 400;
  font-size: 16px;
  border-radius: 12px;
  letter-spacing: -0.051px;
  transition: 0.3s;
  line-height: 1;
  text-decoration: none;
}

.read-more:hover {
  background-color: #022631;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-title {
    font-size: 20px;
  }

  .blog-desc {
    font-size: 14px;
  }

  .read-more {
    font-size: 13px;
    padding: 8px 18px;
  }
}


/* pagisnation */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #5E5F63;
  background-color: white;
  color: #5E5F63;
  line-height: 29px;
  font-family: "inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 7px;
  cursor: pointer;
  transition: 0.3s ease;
}

.page-btn:hover {
  background-color: #f5f5f5;
}

.page-btn.active {
  background-color: #033544;
  color: white;
  font-weight: bold;
}

@media (max-width: 480px) {
  .page-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}


/* contact-section */


.contact-sec {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Arial', sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 36px;
  font-family:"lora", system-ui;
  color:#000;
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-info .sub-title {
  font-size: 16px;
  font-family: "inter", sans-serif;
  font-weight: 400;
  line-height: 29px;
  color: #5E5F63;
  margin-bottom: 15px;
}

#info-group {
  margin-bottom: 20px;
}

#info-group .label {
  font-size: 18px;
  font-family: "inter", sans-serif;
  font-weight: 400;
  line-height: 20px;
  color: #5E5F63;
}

#info-group .value {
  font-size: 22px;
  font-weight: 700;
  font-family: "lora",system-ui;
  line-height: 1.3;
  color: #000;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
}

.social-icons a:nth-child(1) {
  background-color: #3b5998;
}

.social-icons a:nth-child(2) {
  background-color: #e4405f;
}

.social-icons a:nth-child(3) {
  background-color: #1da1f2;
}

.social-icons a:nth-child(4) {
  background-color: #0077b5;
}


.contact-form {
  flex: 1;
  min-width: 320px;
  background-color: #f4ebef;
  padding: 30px;
  border-radius: 12px;
}

.contact-form h3 {
  font-size: 24px;
  font-family:"lora", system-ui;
  color:#000;
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-form input
 {
  border-radius: 12px;
  height: 60px;
  width: 100%;
  line-height: 60px;
  font-size: 16px;
  border: 2px solid #EFF0F2;
  color: #292929;
  padding-left: 29px;
  padding-right: 29px;
  margin-bottom: 20px;
}
.contact-form textarea{
  border-radius: 12px;
  width: 100%;
  line-height: 60px;
  font-size: 16px;
  border: 2px solid #EFF0F2;
  color: #292929;
  padding-left: 29px;
  padding-right: 29px;
  margin-bottom: 20px;
}

.contact-form button {
  background-color: #033544;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #4a0f3b;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}


@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* map container */



.map-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
}

.map-control-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #333;
  display: block;
  font-size: 1.2rem;
  height: 30px;
  line-height: 30px;
  margin-top: 5px;
  text-align: center;
  width: 30px;
}
