* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
html,
body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}




/* ===============================
   NAVBAR
=================================*/

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: top 0.3s ease;
}
header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

header.scrolled .navbar {
  border-radius: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.navbar {
  height: 70px;
  background: #fff;
  padding: 0 30px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-top: 8px;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  margin-top: 4px;
  height: 70px;
  width: auto;
}

#navLinks {
  display: flex;
  list-style: none;
  gap: 28px;
}

#navLinks li {
  position: relative;
}

#navLinks a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 8px 0;
  transition: 0.3s;
}

#navLinks a:hover {
  color: #f0ba4b;
}

#navLinks li::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #f0ba4b;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

#navLinks li:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.add-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 25px;
  background: #f0ba4b;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  font-size: 16px;
  font-family: "poppins", sans-serif;
}

.add-btn:hover {
  background: #f0ba4b;
  color: #fff;
}

#menuToggle {
  display: none;
  font-size: 26px;
  border: none;
  background: none;
  cursor: pointer;
}






/* ================= HERO SLIDER ================= */

.hero-slider {
  width: 100%;
  height: 99vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  transition: 1s;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.2);
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  z-index: 1;
}

.content {
  position: absolute;

  top: 50%;
  left: 8%;

  transform: translateY(-50%);

  z-index: 5;

  color: white;

  max-width: 650px;
}

.content span {
  display: inline-block;

  padding: 10px 22px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(10px);

  font-size: 14px;
  letter-spacing: 2px;

  margin-bottom: 25px;
}

.content h1 {
  font-size: 75px;
  line-height: 1.1;

  margin-bottom: 20px;
}

.content p {
  font-size: 18px;
  line-height: 1.8;

  color: #ddd;

  margin-bottom: 35px;
}

/* ================= BUTTONS ================= */

.buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.buttons a {
  text-decoration: none;
}

.buttons button {
  padding: 16px 34px;

  border: none;
  outline: none;

  border-radius: 50px;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.4s ease;
}

.buttons a:first-child button {
  background: #f0ba4b;
  color: white;

  box-shadow: 0 10px 25px rgba(15, 157, 88, 0.35);
}

.buttons a:last-child button {
  background: white;
  color: #111;

  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.buttons button:hover {
  transform: translateY(-6px) scale(1.03);
}

@media (max-width: 768px) {
  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .buttons a {
    width: 100%;
  }

  .buttons button {
    width: 100%;
  }
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 992px) {
  #menuToggle {
    display: block;
  }

  .nav-right {
    display: none;
  }

  .navbar {
    padding: 0 20px;
  }

  #navLinks {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 25px;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 15px 15px;
  }

  #navLinks.active {
    display: flex;
  }

  /* HERO */

  .content {
    max-width: 600px;
  }

  .content h1 {
    font-size: 60px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .navbar {
    height: 65px;
    padding: 0 15px;
    border-radius: 0;
    margin-top: 0;
  }

  .logo img {
    height: 50px;
  }

  #navLinks {
    top: 65px;
  }

  .hero-slider {
    height: 75vh;
  }

  .slide img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
  }

  .content {
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 90%;
  }

  .content span {
    font-size: 11px;
    padding: 8px 18px;
    margin-bottom: 18px;
  }

  .content h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .buttons a {
    width: 100%;
  }

  .buttons button {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
  .navbar {
    height: 60px;
    padding: 0 12px;
  }

  .logo img {
    height: 70px;
  }

  #navLinks {
    top: 60px;
  }

  .hero-slider {
    height: 70vh;
  }

  .slide img {
    height: 70vh;
  }

  .content {
    left: 5%;
    max-width: 90%;
  }

  .content span {
    font-size: 10px;
    padding: 7px 15px;
    letter-spacing: 1px;
  }

  .content h1 {
    font-size: 38px;
    line-height: 1.15;
  }

  .content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .buttons button {
    padding: 13px 18px;
    font-size: 14px;
  }
}













/* ===============================
   FOOTER
=================================*/

.footer {
  background: #232f41;
  padding: 20px 0 20px;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 30px 20px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 5px;
  background: #fff;
  border-radius: 6px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #fff;
  font-family: "poppins", sans-serif;
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 18px;
  color: #f0ba4b;
  font-family: "poppins", sans-serif;
}
.footer-col p a {
  color: #fff;
  text-decoration: none;
}

.footer-col p a:hover {
  color: #f0ba4b;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  color: #fff;
  font-family: "poppins", sans-serif;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-family: "poppins", sans-serif;
}

.footer-col ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
  font-family: "poppins", sans-serif;
}

