/* =========================================
   RESET & GLOBAL
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink: #0f2027;
  --pink-light:  #38b3db;
  --pink-divider: #2c5364;
  --pink-dark: #056791;
  --white: #ffffff;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff; /* soft pink-tinted white */
  color: #222;
}

/* =========================================
   TOP HEADER
========================================= */
.top-header {
  background: var(--white);
  border-bottom: 1px solid var(--pink-dark);
  box-shadow: 0 2px 8px rgba(158, 69, 106, 0.08); /* soft pink shadow */
  padding: 12px 20px;
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Container */
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 20px;
}

/* Logo Image */
.logo img {
  height: 45px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* =========================================
   CONTACT INFO
========================================= */
.contact-info {
  display: flex;
  gap: 28px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box i {
  font-size: 1.2rem;
  color: white;
  background: var(--pink-divider);
  padding: 8px;
  border-radius: 50%;
}

.info-box h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-dark);
}

.info-box p {
  font-size: 0.78rem;
  color: #555;
}

/* =========================================
   BUTTON
========================================= */
.appointment-btn {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(158, 69, 106, 0.2);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.appointment-btn:hover {
  background: linear-gradient(135deg, var(--pink-dark), var(--pink));
}

/* =========================================
   MOBILE (Header)
========================================= */
@media (max-width: 768px) {
  .contact-info {
    display: none;
  }

  .header-container {
    max-width: 100%;
  }

  .logo {
    font-size: 1.4rem;
  }

  .appointment-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* =========================================
   SECOND HEADER (NAVBAR)
========================================= */
.second-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(158, 69, 106, 0.1); /* pink shadow */
  padding: 0.8rem 0;
}

.second-header .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--pink-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--pink);
}

/* =========================================
   DROPDOWN
========================================= */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding: 0.5rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(158, 69, 106, 0.15);
  z-index: 1;
  flex-direction: column;
}

.dropdown-content a {
  padding: 0.5rem 1rem;
  display: block;
  text-decoration: none;
  color: #333;
}

.dropdown-content a:hover {
  background-color: var(--pink-light);
}

/* show on hover */
.dropdown:hover .dropdown-content {
  display: flex;
}

/* =========================================
   SOCIAL ICONS
========================================= */
.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--pink-dark);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: var(--pink);
}

/* =========================================
   MOBILE — NAVBAR
========================================= */
.menu-icon {
  display: none;
  font-size: 1.6rem;
  color: var(--pink-dark);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #ffffff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(158, 69, 106, 0.15);
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
  }

  .menu-icon {
    display: block;
  }
}


/* About Page Container */



/* ===============================
   ABOUT PAGE HERO SECTION
================================ */
.about-hero {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 120px 20px;
}

.about-hero-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.about-hero-text h5 {
  color: #38bdf8;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.about-hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-hero-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #e5e7eb;
}

.about-hero-text button {
  padding: 14px 32px;
  background: #0284c7;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about-hero-text button:hover {
  background: #0369a1;
}

/* IMAGE */
.about-hero-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  transition: transform 0.5s ease;
}

.about-hero-image img:hover {
  transform: scale(1.05);
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .about-hero-text h1 {
    font-size: 36px;
  }

  .about-hero-text p {
    font-size: 16px;
  }

  .about-hero-text button {
    font-size: 15px;
    padding: 12px 28px;
  }
}




.about-page {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  background-color: white;
}

/* About Section */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 100px;
  align-items: center;
}

.about-section.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.about-section.reverse .about-content {
  direction: ltr;
}

/* Image Styling */
.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Content Styling */
.about-content h5 {
  color: #38bdf8;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.about-content ul li {
  font-size: 15px;
  margin-bottom: 8px;
  position: relative;
}

.about-content ul li::before {
  content: "✓";
  color: #38bdf8;
  position: absolute;
  left: -20px;
  top: 0;
}

/* Paragraph */
.about-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 20px;
}

/* Button */
.about-content button {
  padding: 12px 28px;
  background: #0284c7;
  color: #fff;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about-content button:hover {
  background: #0369a1;
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
  .about-section,
  .about-section.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .about-section.reverse .about-content {
    direction: ltr;
  }

  .about-image {
    margin-bottom: 30px;
  }
}



/* VALUES SECTION */
.values-section {
  padding: 80px 20px;
  background: #ffffff;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-header h5 {
  color: #38bdf8;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.values-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.values-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* VALUE CARD */
.value-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* ICON */
.value-icon {
  font-size: 36px;
  color: #38bdf8;
  margin-bottom: 20px;
}

/* TITLE & DESCRIPTION */
.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}



.stats-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 80px 20px;
  color: #fff;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.stats-chart {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
}

.stats-content .small-title {
  color: #00e5ff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
}

.stats-content .large-title {
  font-size: 36px;
  margin: 10px 0;
  color: white;
}

