body{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
.heading{
  color: #00a9ac;
}
.main-btn{
  background: #1167b4;
  color: #fff;
  transition: 0.3s;
}
.main-btn:hover{
  background: #fff;
  color: #1167b4;
  border: 1px solid #1167b4;
}

/* ---------------------- */
/* TOP BAR */
/* ---------------------- */
.topbar {
  background: #00a9ac27;
  padding: 6px 0;
  font-size: 15px;
}

@media (max-width: 768px) {
  .topbar {
    display: none; /* Hide on mobile */
  }
}

/* ---------------------- */
/* NAVBAR */
/* ---------------------- */
.navbar-area {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  transition: all 0.3s ease;
}

.navbar-area.scrolled {
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.navbar-brand img {
  max-width: 150px;
}

.navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 500;
  margin: 0 22px;
  color: #000;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #00a9ac;
}

/* Appointment Button */
.btn-appointment {
  background: #1167b4;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-appointment:hover {
  background: #fff;
  color: #1167b4;
  border: 1px solid #1167b4;
}
/* Smooth dropdown animation */
.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}/* Overlay dropdown animation */
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}

/* Ensure the dropdown overlays content and doesn't push layout */
.nav-item.dropdown {
  position: relative;
}
.dropdown-item{
  font-weight: 600;
  font-size: 17px;
}
.dropdown-item:hover{
  color: #008080;

}
/* ---------------------- */
/* MOBILE SIDEBAR */
/* ---------------------- */
.mobile-menu-icon {
  font-size: 26px;
  cursor: pointer;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #eef8f7;
  padding: 20px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
  z-index: 9999;
}

.mobile-sidebar.active {
  left: 0;
}

.close-sidebar {
  font-size: 28px;
  cursor: pointer;
  float: right;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

.mobile-nav a:hover {
  color: #008080;
}

.mobile-logo img {
  width: 70px;
  margin-top: -25px;
}

/* ‍Disable background scroll */
body.no-scroll {
  overflow: hidden;
}


/* HERO SECTION */
.hero-section {
  background: url("https://images.unsplash.com/photo-1483004406427-6acb078d1f2d?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8N3x8d2F0ZXIlMjBiYWNrZ3JvdW5kfGVufDB8fDB8fHww")
  no-repeat center center/cover;
  padding: 25px 0;
  position: relative;
  z-index: 1;
}

/* DARK OVERLAY */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

.hero-badge {
  display: inline-block;
  background: #fff;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #3b6eb5;
}

.hero-title {
  font-size: 65px;
  font-weight: 700;
  color: #fff;
  margin: 25px 0;
  line-height: 1.1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 35px;
    }

.hero-btn-light{
  margin-top: 10px;
}
}
.hero-buttons .btn {
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 16px;
  margin-right: 15px;
  font-weight: 600;
}

.hero-btn-primary {
  background: #1c5cc4;
  color: #fff;
}

.hero-btn-primary:hover {
  background: #fff;
  color: #1c5cc4;
  border: 1px solid #1c5cc4;
}

.hero-btn-light {
  background: #fff;
  color: #1c5cc4;
}

.hero-btn-light:hover {
  background: #1c5cc4;
  color: #fff;
  border: 1px solid #1c5cc4;
}

.hero-img {
  width: 90%;
  max-width: 520px;
}

/* ===============================
   CUSTOM OWL NAV BUTTONS
   =============================== */

.hero-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}

.hero-prev, .hero-next {
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.hero-prev:hover, .hero-next:hover {
  background: #1c5cc4;
  color: #fff;
  transform: scale(1.1);
}

/* FEATURES */
.features-section h2 {
  font-size: 34px;
  color: #000;
}

/* Equal height boxes */
.feature-card {
  background: #00a9ac27;
  padding: 35px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  border: 1px solid transparent;
}

/* Hover */
.feature-card:hover {
  transform: translateY(-10px);
  border-color: #00a9ac;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Icon */
.icon-box {
  width: 75px;
  height: 75px;
  background: #ffffff;
  color: #00a9ac;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  margin: 0 auto 20px;
  transition: 0.3s ease;
}

.feature-card:hover .icon-box {
  background: #00a9ac;
  color: #fff;
}

/* Fade-up animation */
.feature-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* about section */
.product-box {
  transition: 0.3s ease;
}
.product-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.1);
}
.product-img {
  max-height: 320px;
  object-fit: contain;
}

/* CTA section code */
.cta-btn {
  transition: 0.3s ease;
}
.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 1.5rem rgba(0,0,0,0.15);
}
.cta-section {
  overflow: hidden;
}

