/* ===== GLOBAL FONTS ===== */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #1c1c1c;
    background-color: #fff;
    scroll-behavior: smooth;
}



.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
	
.loader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.loader-img {
  width: 50px;
  height: 50px;
  animation: pulse 1.5s infinite ease-in-out;
}

.loader-text {
  margin-top: 15px;
  font-size: 18px;
  color: #173360;
  font-family: Arial, sans-serif;
}

.dots::after {
  content: '';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes dots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
  100% { content: ''; }
}



/* ===== PRE-HEADER ===== */
.pre-header {
  position: relative;
  background: linear-gradient(90deg, #2e3192, #00aeef);
  color: #ffffff;
  font-size: 1.05rem;
  padding: 18px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.pre-header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: inherit;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.pre-header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}


.pre-header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.pre-header-right a {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pre-header-right a:hover {
  color: #ffcc00;
  transform: translateY(-2px);
}

.pre-header-right img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}


.working-days {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.working-days .hours-icon {
  height: 22px;
  width: auto;
}

.working-days .closed {
  font-size: 13px;
  font-weight: 500;
  color: #ffcc00;
  margin-left: 6px;
}

@media (max-width: 768px) {
  .pre-header {
    display: none !important;
  }
}

/* ===== HEADER ===== */
.main-header {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}


.logo img {
  height: 55px;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}


.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 600;
  color: #2e3192;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2e3192, #00aeef);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: #00aeef;
}

.main-header .call-btn {
  background: linear-gradient(90deg, #2e3192, #00aeef);
  color: #fff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: inline-block;
}
.main-header .call-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #2e3192;
  border-radius: 2px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


.mobile-cta { display: none; }


.close-btn {
  font-size: 28px;
  font-weight: bold;
  color: #2e3192;
  cursor: pointer;
  display: none;
  margin-left: auto;
  margin-bottom: 20px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 49, 146, 0.35);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1100; 
}
.menu-overlay.show {
  opacity: 1;
  pointer-events: auto;
}


body.lock-scroll {
  overflow: hidden;
}

@media (max-width: 900px) {
  .nav-links,
  .desktop-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }

  .nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 270px;
    background: #fff;
    box-shadow: -2px 0 14px rgba(0,0,0,0.12);
    padding: 40px 30px;
    gap: 25px;
    animation: slideIn 0.3s ease forwards;
    z-index: 1200;
  }
  .nav-links a {
    font-size: 1.1rem;
    color: #2e3192;
  }
  .mobile-cta {
    display: block;
    margin-top: 10px;
  }
  .close-btn {
    display: block;
  }
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}



