/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
a{
  text-decoration: none !important;
}
main{
    margin-top: 68px;
    overflow-x: hidden;
}

section{
  padding: 50px 0 !important;

}
/* Navbar */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 12px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
    .logo{
      height: 45px;
      width: 135px;
    }

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

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  padding: 25px 0;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #f05a49;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 20px 0;
  min-width: 160px;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: #111;
  font-size: 13px;
  font-weight: 400;
}

.dropdown-menu li a:hover {
  background: #f7f7f7;
  color: #f05a49;
}

/* Right Icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-icons i {
  font-size: 18px;
  color: #111;
  cursor: pointer;
  transition: 0.3s;
}

.nav-icons i:hover {
  color: #f05a49;
}

.login-btn {
  background: #f05a49;
  border: none;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(240, 90, 73, 0.3);
  transition: 0.3s;
}

.login-btn:hover {
  background: #e44b3a;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  transition: 0.4s;
}

.menu-toggle span {
  background: #111;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Styles */
@media (max-width: 992px) {
  .navbar {
    padding: 12px 25px;
  }

  .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 100px 0 40px;
    opacity: 0;
    transform: translateY(-20px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
  }

  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px; /* enough to fit all menu items */
    pointer-events: auto;
  }

  .nav-links li {
    text-align: center;
  }

  /* Dropdowns inside mobile */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f9f9f9;
    opacity: 1;
    transform: none;
    display: none;
    border-radius: 6px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  /* Hide desktop social + login */


  /* Show mobile social + login */
  .mobile-extra {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
  }

  .mobile-extra .social-icons {
    display: flex;
    gap: 15px;
  }

  .mobile-extra i {
    font-size: 18px;
    color: #111;
    transition: 0.3s;
  }

  .mobile-extra i:hover {
    color: #f05a49;
  }

  /* Hamburger */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    transition: 0.3s;
  }

  .menu-toggle span {
    background: #111;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.4s;
  }

  /* Make complete X */
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
/* === Final Compact Mega Menu (Force same as Translation dropdown) === */
.mega-dropdown {
  position: relative;
}

.mega-dropdown:hover > .mega-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Mega menu container */
.mega-dropdown .mega-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  max-width: 720px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 8px 0; /* compact */
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
  align-items: flex-start; /* top aligned */
}

/* Each column */
.mega-dropdown .mega-column {
  flex: 1;
  min-width:300px ;
  padding: 15px 12px;
  border-right: 1px solid #eee;
}

.mega-dropdown .mega-column:last-child {
  border-right: none;
}

/* Heading – only bold, same font size */
.mega-dropdown .mega-column h6 {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 8px !important;   
  color: #111;
  margin: 0 0 6px; /* no top padding */
  line-height: 1.2;
}

/* Links – override all dropdown styles */
.mega-dropdown .mega-column a {
  display: block;
  padding: 10px 8px !important; /* tighter vertical space */
  margin: 0 !important;
  line-height: 1.3 !important;
  font-size: 13px !important;
  color: #111 !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  background: transparent !important;
  transition: color 0.2s, background 0.2s;
}

.mega-dropdown .mega-column a:hover {
  background: #f7f7f7 !important;
  color: #f05a49 !important;
}

/* Column spacing fix */
.mega-dropdown .mega-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* === Mobile === */
@media (max-width: 992px) {
  .mega-dropdown .mega-menu {
    position: static;
    flex-direction: column;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    transform: none;
    padding: 6px 0;
    display: none;
    background: #f9f9f9;
  }

  .mega-dropdown.open .mega-menu {
    display: block;
  }

  .mega-dropdown .mega-column {
    border: none;
    padding: 6px 20px;
  }

  .mega-dropdown .mega-column h6 {
    text-align: center;
    margin-top: 8px;
  }

  .mega-dropdown .mega-column a {
    text-align: center;
  }
}


/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hero h1 {
  font-size: 35px;
    line-height: 1.1 ;
}

.hero p {
    line-height: 1.3;
} 