/* products */
/* CATEGORY BUTTON STYLES */
.filter-buttons button {
    border: none;
    background: none;
    font-size: 20px;
    margin: 0 15px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.filter-buttons button.active,
.filter-buttons button:hover {
    color: #00a9ac;
}

/* Animation */
.portfolio-item { 
    display: block;
    transition: all 0.4s ease;
    opacity: 1;
}

.portfolio-item.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* PRODUCT CARD STYLE */
.styled-product-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease-in-out;
}

.styled-product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* SAME HEIGHT FOR ALL PRODUCT BOXES */
.product-fixed-height {

    display: flex;
    flex-direction: column;
}

/* PRODUCT IMAGE */
.product-img-box{
border-bottom: 1px solid #8080804d;
}
.product-img-box img {
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* TITLE */
.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

/* PRICE */
.price-box {
    font-size: 18px;
    text-align: left !important;
}

.new-price {
    color: #1ca35e;
    font-weight: 700;
    margin-right: 5px;
}

.old-price {
    color: #d9534f;
    text-decoration: line-through;
    font-weight: 600;
}

/* RATING */
.rating {
    font-size: 18px;
    
    font-weight: 600;
    text-align: left !important;
}

/* BUY BUTTON */
.buy-btn {
    display: inline-block;
    background: #1ca35e;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #168d4f;
}

/* services section */
/* Titles */
.service-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    color: #00a9ac;
    font-weight: 600;
    margin: 0;
}

.service-title {
    font-size: 25px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}
@media (max-width: 576px) {
    .service-title {
        font-size: 20px;
    }

    .filter-buttons button {
    margin: 0;
    font-size: 17px;
}
}
/* Card Wrapper */
.animated-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    transition: 0.4s ease;
    position: relative;
}

/* Hover Background Change */
.animated-card:hover {
    background: #fffcf6;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Image Animation */
.image-wrap {
    overflow: hidden;
}

.service-img {
  width: 100%;
    max-height: 300px;
    object-fit: cover;
    transition: 0.5s ease;
}

.animated-card:hover .service-img {
    transform: scale(1.1);
    filter: brightness(0.8) blur(2px);
}

/* Bottom Content */
.service-content {
    padding: 35px 25px 40px;
    text-align: center;
    position: relative;
}

/* Icon Badge */
.service-icon {
    width: 85px;
    height: 85px;
    background: #00a9ac;
    border-radius: 50%;
    color: #fff;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.4s ease;
}

/* Icon hover animation */
.animated-card:hover .service-icon {
    background: #00a9acd4;
    transform: translateX(-50%) rotate(10deg) scale(1.1);
}

/* Bouncing Icon (continuous animation) */
@keyframes bounceIcon {
    0% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -8px); }
    100% { transform: translate(-50%, 0); }
}

.bounce {
    animation: bounceIcon 2s infinite ease-in-out;
}

.service-content h3 {
    margin-top: 25px;
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Responsive for Mobile */
@media (max-width: 576px) {
    .service-content h3 {
        font-size: 18px;
        margin-top: 20px;
    }
}
.service-content p {
    color: #555;
    font-size: 16px;
    margin-top: 10px;
}

/* counter section */
.counter-section {
  padding: 60px 0;
  background: #f4f7fb;
}

.counter-box {
  background: #fff;
  padding: 35px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  transition: .3s ease;
}

.counter-box:hover {
  transform: translateY(-10px);
  background: #e8f9ff;
}

.counter-box .icon i {
  font-size: 42px;
  color: #1167b4;
  margin-bottom: 15px;
}

.counter-box h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.counter-box p {
  font-size: 17px;
  font-weight: 500;
  color: #555;
}

/* Responsive */
@media (max-width: 767px) {
  .counter-box {
    margin-bottom: 20px;
  }
}

/* why choise us */
/* MAIN SECTION */
.why-choose-us {
    padding: 70px 0;
}

 .why-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #f2f2f2;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: #00a9ac;
}

.why-choose-us h2 {
    margin: 20px 0 40px;
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
}

.why-choose-us .highlight {
    color: #1167b4;
}

/* GRID */
.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.choose-card {
    background: #f7f9fb;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #eaeaea;
}

.choose-card i {
    font-size: 32px;
    color: #1167b4;
    margin-bottom: 15px;
}

.choose-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.choose-card p {
    color: #555;
    line-height: 1.6;
}

/* BLUE CARD */
.choose-card-blue {
    background: #003c82;
    color: #fff;
}

.choose-card-blue i {
    color: #ffffff;
}