.hero-alt {
  position: relative;
  width: 100%;
  min-height: 70vh;
  background: linear-gradient(90deg, #2e3192, #00aeef);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  color: #fff;
  overflow: hidden;
}

.ripple-bg { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 0; }
.ripple-bg .ripple {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border: 3px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleAnim 4s infinite;
  animation-delay: var(--delay);
}
@keyframes rippleAnim { 0% { transform: translate(-50%, -50%) scale(0); opacity:0.6; } 50% { transform: translate(-50%, -50%) scale(1); opacity:0.3; } 100% { transform: translate(-50%, -50%) scale(1.5); opacity:0; } }

.hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  z-index: 2;
}
.hero-text { flex: 1; min-width: 280px; text-align: left; }
.hero-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; }
.hero-subtitle { font-size: 1.1rem; line-height: 1.5; margin-bottom: 20px; max-width: 550px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.btn { padding: 12px 26px; border-radius: 30px; text-decoration: none; font-weight: bold; transition:0.3s; }
.btn-primary { background:#fff; color:#005fd3; } .btn-primary:hover { background:#efefef; }
.btn-secondary { background:#00aeef; color:#fff; } .btn-secondary:hover { background:#2e3192; }

.hero-carousel { flex:1; min-width:280px; max-width:450px; height:300px; overflow:hidden; border-radius:20px; box-shadow:0 8px 25px rgba(0,0,0,0.3); position:relative; }
.carousel-track { display:flex; transition: transform 0.8s ease-in-out; width:100%; }
.carousel-slide { min-width:100%; height:100%; flex-shrink:0; position:relative; overflow:hidden; }
.carousel-slide img { width:100%; height:100%; object-fit:cover; border-radius:20px; }
.light-reflection { position:absolute; top:-50%; left:-50%; width:200%; height:200%; background:linear-gradient(120deg, rgba(0,191,255,0) 0%, rgba(0,191,255,0.25) 50%, rgba(0,191,255,0) 100%); transform:rotate(25deg); pointer-events:none; animation:lightMove 6s linear infinite; }
@keyframes lightMove { 0%{transform:translateX(-100%) rotate(25deg);} 100%{transform:translateX(100%) rotate(25deg);} }

.carousel-btn { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,0.3); color:#fff; border:none; font-size:1.6rem; padding:10px; cursor:pointer; border-radius:50%; z-index:2; box-shadow:0 4px 10px rgba(0,0,0,0.3); opacity:0; transition:0.3s; }
.carousel-btn:hover { background: rgba(255,255,255,0.7); color:#005fd3; }
.prev { left:10px; } .next{ right:10px; }
.carousel-dots { position:absolute; bottom:10px; width:100%; text-align:center; z-index:2; opacity:0; transition:0.3s; }
.carousel-dots .dot { height:10px; width:10px; margin:0 4px; display:inline-block; background:rgba(255,255,255,0.5); border-radius:50%; cursor:pointer; }
.carousel-dots .dot.active { background:#fff; }
.hero-carousel:hover .carousel-btn, .hero-carousel:hover .carousel-dots { opacity:1; }

@keyframes slideDown { from {opacity:0; transform:translateY(-30px);} to{opacity:1; transform:translateY(0);} }
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }

@media (max-width: 992px) {
  .hero-carousel {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    position: relative;
    margin-top: 20px;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }


  .carousel-dots {
    bottom: 8px;
  }

  .carousel-dots .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.9);
  }

  .carousel-dots .dot.active {
    background: #EF571B;
  }
}



/* About Section */
.about-section {
  background: #ffffff;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}


.about-image .image-frame {
  transform: rotate(-3deg); 
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.about-image .image-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #02245b;
  margin-bottom: 10px;
}

.about-content .tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: #005fd3;
  margin-bottom: 20px;
  border-left: 4px solid #00aeef;
  padding-left: 12px;
}

.about-content p {
  font-size: 1.1rem;
  color: #5f656f;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-highlights {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight .icon {
  background: #00aeef;
  color: #fff;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.highlight p {
  margin: 0;
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

@media (max-width: 991px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-highlights {
    justify-content: center;
  }
}






/* Why Choose Us */
.why-choose-section {
  padding: 100px 20px;
  background: #f5f9ff;
  color: #02245b;
}

.why-choose-section .why-choose-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  flex-wrap: wrap;
}

.why-choose-section .why-text {
  flex: 1;
}

.why-choose-section .why-heading {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #02245b;
}

.why-choose-section .why-subheading {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #5F656F;
}

.why-choose-section .why-list {
  list-style: none;
  padding: 0;
}

.why-choose-section .why-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-choose-section .why-list i {
  color: #00aeef;
  font-size: 1.3rem;
}

.why-choose-section .why-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.why-choose-section .why-image img {
  max-width: 100%;
  border-radius: 20px;
  transform: rotate(-3deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-choose-section .why-image img:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
  .why-choose-section .why-choose-container {
    flex-direction: column;
    text-align: center;
  }

  .why-choose-section .why-image {
    order: -1;
  }

  .why-choose-section .why-text {
    text-align: center;
  }

  .why-choose-section .why-heading,
  .why-choose-section .why-subheading {
    text-align: center;
  }

  .why-choose-section .why-list li {
    justify-content: center;
  }

  .why-choose-section .why-image img {
    transform: rotate(0deg);
    margin-bottom: 30px;
  }
}


/* ===== Testimonials ===== */
#testimonials {
  padding: 80px 0;
  background: #f8f9fa;
  position: relative;
}

#testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
  color: #02245b;
  font-size: 40px;
  font-weight: 700;
}

.review-btn-left {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #2e3192;
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 10;
}

.review-btn-left img {
  width: 20px;
  transform: rotate(0deg);
}

.review-btn-left:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s, box-shadow 0.4s;
  height: 100%;
  border: 1px solid #e0e7ff;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.review-header img.client {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #005fd3;
  transition: transform 0.3s;
}
.review-card:hover img.client {
  transform: scale(1.05);
}