.stats-content .description {
  font-size: 15px;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-box h3 {
  font-size: 40px;
  color: #00e5ff;
  margin-bottom: 5px;
}

.stat-box span {
  font-size: 14px;
  color: #e5e7eb;
}

/* MOBILE */
@media (max-width: 900px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .stats-content .large-title {
    font-size: 30px;
  }
}




.faq-section {
  background: #f9fafb;
  padding: 80px 20px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-subtitle {
  color: #0ea5e9;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 10px;
}

.faq-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #111827;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #1f2933;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
  }
}


.contact-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 90px 20px;
  color: #ffffff;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-subtitle {
  color: #38bdf8;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.contact-title {
  font-size: 42px;
  margin-bottom: 20px;
}

.contact-description {
  font-size: 16px;
  line-height: 1.8;
  color: #e5e7eb;
}

/* FORM STYLING */
.contact-form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  resize: none;
}

.contact-form label {
  position: absolute;
  top: 50%;
  left: 12px;
  background: #ffffff;
  padding: 0 6px;
  color: #6b7280;
  font-size: 13px;
  transform: translateY(-50%);
  transition: 0.3s ease;
  pointer-events: none;
}

.contact-form textarea + label {
  top: 18px;
  transform: none;
}

.contact-form input:focus + label,
.contact-form input:valid + label,
.contact-form textarea:focus + label,
.contact-form textarea:valid + label {
  top: -7px;
  font-size: 11px;
  color: #0284c7;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: #0284c7;
  color: #ffffff;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #0369a1;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 32px;
  }
}

/* Container */
.our-commitment {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.oc-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Image */
.oc-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
  object-fit: cover;
}

/* Right Content */
.oc-content {
  flex: 1;
  min-width: 300px;
}

/* Short Title */
.oc-short-title {
  font-size: 14px;
  color: #0284c7;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Large Title */
.oc-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
  line-height: 1.3;
}

/* Points List */
.oc-points {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.oc-points li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
}

.oc-points li i {
  color: #0284c7;
  font-size: 18px;
}

/* Paragraph */
.oc-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #666;
  line-height: 1.6;
}

/* Button */
.oc-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #0284c7;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.oc-btn i {
  margin-left: 8px;
}

.oc-btn:hover {
  background-color: #e55b50;
}

/* Mobile Responsive */
@media screen and (max-width: 992px) {
  .oc-container {
    flex-direction: column;
    text-align: center;
  }

  .oc-content {
    margin-top: 30px;
  }

  .oc-points li {
    justify-content: center;
  }
}


.services-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* SERVICE CARD */
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.short-title {
  font-size: 0.85rem;
  color: #777;
  text-transform: uppercase;
  font-weight: 600;
  margin: 15px 20px 0;
}

.large-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin: 8px 20px;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  margin: 0 20px 20px;
  line-height: 1.6;
}

.learn-more {
  margin: 0 20px 20px;
  font-weight: 600;
  text-decoration: none;
  color: #0a0;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.learn-more i {
  margin-left: 8px;
}

.learn-more:hover {
  color: #008000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }
}



.gallery-section {
  padding: 90px 20px;
  background: #ffffff;
  color: #0f172a;
}

.gallery-header {
  max-width: 800px;
  margin: auto;
  text-align: center;
  margin-bottom: 60px;
}

.gallery-subtitle {
  color: #38bdf8;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.gallery-title {
  font-size: 40px;
  margin-bottom: 15px;
}

.gallery-description {
  font-size: 15px;
  color: #000000;
  line-height: 1.7;
}

/* GRID */
.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.7)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item .overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

/* SIZE VARIANTS */
.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* MOBILE */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .gallery-title {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }
}


/* contact page */


/* ✅ Contact Page Hero */
.contact-hero {
  position: relative;
  height: 70vh;
  width: 100%;
  background: url('https://images.unsplash.com/photo-1505691723518-36a5ac3be353') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* Overlay */
.contact-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Content */
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.contact-hero-content h1 {
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-hero-content h1 span {
  color: #0284c7;
}

.contact-hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #f1f1f1;
}

/* ✅ Responsive */
@media (max-width: 900px) {
  .contact-hero {
    height: 50vh;
  }
  .contact-hero-content h1 {
    font-size: 34px;
  }
  .contact-hero-content p {
    font-size: 16px;
  }
}



/* ✅ Claim Damage Section */
.claim-damage {
  background: #fff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.cd-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
}

/* Image Styling */
.cd-image {
  flex: 1;
  position: relative;
}
.cd-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}
.cd-image img:hover {
  transform: scale(1.05);
}

/* Content Styling */
.cd-content {
  flex: 1;
}
.cd-mini {
  font-size: 15px;
  color: #0284c7;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.cd-mini i {
  color: #0284c7;
}
.cd-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #062c49;
  margin-bottom: 15px;
}
.cd-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Learn More Link */
.cd-learn {
  font-weight: bold;
  color: #0284c7;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.cd-learn:hover {
  gap: 15px;
  color: #e67600;
}