.choose-card-blue p {
    color: #d9e5f3;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background: #00e676;
    padding: 10px 20px;
    border-radius: 25px;
    margin-top: 20px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.cta-btn i {
    margin-left: 8px;
}

/* FULL WIDTH BOTTOM CARD */
.bottom-card {
    grid-column: span 3;
}

/* RESPONSIVE */
@media screen and (max-width: 992px) {
    .choose-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bottom-card {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    .why-choose-us h2 {
        font-size: 28px;
    }
    .choose-grid {
        grid-template-columns: 1fr;
    }
    .bottom-card {
        grid-column: span 1;
    }
}


/* ===============================
   BOOKING FORM MAIN WRAPPER 
==================================*/
.process-booking {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
  padding: 70px 8%;
  background: #f7fbff;
  flex-wrap: wrap;
}

/* ===============================
   LEFT SIDE (PROCESS STEPS)
==================================*/
.process-left {
  flex: 1;
  min-width: 320px;
  animation: slideLeft 1s ease both;
}

.process-left .tag {
  padding: 6px 18px;
  background: #e9f4ff;
  color: #00a9ac;
  border-radius: 20px;
  
  display: inline-block;
  margin-bottom: 15px;
}

.process-left h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Step Style */
.step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  transition: 0.4s;
  cursor: pointer;
}

.step:hover {
  transform: translateX(10px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #0051ff;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 i {
  color: #007bff;
  margin-right: 6px;
}

/* ===============================
   RIGHT SIDE FORM + BACKGROUND
==================================*/
.process-right {
  flex: 1;
  min-width: 350px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
}

/* Background Image Wrapper */
.form-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Black Overlay */
.form-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
}

/* Foreground Form */
.form-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 50px;
  color: #fff;
  animation: slideRight 1s ease both;
}

.process-right h2 {
  font-size: 32px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Inputs */
.booking-form input,
.booking-form select {
  padding: 16px;
  width: 100%;
  border-radius: 12px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  font-size: 16px;
  transition: 0.3s;
}

.booking-form input:focus,
.booking-form select:focus {
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

/* Button */
.booking-form button {
  padding: 16px;
  background: #0051ff;
  color: #fff;
  border-radius: 12px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.booking-form button:hover {
  background: #0039c7;
  transform: scale(1.05);
}

/* ===============================
   ANIMATIONS
==================================*/
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

.slide-up {
  opacity: 0;
  animation: slideUp 1s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideLeft {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideRight {
  0% { transform: translateX(50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* ===============================
   RESPONSIVE
==================================*/
@media(max-width: 900px) {
  .process-booking {
    flex-direction: column;
    padding: 10px;
  }

  .process-right {
    margin-top: 30px;
  }

  .process-left h2 {
    font-size: 32px;
  }

  .form-content {
    padding: 35px 25px;
  }
  .step-number {
  width: 50px;
  height: 40px;
  }
}

@media(max-width: 600px) {
  .process-left h2 {
    font-size: 28px;
  }

  .process-right h2 {
    font-size: 26px;
  }
}



/* testmonial */
/* MAIN WRAPPER */
.unique-testimonial-section {
    padding: 80px 7%;
    background: #eaf1f7;
    text-align: center;
}

/* TAG */
.unique-section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    border-radius: 20px;
    color: #00a9ac;
    margin-bottom: 15px;
}

/* TITLE */
.unique-section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* CARD */
.unique-testimonial-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 35px;
    position: relative;
    text-align: left;
    min-height: 350px;
    transition: 0.4s;
    border: 1px solid #eef2f6;
}


/* STARS */
.unique-stars {
    font-size: 20px;
    color: #ff9800;
    margin-bottom: 15px;
}

/* REVIEW TEXT */
.unique-review-text {
    font-size: 18px;
    line-height: 28px;
    color: #333;
    margin-bottom: 25px;
}

/* USER BOX */
.unique-user-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.unique-user-box img {
    max-width: 65px !important;
    height: 65px;
    border-radius: 50%;
}

.unique-user-box h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.unique-user-box span {
    font-size: 14px;
    color: #666;
}

/* QUOTE ICON */
.unique-quote-icon {
    width: 55px;
    height: 55px;
    background: #eaf4ff;
    border-radius: 50%;
    color: #007bff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -22px;
    right: 25px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .unique-section-title {
        font-size: 32px;
    }

    .unique-testimonial-card {
        padding: 25px;
    }
}









/* footer section */
.footer {
    background: #012654;
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo {
    max-width: 210px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.footer-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-box p, .footer-box li a {
    color: #dbe8ff;
    font-size: 15px;
    line-height: 1.6;
}

.footer-box ul {
    padding: 0;
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #00a9ac;
}

.footer-social a {
    color: #fff;
    background: rgba(255,255,255,0.2);
    margin-right: 10px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #00a9ac;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 14px;
}

.footer-bottom .brand {
    color: #00a9ac;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        margin-left: 20px;
    }

    .footer-social a {
        margin: 5px;
    }
}


/* about page code */
/* ABOUT HERO SECTION */
.about-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    display: flex;
    align-items: center;
    padding-left: 60px;
    background: url("https://images.unsplash.com/photo-1483004406427-6acb078d1f2d?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8N3x8d2F0ZXIlMjBiYWNrZ3JvdW5kfGVufDB8fDB8fHww") center/cover no-repeat;
    color: #fff;
}

/* Dark Overlay */
.about-hero .about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 29, 73, 0.9), rgba(0, 75, 135, 0.5));
    z-index: 1;
}

/* Content */
.about-hero .about-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.about-hero h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-hero .breadcrumb {
    font-size: 20px;
    opacity: 0.9;
}

.about-hero .breadcrumb span {
    margin: 0 6px;
}

/* ---------------------------- */
/* MOBILE RESPONSIVE */
/* ---------------------------- */

@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
        justify-content: center;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-hero .breadcrumb {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 32vh;
    }

    .about-hero h1 {
        font-size: 30px;
    }
}



/* ------------------ ABOUT MAIN ------------------ */
.about-main {
    padding: 80px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.about-badge {
    background: #eaf4ff;
    color: #0061ff;
    padding: 7px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}
.about-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
}
.about-actions {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 25px;
}
.btn-main {
    background: #001f80;
    padding: 15px 35px;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}
.btn-main:hover {
    background: #001f80;
}
.call-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.call-icon {
    width: 45px;
    height: 45px;
    background: #eaf4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-number {
    font-size: 20px;
    font-weight: 700;
}

/* Image */
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
}
.pure-badge {
    position: absolute;
    right: 20px;
    top: 40%;
    background: #1d2d7c;
    color: #fff;
    padding: 15px 22px;
    border-radius: 50px;
    font-weight: 700;
}


/* ------------------ VISION & MISSION ------------------ */
.vision-mission {
    padding: 80px 0;
    background: #f8fbff;
}
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.vm-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}
.vm-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}
.vm-card i {
    color: #1167b4;
    margin-right: 10px;
}
.vm-card:hover {
    transform: translateY(-6px);
}