.reviewer-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #02245b;
}

.stars-google {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}
.stars-google .star {
  color: #fbbc05;
  font-size: 16px;
}
.stars-google img {
  width: 18px;
  margin-left: 5px;
}

.location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #555;
  margin-top: 4px;
  font-weight: 500;
}
.location img {
  width: 14px;
}

.review-text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-top: 12px;
  flex-grow: 1;
}

.swiper-pagination {
  margin-top: 25px !important;
}
.swiper-pagination-bullet {
  background: #00aeef;
  opacity: 0.6;
  transition: all 0.3s;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .review-card {
    padding: 22px 18px;
    margin: 0 10px; 
    box-sizing: border-box;
  }
  .review-header img.client { 
    width: 65px; 
    height: 65px; 
  }
}

@media (max-width: 768px) {
  #testimonials h2 { 
    font-size: 28px; 
    margin-bottom: 40px; 
  }
  .review-card {
    padding: 18px 15px;
    margin: 0 8px;
    box-sizing: border-box;
  }
  .review-header img.client { 
    width: 60px; 
    height: 60px; 
  }

  .review-btn-left {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: flex;
    margin: 20px auto 0;
    writing-mode: horizontal-tb !important;
    text-orientation: initial !important;
    border-radius: 8px;
    padding: 12px 16px;
    width: 160px;      
    justify-content: center;
  }
}

/* FAQ */
.faq-section {
  background: #f5f9ff;
  padding: 0;
  color: #02245b;
}

.faq-container {
  display: flex;
  width: 100%;
  margin: 0;
  min-height: 500px;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 0;
}

.faq-left {
  flex: 1;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.faq-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2e3192, #00aeef);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
}

.faq-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#ripple-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.faq-right {
  flex: 1;
  background: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: none;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 15px 0;
  transition: color 0.3s;
  color: #02245b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 10px 0;
  line-height: 1.6;
  color: #5f656f;
  font-size: 1rem;
}

.faq-cta {
  margin-top: 30px;
  text-align: center;
  position: relative;
}

.faq-button-ripple {
  position: relative;
  display: inline-block;
  border: 2px solid #2e3192;
  color: #2e3192;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 12px 35px;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 4px 10px rgba(0, 95, 211, 0.15);
}

.faq-button-ripple:hover {
  background: #2e3192;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 95, 211, 0.3);
}

.faq-button-ripple .ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  pointer-events: none;
  animation: ripple-animation 0.6s linear;
  opacity: 0;
}

.faq-button-ripple:active .ripple {
  transform: scale(4);
  opacity: 1;
  animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
  0% { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(4); opacity: 0; }
}