.hero .section-heading-2{
  color: #20a896;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 79%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}


.fade-up {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.hero-content .fade-up {
  opacity: 1;
  animation: fadeUp 1s ease forwards;
}

.hero-content{
  text-align: center;
}
.hero-content .col-lg-7{
  text-align: left;
  margin:auto;
}
/* Hero Heading */
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero h1 span {
  color: #20a896;
}

/* Paragraph */
.hero p {
  font-size: 18px;
  color: #d0d0d0;
  line-height: 1.6;
  margin-top: 20px;
}


/* FORM */
.hero-form {
  max-width: 400px;
  margin: auto;
  background: #d8efef;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hero-form h3 {
  color: rgb(26, 86, 122);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 5px;
}

.form-subtext {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  margin-bottom: 15px;
  font-size: 15px;
  background-color: #f7fbfb;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.hero-form input:focus,
.hero-form textarea:focus {
  outline: none;    
}
.hero-form textarea {
  min-height: 120px;
  resize: none;
}
.textarea-wrapper {
  position: relative;
}

.textarea-wrapper textarea {
  width: 100%;
  min-height: 140px;
  padding: 14px 15px 45px 15px; /* extra bottom padding */
  border-radius: 8px;
  border: none;
  font-size: 15px;
  resize: none;
}

/* Focus orange border */
.textarea-wrapper textarea:focus {
  outline: none;
}

/* Attachment button INSIDE textarea */
.attach-btn {
  position: absolute;
  bottom: 35px;
  left: 10px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}




.hero-form small {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  color: #777;
}

.hero-form button {
  width: 100%;
  background: rgb(26, 86, 122);;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-left h1 {
    font-size: 42px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-form {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .hero-left h1 {
    font-size: 34px;
  }

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

  .hero-badges {
    font-size: 14px;
    gap: 15px;
  }
}
.attach-btn {
  background: #f3f4f6;
  padding: 6px 12px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 20px;
}

/* Button */
.read-more {
  display: inline-block;
  border: none;
  text-decoration: none;
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;

  cursor: pointer;
  font-weight: 500;
  margin-top: 25px;
    background: #f05a49;
}

.read-more:hover {
 background-color: #c44336;
 text-decoration: none;
  transform: scale(1.05);
}



/* Responsive */
@media (max-width: 992px) {
  .navbar {
    padding: 12px 25px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

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

  .menu-toggle {
    display: flex;
  }

  .nav-icons i, .login-btn {
    display: none;
  }

  .hero {
    text-align: center;
    padding: 120px 20px;
  }

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

  .hero p {
    font-size: 15px;
  }
}

/* ===== Our Story Section ===== */
.our-story {
  font-family: "Poppins", sans-serif;
  color: #3D3D3F;
}

.section-heading {
font-weight: 600;
    color: #003a6e;
    font-size: 26px;
  margin-bottom: 25px;
  position: relative;
  display: flex;
  align-items: center;
}

.section-heading span {
  display: inline-block;
  width: 10px;
  height: 40px;
  background: #20a896;
  border-radius: 5px;
  margin-right: 10px;
}

.section-heading-2 {
font-weight: 600;
    color: #003a6e;
    font-size: 26px;
  margin-bottom: 25px;
  position: relative;
  display: flex;
  align-items: center;
}
.translation-type .section-heading{
  font-size: 20px;
}
.section-heading-2 span {
  display: inline-block;
  width: 10px;
  height: 40px;
  background: #20a896;
  border-radius: 5px;
  margin-right: 10px;
}
.story-text p{
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 35px;

}


/* Image Styling */
.story-img img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Make the image extend to screen edge */


@media (max-width: 992px) {
  .story-text {
    text-align: center;
    /* padding: 20px; */
  }

  .section-heading {
    justify-content: center;
  }
}

/* ===== Our Story Section ===== */
.our-story {
  font-family: "Poppins", sans-serif;
  color: #3D3D3F;
  overflow: hidden;
}


/* .story-text {
  padding-right: 40px; 
} */

.story-text p,
.contact p {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 20px;
}

/* Image Styling */
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Responsive */
@media (max-width: 992px) {
  .story-text {
    text-align: center;
    /* padding: 20px; */
  }
  .our-story-heading {
    justify-content: center;
  }
  .story-text p,
.contact p {
  font-size: 16px;
}
.story-img img{
  margin-bottom: 20px;
}
/* .slider-nav {
  visibility: hidden;
} */
.our-story ul li {
  text-align: left;
}

}


/* ===== WHAT WE DO SECTION ===== */
.what-we-do {
  background: #d8efef;
  font-family: "Poppins", sans-serif;
  color: #3D3D3F;
}

.heading-title {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  color: #20a896;
  margin-bottom: 20px;
}

.heading-title span {
  display: inline-block;
  width: 5px;
  height: 20px;
  background: #20a896;
  border-radius: 5px;
  margin-right: 10px;
}

.intro-text {
  font-size: 20px;
  line-height: 35px;
  color: #3D3D3F;
  font-weight: 400;
}

.service-subtitle span {
  font-weight: 600;
  font-size: 20px;
  color: #111;
}

/* Slider */
.service-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.service-slider {
  display: flex;
  padding-top: 10px;
  gap: 20px;
  overflow-x: auto;        
  scroll-behavior: smooth;   
  scrollbar-width: none;   
}

.service-slider::-webkit-scrollbar {
  display: none;             
}



.service-card{
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  width: calc(100% / 4.2);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.service-card:hover{

  transform: translateY(-5px);

}
.service-card-2 {
    background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.section-card-2:hover {
  transform: translateY(-5px);
}


.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fdeff2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
}

.icon-circle img {
width: 100%;
height: 100%;
  object-fit: contain;
}

.service-card h6 ,
.service-card-2 h6 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #111;
}

.service-card p,
.service-card-2 p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #555;
  margin-bottom: 12px;
}

.service-card a,
.service-card-2 a {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.service-card a:hover,
.service-card-2 a:hover {
  text-decoration: underline;
}

/* Slider Buttons */
.slider-nav {
position: absolute;
    top: 0px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.what-we-do .slider-nav{
  position: relative;
  top: auto;
  right: auto;
}

.slider-nav button {
  border: none;
  background: #20a896;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.slider-nav button:hover {
  background: #178777;
}

.footer-content{
  width: 70%;
}

.footer-text {
  font-size: 18px;
  line-height: 32px;
  color: #3D3D3F;
}

/* Responsive */
@media (max-width: 768px) {
  .service-slider {
    gap: 15px;
  }

  .service-card {
    width: 100%;
  }

  .footer-text {
    font-size: 16px;
  }
  .footer-content{
  width: 100%;
}

}

/* ===== WHY CHOOSE LINGUAUP ===== */
.why-choose {
  font-family: "Poppins", sans-serif;
  color: #3D3D3F;
}



/* Slider */
.choose-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.choose-slider {
  display: flex;
  gap: 10px;
  padding-top: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}



.choose-slider::-webkit-scrollbar {
  display: none;
}

/* Cards */
.choose-card {
  background: #e7e5e5b9;
  border: 1px solid #c4c4c4;
  border-radius: 12px;
  padding: 30px 20px;
  width:calc(100% / 4.2);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.choose-card:hover{
  background-color: #d8efef;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transform: translateY(-5px);
}
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fdeff2;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  border: 2px solid orange;
}

.icon-circle img {
width: 100%;
height: 100%;
  object-fit: cover;
}

.choose-card h6 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #111;
}

.choose-card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #555;
  margin-bottom: 12px;
}

.choose-card a {
  font-size: 12px;
  font-weight: 400;
  color: #f05a49;
  text-decoration: none;
}

.choose-card a:hover {
  text-decoration: underline;
}

/* Arrows (outside) */
.why-choose .slider-nav {
  display: flex;
  gap: 10px;
}

.why-choose .slider-nav button {
  border: none;
  background: #c4e8e8;
  color: #111;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.why-choose .slider-nav button:hover {
  background: #20a896;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .choose-card {
    width: 100%;
  }
}


/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: #d8efef;
  font-family: "Poppins", sans-serif;
  color: #3D3D3F;
}

.testimonials .heading-title {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  color: #20a896;
}

.testimonials .heading-title span {
  display: inline-block;
  width: 5px;
  height: 20px;
  background: #20a896;
  border-radius: 5px;
  margin-right: 10px;
}

/* Slider */
.testimonials .slider-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials .slider-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.testimonials .slider-track::-webkit-scrollbar {
  display: none;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  width: calc(100%/2.1);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}



/* Top Shape */
.quote-icon .shape {
  width: 40px;
  height: 30px;
  background: #20a896;
  border-radius: 6px 6px 0 0;
  position: absolute;
  top: -20px;
  left: 40px;
  z-index: 1;
}

.quote-icon .shape::before,
.quote-icon .shape::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 20px solid #facc15;
}

.quote-icon .shape::before {
  left: 10px;
  top: -18px;
}

.quote-icon .shape::after {
  left: 20px;
  top: -18px;
}

/* Header */
.testimonial-header {
  margin-bottom: 15px;
}

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

.user h6 {
  font-weight: 700;
  color: #0c2340;
  margin-bottom: 3px;
}

.user p {
  font-size: 13px;
  color: #777;
  margin-bottom: 0;
}

.stars i {
  color: #facc15;
  font-size: 15px;
}

/* Text */
.testimonial-text {
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  margin-top: 5px;
  color: #333;
}

/* Arrows */
.testimonials .slider-nav {
  display: flex;
  gap: 10px;
}

.testimonials .slider-nav button {
border: none;
    background: #20a896;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-nav button:hover {
  background: #178777;
}


/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    width: 100%;
    padding: 20px;
  }
}


  /* ===== BLOG SECTION ===== */