/* ------------------ ANIMATIONS ------------------ */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 1s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}
@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 992px) {
    .about-grid,
    .vm-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-actions {
        justify-content: center;
    }
    .pure-badge {
        right: 50%;
        transform: translateX(50%);
    }
}
@media (max-width: 768px) {
    
    .about-text h2 {
        font-size: 22px;
    }

    .btn-main {
    padding: 11px 15px;
    }
}

/* contact us page code */
.contact-details {
        background-color: #f7f8fa;
    }

    .contact-card {
        background: #fff;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease-in-out;
    }

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .icon-box {
        background-color: #e0f7fa;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .contact-title {
        font-size: 22px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
    }

    .contact-info {
        font-size: 16px;
        color: #555;
    }

    .contact-card .icon-box i {
        color: #007bff;
        font-size: 28px;
    }

    /* Responsive styling */
    @media (max-width: 768px) {
        .contact-card {
            padding: 20px;
        }
    }

    /* map */
    .contact-form-map {
        background-color: #f7f8fb;
    }

    .map-container iframe {
        border-radius: 15px;
    }

    .contact-form-box {
        background-color: #fff;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .contact-form-box h2 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .contact-form .form-control {
        border-radius: 8px;
        padding: 14px;
        font-size: 16px;
    }

    .contact-form .form-control:focus {
        border-color: #007bff;
    }

    .contact-form .btn {
        background-color: #007bff;
        color: #fff;
        padding: 14px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .contact-form .btn:hover {
        background-color: #0056b3;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .contact-form-map .container {
            padding: 0 15px;
        }
    }

    /* Back to Top Button */
    .back-to-top-btn {
        position: fixed;
        bottom: 30px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 50%;

        width: 50px;
        height: 50px;
        font-size: 18px;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease-in-out;
        z-index: 1000;
        display: none; /* Hidden by default */
    }

    .back-to-top-btn:hover {
        background-color: #0056b3;
    }

    .back-to-top-btn i {
        font-size: 18px;
    }

    /* Show button when user scrolls down */
    .show {
        display: block;
    }