/* ✅ Mobile Responsive */
@media (max-width: 900px) {
  .cd-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .cd-content h2 {
    font-size: 26px;
  }
}



/* ✅ Contact Us Section */
.contact-today {
  background: #fff;
  padding: 80px 20px;
}

/* Container for Main Content */
.ct-container {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* ✅ Left Image */
.ct-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.ct-image img:hover { transform: scale(1.03); }

/* ✅ Right Content */
.ct-content {
  max-width: 500px;
}
.ct-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #062c49;
  margin-bottom: 15px;
}
.ct-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}
.ct-link {
  font-size: 16px;
  font-weight: bold;
  color: #0284c7;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.ct-link:hover {
  gap: 15px;
  color: #e67600;
}

/* ✅ Smaller Arrows */
.ct-link i,
.ct-info-block a i {
  font-size: 13px; 
  transition: transform 0.3s ease;
}
.ct-link:hover i,
.ct-info-block a:hover i {
  transform: translateX(3px);
}

/* ✅ Info Row */
.ct-info-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* ✅ Info Block */
.ct-info-block {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 0 20px;
  min-width: 250px;
}
.ct-info-block i {
  font-size: 28px; /* Reduced slightly for balance */
  color: #0284c7;
  min-width: 28px;
}
.ct-info-block h4 {
  font-size: 20px;
  color: #062c49;
  margin-bottom: 5px;
}
.ct-info-block p {
  font-size: 15px;
  color: #555;
  margin-bottom: 5px;
}
.ct-info-block a {
  font-weight: bold;
  color: #0284c7;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.ct-info-block a:hover {
  gap: 12px;
  color: #e67600;
}

/* ✅ Divider */
.ct-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 5px;
}

/* ✅ Responsive */
@media (max-width: 900px) {
  .ct-container { 
    flex-direction: column-reverse; 
    text-align: center; 
  }
  .ct-info-row { 
    flex-direction: column; 
    align-items: flex-start; 
  }
  .ct-divider { display: none; }
  .ct-info-block { 
    border-bottom: 1px solid rgba(0,0,0,0.1); 
    padding-bottom: 15px; 
    margin-bottom: 15px; 
  }
}




/* ✅ Feedback Section */
.feedback-section {
  background: #f9f9f9;
  padding: 80px 20px;
}

.fb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* ✅ Left Content */
.fb-left {
  flex: 1;
  max-width: 500px;
}
.fb-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: #062c49;
  margin-bottom: 15px;
}
.fb-left h2 span {
  color: #0284c7;
}
.fb-left p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* ✅ Reasons */
.fb-reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fb-reason {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.fb-reason i {
  font-size: 30px;
  color: #0284c7;
}
.fb-reason h4 {
  font-size: 18px;
  color: #062c49;
  margin-bottom: 5px;
}
.fb-reason p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* ✅ Feedback Form */
.fb-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
}
.fb-form input,
.fb-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
}
.fb-form textarea {
  min-height: 100px;
  resize: none;
}
.fb-btn {
  background: #0284c7;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.fb-btn:hover {
  background: #e67600;
  transform: scale(1.05);
}

/* ✅ Responsive */
@media (max-width: 900px) {
  .fb-container {
    flex-direction: column;
    text-align: center;
  }
  .fb-left {
    max-width: 100%;
  }
  .fb-reason {
    justify-content: center;
    text-align: left;
  }
  .fb-form {
    width: 100%;
  }
}




.services-booking {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.sb-container {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Form Section */
.sb-left {
  flex: 1;
  min-width: 300px;
}

.sb-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #222;
}

.sb-left p {
  margin-bottom: 25px;
  color: #555;
  line-height: 1.6;
}

.sb-left form input,
.sb-left form select,
.sb-left form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.sb-left form input:focus,
.sb-left form select:focus,
.sb-left form textarea:focus {
  border-color: #0284c7;
}

.sb-left form textarea {
  resize: vertical;
  min-height: 120px;
}

.sb-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #0284c7;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.sb-btn:hover {
  background-color: #e55b50;
}

/* Right Services Section */
.sb-right {
  flex: 1;
  min-width: 300px;
}

.sb-right h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.sb-service {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.sb-service h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #0284c7;
}

.sb-service p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

/* Mobile Responsive */
@media screen and (max-width: 992px) {
  .sb-container {
    flex-direction: column;
  }

  .sb-left, .sb-right {
    text-align: center;
  }

  .sb-right .sb-service p {
    text-align: left;
  }
}


/* ===============================
   FOOTER STYLING
=============================== */
.footer {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    padding: 60px 20px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-group h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #5eff5e;
}

.footer-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-group ul li {
    margin-bottom: 10px;
}

.footer-group ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-group ul li a:hover {
    color: #5eff5e;
}

/* Bottom bar */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-group {
        width: 100%;
    }
}