.footer-col ul li a:hover {
  color: #f0ba4b;
  padding-left: 5px;
  font-family: "poppins", sans-serif;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.social-icons .call {
  background: #ff6b00;
}
.social-icons .facebook {
  background: #1877f2;
}
.social-icons .whatsapp {
  background: #25d366;
}
.social-icons .instagram {
  background: #e1306c;
}

.social-icons a:hover {
  transform: translateY(-4px);
}

.footer-bottom {
  max-width: 1200px;
  margin: auto;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #fff;
  font-family: "poppins", sans-serif;
}

.footer-bottom p {
  font-family: "poppins", sans-serif;
}
.design img {
  width: 120px;
}


/* =================================
   LARGE DESKTOP
================================= */

@media (max-width: 1400px) {
  .footer-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
  }
}

/* =================================
   LAPTOP
================================= */

@media (max-width: 1200px) {
  .footer-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/* =================================
   TABLET
================================= */

@media (max-width: 992px) {

  .footer {
    padding: 50px 0 20px;
  }

  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 25px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-col h4::after{
    left: 0;
    transform: none;
  }
}

/* =================================
   MOBILE
================================= */

@media (max-width: 768px) {

  .footer {
    padding: 40px 0 20px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding: 0 20px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-logo {
    width: 140px;
    margin: 0 auto 15px;
    display: block;
  }

  .footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
  }

  /* Underline Center Fix */
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col p {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-col ul {
    padding: 0;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    font-size: 14px;
  }

  .social-icons {
    justify-content: center;
    margin-top: 15px;
    gap: 12px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
  }

  .footer-btn {
    width: 100%;
    max-width: 250px;
    margin: 15px auto 0;
    display: block;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 20px;
  }

  .footer-bottom p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* =================================
   SMALL MOBILE
================================= */

@media (max-width: 480px) {

  .footer {
    padding: 35px 0 15px;
  }

  .footer-wrapper {
    padding: 0 15px;
    gap: 25px;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-col h4 {
    font-size: 16px;
  }

  .footer-col p {
    font-size: 13px;
  }

  .footer-col ul li a {
    font-size: 13px;
  }

  .social-icons a {
    width: 34px;
    height: 34px;
  }

  .footer-btn {
    font-size: 13px;
    padding: 10px 18px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}









/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8f9fb, #eef2f7);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
}

/* ================= LEFT INFO ================= */

.contact-info {
  animation: fadeLeft 1s ease;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
  color: #003962;
}

.contact-info h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #f0ba4b;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.hours p {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e3e3e3;
  color: #232f41;
  transition: 0.3s;
  font-family: "poppins", sans-serif;
}

.hours p:hover {
  padding-left: 8px;
  color: #f0ba4b;
}

.info-box a {
  text-decoration: none;
  color: #232f41;
  display: inline-block;
  font-family: "poppins", sans-serif;
}

.info-box a:hover {
  color: #f0ba4b;
}
.info-box {
  margin-top: 30px;
}

.info-box p {
  margin: 15px 0;
  font-size: 15px;
  transition: 0.3s;
}

.info-box i {
  color: #f0ba4b;
  margin-right: 12px;
  font-size: 18px;
}

.info-box p:hover {
  transform: translateX(6px);
}

/* ================= FORM ================= */

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(8px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  animation: fadeRight 1s ease;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  transition: 0.4s;
  font-family: "poppins", sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f0ba4b;
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.3);
  transform: scale(1.02);
}

.contact-form textarea {
  height: 160px;
  resize: none;
  font-family: "poppins", sans-serif;
}

.contact-form button {
  background: #f0ba4b;
  color: #fff;
  border: none;
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.4s;
  font-family: "poppins", sans-serif;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

/* ================= MAP ================= */

.map-section {
  width: 100%;
  padding: 60px 20px;
  background: #f5f7fa;
  text-align: center;
  margin: 40px 0;
}

.map-section h2 {
  font-size: 32px;
  color: #232f41;
  margin-bottom: 10px;
}

.map-section p {
  color: #000;
  margin-bottom: 30px;
  font-size: 16px;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

@media (max-width: 1200px) {
  .map-section iframe {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 40px 15px;
  }

  .map-section iframe {
    height: 320px;
  }
}
@media (max-width: 480px) {
  .map-section iframe {
    height: 250px;
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-info h2 {
    font-size: 24px;
    color: #f0ba4b;
  }

  .map-section iframe {
    height: 320px;
  }
}









/* ================= ABOUT ================= */

.about-section {
  padding: 110px 0;
  background: #f4f8fb;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.image-card img {
  width: 100%;
  border-radius: 15px;
  transition: 0.6s;
}

.image-card:hover img {
  transform: scale(1.08);
}

.experience {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #f0ba4b;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
}

.experience h3 {
  font-size: 28px;
}

/* RIGHT CONTENT */
.about-small {
  color: #f0ba4b;
  font-weight: 600;
}

.about-right h2 {
  font-size: 36px;
  margin: 15px 0;
  color: #0d2b3e;
}

.about-right h2 span {
  color: #f0ba4b;
  text-align: center;
}

.about-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.feature-box i {
  font-size: 24px;
  color: #f0ba4b;
  margin-bottom: 10px;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-btn {
  padding: 14px 32px;
  background: #052b50;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.4s;
}

.about-btn:hover {
  background: #0d2b3e;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-right {
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .about-features {
    grid-template-columns: 1fr;
  }

  .about-right h2 {
    font-size: 24px;
  }

  .experience {
    padding: 12px;
  }
}




/* ===============================
 ABOUT BANNER
=================================*/

.About-banner {
  position: relative;
  height: 340px;
  background: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c")
    center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 100px;
}

.About banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
}

.About banner-content {
  position: relative;
  z-index: 2;
}

.About banner-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb p {
  color: #ddd;
}



/* ================= PARALLAX FIX ================= */

.cta-section {
  position: relative;
  height: 420px;

  background: url("assets/b3.avif") center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* DARK OVERLAY */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* CONTENT */
.cta-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 600;
}

.cta-content p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 25px;
  color: #ddd;
  line-height: 1.6;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #f0ba4b;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.4s;
}

.cta-btn:hover {
  background: #d4a330;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .cta-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .cta-section {
    height: 320px;
    padding: 20px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    height: auto;
    padding: 80px 20px;
  }

  .cta-content h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .cta-btn {
    padding: 12px 24px;
  }
}

/* ================= SERVICES SECTION ================= */

.services-section {
  padding: 110px 8%;
  background: #f6f8fb;
  overflow: hidden;
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}
/* ================= SERVICE BUTTON ================= */

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 28px;

  background: #f0ba4b;
  color: white !important;

  border-radius: 50px;

  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  transition: 0.4s ease;

  box-shadow: 0 12px 25px #d0def3;
}

.service-btn i {
  font-size: 14px;
}

.service-btn:hover {
  transform: translateY(-5px);
  gap: 15px;

  background: #f0ba4b;
}
.section-tag {
  display: inline-block;

  padding: 10px 24px;

  border-radius: 50px;

  background: rgba(240, 186, 75, 0.12);
  color: rgb(240, 186, 75);

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;

  margin-bottom: 18px;
}

.section-title {
  font-size: 54px;
  color: #111;
  line-height: 1.2;
}

/* ================= GRID ================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ================= CARD ================= */

.service-card {
  position: relative;

  background: white;

  border-radius: 28px;

  overflow: hidden;

  transition: 0.5s ease;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* ================= IMAGE ================= */

.service-img {
  height: 260px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.8s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.12);
}

/* ================= CONTENT ================= */

.service-content {
  position: relative;

  padding: 35px 30px;
}

/* Icon */

.service-icon {
  position: absolute;

  top: -35px;
  left: 30px;

  width: 75px;
  height: 75px;

  background: #f0ba4b;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 30px rgba(218, 219, 117, 0.35);
}

.service-icon i {
  color: white;
  font-size: 28px;
}


.service-content h3 {
  font-size: 28px;
  color: #111;

  margin-top: 20px;
  margin-bottom: 18px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #666;

  margin-bottom: 28px;
}


.service-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;

  color: #f0ba4b;

  font-weight: 600;

  transition: 0.4s;
}

.service-content a:hover {
  gap: 16px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 38px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-img {
    height: 220px;
  }
}





/* ================= WHY SECTION ================= */

.why-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0d2b3e 0%, #1a4a6b 100%);
  margin-top: 10px;
  margin-bottom: 10px;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.why-images {
  position: relative;
}

.img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  margin-left: 0;
  transition: 0.5s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.img-main:hover {
  transform: scale(1.02);
}

.property-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #ff6b00;
  padding: 18px 25px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.why-content {
  color: #fff;
}

.why-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
  font-family: "poppins", sans-serif;
  line-height: 1.3;
}