.latest-blog {
  background: #f7fbfb;
  font-family: "Poppins", sans-serif;
  color: #3D3D3F;
}

.latest-blog .heading-title {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  color: #20a896;
}

.latest-blog .heading-title span {
  display: inline-block;
  width: 5px;
  height: 20px;
  background: #20a896;
  border-radius: 5px;
  margin-right: 10px;
}

/* Slider */
.blog-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.blog-slider::-webkit-scrollbar {
  display: none;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 12px;
  flex-shrink: 0;
  width: calc(100% / 3.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s ease;
}
.blog-card:hover{
  background-color: #d8efef;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.blog-card .read-more{
font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    margin: auto;
}
.blog-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-content {
  padding: 20px 15px;
}

.blog-content h5 {
  font-weight: 600;
  font-size: 18px;
  color: #111;
  margin-bottom: 10px;
  line-height: 24px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  line-height: 22px;
}

/* Arrows */
.latest-blog .slider-nav {
  display: flex;
  gap: 10px;
}

.latest-blog .slider-nav button {
  border: none;
  background: #c4e8e8;
  color: #111;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.latest-blog .slider-nav button:hover {
  background: #20a896;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-card {
    width: 100%;
  }
}
    .our-story ul li{
    font-size: 18px;
    margin-bottom: 10px;
    }
    /* ===== INDUSTRIES WE SERVE SECTION ===== */