@media (max-width: 991px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-left, .faq-right {
    flex: unset;
    width: 100%;
    min-height: auto;
  }

  .faq-gradient {
    height: auto;
    padding: 60px 20px;
  }

  .faq-section-title {
    font-size: 2rem;
    max-width: 100%;
  }

  .faq-right {
    padding: 30px 20px;
  }

  .faq-button-ripple {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
}

@media (max-width: 576px) {
  .faq-question {
    font-size: 1rem;
    padding: 12px 0;
  }
  .faq-answer p {
    font-size: 0.95rem;
  }
}


.before-after-section {
  background: #f5f9ff;
  padding: 60px 20px;
  color: #02245b;
}

.container { max-width: 1200px; margin:auto; }
.section-heading { text-align:center; font-size:2.5rem; color:#005fd3; font-weight:800; margin-bottom:12px; }
.section-subheading { text-align:center; font-size:1.2rem; margin-bottom:40px; color:#5F656F; }

.ba-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 380px;
  margin: auto;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  cursor: ew-resize;
}

.ba-img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.3s ease; }

.ba-after-wrapper {
  position: absolute;
  top:0; left:0;
  width:50%; height:100%;
  overflow:hidden;
  z-index:2;
  transition: width 0.2s ease;
}

.ba-divider {
  position:absolute; top:0; left:50%;
  width:5px; height:100%;
  background:#fff; z-index:4;
  transform:translateX(-50%);
  border-radius:2px;
  box-shadow:0 0 15px rgba(0,0,0,0.2);
}

.ba-handle {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:50px; height:50px;
  background:#fff; border-radius:50%;
  cursor:ew-resize; z-index:5;
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
  display:flex; align-items:center; justify-content:center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ba-handle:hover { transform:translate(-50%,-50%) scale(1.15); box-shadow:0 8px 24px rgba(0,0,0,0.3); }

.ba-handle .arrow { font-size:0.8rem; color:#00aeef; user-select:none; pointer-events:none; }
.ba-handle .left-arrow { margin-right:5px; }
.ba-handle .right-arrow { margin-left:5px; }

.ba-gradient-text {
  position:absolute; bottom:0; width:50%;
  padding:15px 20px; color:#fff; z-index:6;
  box-sizing:border-box; transition:opacity 0.3s ease;
}

.ba-gradient-before { left:0; background: linear-gradient(to top, rgba(0,95,211,0.8), transparent); text-align:left; }
.ba-gradient-after { right:0; background: linear-gradient(to top, rgba(0,170,255,0.8), transparent); text-align:right; }

.ba-gradient-text h3 { margin:0 0 5px 0; font-size:1.2rem; font-weight:700; }
.ba-gradient-text p { margin:0; font-size:0.95rem; line-height:1.3; }

.slide-hint {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0,95,211,0.9);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 10;
  animation: none;
}

@keyframes wiggle {
  0% { transform: translateX(-50%) rotate(0deg); }
  15% { transform: translateX(-55%) rotate(-5deg); }
  30% { transform: translateX(-45%) rotate(5deg); }
  45% { transform: translateX(-52%) rotate(-3deg); }
  60% { transform: translateX(-48%) rotate(3deg); }
  75% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(0deg); }
}

/* Slide in & out animation */
@keyframes slideFade {
  0% { opacity:0; transform: translateX(-50%) translateY(20px); }
  10% { opacity:1; transform: translateX(-50%) translateY(0); }
  70% { opacity:1; transform: translateX(-50%) translateY(0); }
  100% { opacity:0; transform: translateX(-50%) translateY(-20px); }
}

@media (max-width:900px){ .ba-slider{height:300px;} .ba-handle{width:45px;height:45px;} .ba-gradient-text{font-size:0.9rem;padding:10px 15px;width:50%;} .slide-hint{font-size:0.8rem;bottom:50px;} }
@media (max-width:500px){ .ba-slider{height:220px;border-radius:15px;} .ba-handle{width:38px;height:38px;} .ba-gradient-text{font-size:0.85rem;padding:8px 12px;width:50%;} .slide-hint{font-size:0.75rem;bottom:40px;} }


.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(46,49,146,0.95) 0%,
    rgba(46,49,146,0.85) 50%,
    rgba(46,49,146,0.6) 80%,
    rgba(46,49,146,0) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fadeDown 1s ease;
}

.breadcrumb {
  font-size: 1rem;
  color: #f1f1f1;
  animation: fadeUp 1s ease;
}
.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  opacity: 0.85;
}

@keyframes fadeDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .page-hero {
    height: 200px;
    padding: 40px 15px;
    background-attachment: scroll;
  }
  .page-hero h1 { font-size: 2rem; }
  .breadcrumb { font-size: 0.9rem; }
}