.why-content p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.75);
  font-family: "poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
}

.learn-btn {
  padding: 14px 32px;
  background: #d98c1f;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "poppins", sans-serif;
}

.learn-btn:hover {
  background: #ff8c00;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

.learn-btn:active {
  transform: scale(0.96);
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 35px;
  list-style: none;
  padding: 0;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "poppins", sans-serif;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-list li i {
  color: #d98c1f;
  font-size: 16px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .why-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .img-main {
    height: 320px;
  }
  .why-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .why-section {
    padding: 70px 15px;
  }
  .why-list {
    grid-template-columns: 1fr;
  }
  .img-main {
    height: 250px;
  }
  .why-content h2 {
    font-size: 24px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}


.flip-text {
  opacity: 0;
  transform: rotateX(90deg);
  animation: flipIn 1s forwards;
}

.flip-text.delay {
  animation-delay: 0.5s;
}

@keyframes flipIn {
  to {
    opacity: 1;
    transform: rotateX(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .img-main {
    margin-left: 0;
  }

  .property-box {
    left: 50%;
    transform: translateX(-50%);
  }

  .why-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .img-main {
    width: 100%;
  }

  .img-small {
    width: 130px;
    top: -20px;
  }

  .why-content h2 {
    font-size: 26px;
  }
}







/*TESTIMONIAL SECTION  */

.premium-testimonial {
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  /* margin-top: 10px; */
}

.premium-testimonial::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  filter: blur(220px);
  animation: moveLight 10s infinite alternate;
  top: -150px;
  left: -150px;
  z-index: 0;
}

@keyframes moveLight {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(400px, 200px);
  }
}

.heading {
  color: #fff;
  font-size: 42px;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.premium-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.premium-card {
  width: 320px;
  padding: 45px 30px;
  border-radius: 25px;
  background: #232f41;

  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f0ba4b;
  transition: 0.6s;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.premium-card i {
  font-size: 45px;
  color: #f0ba4b;
  margin-bottom: 20px;
}

.premium-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 107, 0, 0.5);
}

.premium-card p {
  color: #fff;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .premium-card {
    width: 90%;
  }
}

/* ===============================
   TESTIMONIAL SECTION (NEW)
=================================*/

.testimonial-section {
  padding: 100px 0;
  background: #f5f9fb;
  text-align: center;
  margin-bottom: 20px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  text-align: left;
  transition: 0.4s;
  border-top: 4px solid #f0ba4b;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
  margin-bottom: 15px;
}

.testimonial-stars i {
  color: #f0ba4b;
  font-size: 16px;
}

.testimonial-text {
  color: #555;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #eee;
  padding-top: 18px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0ba4b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 15px;
  color: #0d2b3e;
  margin-bottom: 3px;
}

.author-info span {
  font-size: 13px;
  color: #888;
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-section {
    padding: 70px 15px;
  }
}

/* ===============================
   FAQ SECTION
=================================*/

.faq-section {
  padding: 100px 0;
  background: #f8f9fb;
  text-align: center;
}

.faq-section .section-title {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #0d2b3e;
  animation: none;
  text-align: center;
  display: block;
}

.faq-section .section-tag {
  display: block;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  border-left: 4px solid #f0ba4b;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 15px;
}

.faq-question span {
  font-size: 17px;
  font-weight: 600;
  color: #0d2b3e;
  line-height: 1.4;
}

.faq-question i {
  color: #f0ba4b;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-item.open .faq-question {
  border-bottom: 1px solid #f0f0f0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 25px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 20px 25px;
}

.faq-answer p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.faq-answer strong {
  color: #ff6b00;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 70px 0;
  }
  .faq-question span {
    font-size: 15px;
  }
  .faq-question {
    padding: 18px 20px;
  }
  .faq-item.open .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .faq-question span {
    font-size: 14px;
  }
}












/* ===============================
   GLOBAL RESPONSIVE FIXES
   All screen sizes
=================================*/



/* ---- About Section ---- */
@media (max-width: 768px) {
  .about-section {
    padding: 70px 15px;
  }
  .about-right h2 {
    font-size: 26px;
  }
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .about-section {
    padding: 50px 12px;
  }
  .about-right h2 {
    font-size: 22px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .about-btn {
    display: block;
    text-align: center;
  }
}


/* ---- Footer ---- */
@media (max-width: 400px) {
  .footer-wrapper {
    padding: 0 12px;
    gap: 18px;
  }
  .footer-col h4 {
    font-size: 15px;
  }
  .footer-col p,
  .footer-col ul li a {
    font-size: 13px;
  }
  .footer-logo {
    width: 130px;
  }
  .footer-bottom {
    font-size: 12px;
    padding: 10px 12px;
  }
  .design img {
    width: 90px;
  }
}





/* ---- General small screen overflow fix ---- */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  h2 {
    word-break: break-word;
  }
  img {
    max-width: 100%;
  }
}












/* ================= FLOATING BUTTONS ================= */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.float-call,
.float-whatsapp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-decoration: none;
}
.float-call {
  background: #f0ba4b;
}
.float-whatsapp {
  background: #25d366;
}
.float-call:hover,
.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  color: #fff;
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    left: 14px;
    gap: 10px;
  }
  .float-call,
  .float-whatsapp {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .floating-buttons {
    bottom: 16px;
    left: 10px;
    gap: 8px;
  }

  .float-call,
  .float-whatsapp {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}