.industries {
  position: relative;
  color: #fff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  padding: 100px 0;
}

/* Dark overlay */
.industries .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
background: rgb(0 0 0 / 53%);
  z-index: 1;
}

/* Text Content */
.industries-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.industries .heading-title {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  color: #20a896;
  margin-bottom: 15px;
}

.industries .heading-title span {
  display: inline-block;
  width: 5px;
  height: 20px;
  background: #20a896;
  border-radius: 5px;
  margin-right: 10px;
}

.industries .intro-text {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.6;
}

.industries-list {
  list-style: disc;
  padding-left: 20px;
}

.industries-list li {
  font-size: 18px;
  line-height: 35px;
}

/* Responsive */
@media (max-width: 768px) {
  .industries-content {
    max-width: 100%;
  }
  .industries .intro-text {
    font-size: 16px;
  }
  .industries-list li {
    font-size: 15px;
  }
}

/* ===== Our Mission Section ===== */
.our-mission {
  font-family: "Poppins", sans-serif;
  color: #3D3D3F;
  overflow: hidden;
  background-color: #f9f9f9;
}



.mission-text {
  padding-left: 40px; /* spacing between image and text */
}

.mission-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  margin-bottom: 20px;
}

/* Image Styling */
.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Remove Bootstrap gutter */
.our-mission .row {
  --bs-gutter-x: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .mission-text {
    text-align: center;
    padding: 20px;
  }

  .section-heading {
    justify-content: center;
  }

  .our-mission .row {
    flex-direction: column !important;
  }


}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 20px;
  font-size: 14px;
}

.footer h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer ul {
  padding: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #20a896;
}

/* Footer Logo */
.footer-logo img {
  width: 150px;
  height: 50px;
  object-fit: cover;
}

/* Social Icons */
.footer-social a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #20a896;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: #20a896;
}
.headnav .headbtn {
    background: #1a567a;
    border-radius: 50px;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 15px;
    color: #fff;
}

.headnav a {
    color: #000;
    text-decoration: none;
}

.headnav a i {
    font-size: 15px;
}
/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer-logo img {
    margin: 0 auto;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    font-size: 13px;
  }
  .service-card{width:calc(100% / 1);}
}
@media (min-width: 991px) {
  .service-slider{
    flex-wrap: wrap;
    justify-content: start;
  }
  .service-card{width:calc(100% / 3 - 15px);}
  .what-we-do .slider-nav{visibility: hidden;}
}
@media (min-width: 767px) and (max-width: 991px){
  .service-card{width:calc(100% / 2);}
}
/* faq */
  .faq-section {
  background: #f7fbfb;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0B4DA2;
}

.faq-item {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  padding: 18px 10px;
  font-size: 18px;
  font-weight: 600;
  color: #1D1D1F;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  color: #0B4DA2;
}

.faq-question .arrow {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 10px 20px;
  margin: 0;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

/* WhatsApp */
.float-btn.whatsapp {
  background: #25D366;
}

/* Chat */
.float-btn.chat {
  background: #1d4ed8;
}

.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
@media (max-width: 576px) {
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}