.about-page-section {
  background: #f9f9fb;
  padding: 90px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image .image-frame {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image .tilt {
  transform: rotate(-4deg);
}
.about-image .tilt:hover {
  transform: rotate(0deg) scale(1.03);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h2 {
  font-size: 2.3rem;
  color: #02245b;
  margin-bottom: 15px;
}

.about-content .tagline {
  font-size: 1rem;
  font-style: italic;
  color: #005fd3;
  margin-bottom: 25px;
  border-left: 4px solid #00aeef;
  padding-left: 12px;
}

.about-content p {
  font-size: 1.05rem;
  color: #5f656f;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-highlights {
  display: flex;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  flex: 1;
  min-width: 200px;
  transition: transform 0.3s ease;
}
.highlight:hover {
  transform: translateY(-5px);
}

.highlight .icon {
  background: #00aeef;
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.highlight p {
  margin: 0;
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

@media (max-width: 991px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-highlights {
    justify-content: center;
  }
}


/* Stats */
.stats-section {
  background: linear-gradient(90deg, #2e3192, #00aeef);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.stat p {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
  margin: 0;
}

.stat {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stat.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stat h3 {
    font-size: 2.2rem;
  }
}

/* Other Services */
.other-services {
  background: #f9f9f9;
  padding: 80px 20px;
}

.other-services .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #02245b;
}

.section-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.service-logo {
  max-width: 120px;
  height: auto;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #02245b;
}

.service-card p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  display: inline-block;
  font-weight: 600;
  color: #00aeef;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #008bbd;
}


.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 47, 108, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cta-content {
  color: #fff;
  z-index: 2;
  max-width: 700px;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fadeDown 1s ease;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
  animation: fadeUp 1s ease;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #00aeef;
  color: #fff;
  padding: 14px 50px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: background 0.3s ease, transform 0.3s ease;
  min-width: 220px;
}

.cta-btn i {
  font-size: 1.2rem;
}

.cta-btn:hover {
  background: #2e3192;
  transform: translateY(-3px);
}

@keyframes fadeDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .cta-section {
    height: 200px;
  }
  .cta-content h2 {
    font-size: 1.6rem;
  }
  .cta-content p {
    font-size: 1rem;
  }
  .cta-btn {
    padding: 10px 25px; 
    font-size: 0.9rem;
    min-width: 140px;
  }
  .cta-btn i {
    font-size: 1rem; 
  }
}


.contact-section {
  padding: 80px 20px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 32px;
  color: #02245b;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.icon-box {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-box:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.icon-box .icon {
  width: 28px;
  height: 28px;
}

.info-item h4 {
  margin: 0;
  font-size: 18px;
  color: #222;
}

.info-item p {
  margin: 2px 0 0;
  color: #555;
}

.info-item p a {
  color: #555;
  text-decoration: none;
}

.info-item p a:hover {
  color: #2e3192;
}

.contact-form {
  flex: 1;
  min-width: 320px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}


.form-header {
  background: linear-gradient(135deg, #2e3192, #00aeef);
  padding: 20px;
  text-align: center;
}

.form-header h3 {
  color: #fff;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.contact-form form {
  padding: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #2e3192;
  box-shadow: 0px 0px 6px rgba(46, 49, 146, 0.25);
}

.send-btn {
  width: 100%;
  background: #2e3192;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background: #1f2375;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0px 6px 16px rgba(46, 49, 146, 0.35);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}


/* Map  */
.map-section {
  margin: 0;
  padding: 0;
}

.map-container {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 47, 108, 0.65);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.map-overlay h3 {
  font-size: 1.4rem;
  margin: 0;
  font-weight: 700;
}

.map-overlay p {
  font-size: 1rem;
  margin-top: 5px;
  font-weight: 400;
}

.map-overlay .map-click-text {
  margin-top: 8px;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.8;
}

.map-container:hover .map-overlay {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .map-container {
    height: 150px;
  }
  .map-overlay {
    opacity: 1;
  }
  .map-overlay h3 { font-size: 1.1rem; }
  .map-overlay p { font-size: 0.9rem; }
  .map-overlay .map-click-text { font-size: 0.8rem; }
}


/* gallery */
  .photo-collage {
    background: #fff;
    padding: 70px 20px;
    text-align: center;
  }

  .collage-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .collage-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #02245b;
    margin-bottom: 10px;
    animation: fadeDown 1s ease forwards;
  }

  .collage-subtitle {
    font-size: 1rem;
    color: #5F656F;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
  }

  .collage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    gap: 15px;
  }

  .collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 1s ease forwards;
  }

  .collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .collage-item:hover img {
    transform: scale(1.08);
  }

  .collage-item .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,95,211,0.75);
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .collage-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .collage-item.wide { grid-column: span 2; }
  .collage-item.tall { grid-row: span 2; }

  .lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 40px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.9);
    animation: fadeIn 0.5s ease;
  }

  .lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 70vh;
    border-radius: 8px;
    user-select: none;
    animation: zoomIn 0.5s ease;
  }

  .lightbox-caption {
    text-align: center;
    color: #fff;
    margin-top: 15px;
    font-size: 1rem;
    font-style: italic;
  }

  .close {
    position: absolute;
    top: 15px; right: 30px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
  }

  .lightbox-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transform: translateY(-50%);
    padding: 0 20px;
  }

  .lightbox-controls .prev, .lightbox-controls .next {
    user-select: none;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  @media (max-width: 768px) {
    .collage-grid { grid-auto-rows: 150px; }
    .collage-item.wide, .collage-item.tall {
      grid-column: span 1;
      grid-row: span 1;
    }
  }





/* Footer */
.footer-section {
  background: #2e3192;
  color: #fff;
  padding: 60px 20px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-brand p {
  max-width: 400px;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #dcdcf0;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #dcdcf0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #00aeef;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #dcdcf0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  color: #dcdcf0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #00aeef;
}

.footer-social .social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #dcdcf0;
  font-size: 18px;
  transition: transform 0.3s, color 0.3s;
}

.footer-social .social-icons a:hover {
  transform: scale(1.15);
  color: #00aeef;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #dcdcf0;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

.footer-brand, .footer-contact, .footer-links, .footer-social {
  animation: floatUp 1s ease forwards;
  opacity: 0;
}

.footer-brand { animation-delay: 0.2s; }
.footer-links { animation-delay: 0.4s; }
.footer-contact { animation-delay: 0.6s; }
.footer-social { animation-delay: 0.8s; }

@keyframes floatUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links, .footer-contact, .footer-social {
    align-items: center;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }

  .footer-social .social-icons a {
    margin-right: 8px;
  }
}


/* Process */
.process-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 47, 108, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.process-content {
  color: #fff;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  animation: fadeIn 1s ease-out;
}

.process-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: none;
  position: relative;
}

.process-content h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #00aeef;
  margin: 12px auto 0;
  border-radius: 2px;
}

.process-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.step {
  position: relative;
  text-align: center;
  flex: 1;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }
.step:nth-child(4) { animation-delay: 0.8s; }
.step:nth-child(5) { animation-delay: 1s; }
.step:nth-child(6) { animation-delay: 1.2s; }

.circle {
  width: 65px;
  height: 65px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #002f6c;
  margin: 0 auto 12px;
  font-size: 1.4rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.circle:hover {
  transform: scale(1.15);
  background: #2e3192;
  color: #fff;
}

.step p {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .process-section {
    display: none;
  }
}

.fab-container {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 1000;
}

.fab-main {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #005fd3, #0045a3);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, background 0.3s ease;
}

.fab-main:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, #0045a3, #003080);
}

.fab-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  pointer-events: none;
}

.fab-container.open .fab-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.fab-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #333;
  padding: 12px 20px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transform: translateX(30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.fab-container.open .fab-option {
  transform: translateX(0);
  opacity: 1;
}

.fab-container.open .fab-option:nth-child(1) { transition-delay: 0.05s; }
.fab-container.open .fab-option:nth-child(2) { transition-delay: 0.15s; }
.fab-container.open .fab-option:nth-child(3) { transition-delay: 0.25s; }

.fab-option i {
  font-size: 1.2rem;
}

.fab-option:hover {
  transform: translateX(-5px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.fab-option.call { color: #005fd3; }
.fab-option.whatsapp { color: #25d366; }
.fab-option.book { color: #02245b; }

@media (max-width: 768px) {
  .fab-main {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
  .fab-option {
    font-size: 0.85rem;
    padding: 10px 16px;
  }
}


.services-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #02245b;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #00aeef;
  margin: 15px auto 0;
  border-radius: 2px;
}


.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
  flex-wrap: wrap;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-img {
  flex: 1;
  max-width: 48%;
}

.service-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

.tilt-left img {
  transform: rotate(-2.5deg);
}

.tilt-right img {
  transform: rotate(2.5deg);
}

.service-img img:hover {
  transform: scale(1.05);
}

.service-text {
  flex: 1;
  max-width: 48%;
}

.service-text h3 {
  font-size: 1.6rem;
  color: #02245b;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

@media (max-width: 768px) {
  .services-section .container {
    padding: 0 20px;
  }
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    gap: 30px;
  }
  .service-img, .service-text {
    max-width: 100%;
  }
  .service-img img {
    transform: rotate(0);
  }
  .service-text h3 {
    text-align: center;
  }
  .service-text p {
    text-align: center;
  }
	
	
	
	