@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    margin: 0;
    font-family: Poppins;
    font-size: 14px;
    overflow-x: hidden;
    position: relative;
}
a{
    text-decoration: none;
}
header{
    position: relative;
    z-index: 100;
}
header a{
    color: #eee;
    margin-right: 40px;
}


/* Vertical & Horizontal Scrollbar */
::-webkit-scrollbar {
  width: 10px;    /* width of vertical scrollbar */
  height: 10px;   /* height of horizontal scrollbar */
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: #f0f0f0;  /* light gray background */
  border-radius: 5px;
}

/* Thumb (scroll handle) */
::-webkit-scrollbar-thumb {
  background: #085772;  /* dark blue, same as back-to-top */
  border-radius: 5px;
}

/* Thumb hover */
::-webkit-scrollbar-thumb:hover {
  background: #c1ebff;  /* lighter blue on hover */
}

/* For Firefox */
* {
  scrollbar-width: thin;                  /* make it thin */
  scrollbar-color: #085772 #f0f0f0;      /* thumb | track */
}



/* Back To Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0071ce;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: all 0.35s ease;
  z-index: 999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

#backToTop:hover #progressCircle {
  stroke: #009e4f; /* تغییر رنگ هنگام هاور */
}

#backToTop svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg); /* شروع دایره از بالا */
}

#backToTop #scrollPercent {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  z-index: 10;
  user-select: none;
}


/* navigationbar==========================
======================================== */

/* ===== Animation ===== */
.animate {
  animation: fadeSlide 1s ease-in-out;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SUB-HEADER ===== */
.sub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 120px;
  border-bottom: 2px solid #eee;
  background: #fdfdfd;
  flex-wrap: wrap;
}
.sub-header .left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.logo { width: 150px; height: auto; }
.tagline { font-size: 16px; font-weight: bold; color: #4e7dce; }

/* Contact Section */
.contact-icons {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-item .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  color: #fff; font-size: 18px;
  transition: 0.3s ease;
}
.icon.email { background-color: #05c4ff; }
.icon.whatsapp { background-color: #009e4f; }
.icon:hover { background: white; color: inherit; }
.contact-info { display: flex; flex-direction: column; }
.label { font-weight: 600; font-size: 13px; color: #000;}
.info { font-size: 12px; color: #333; font-weight: bold; }

/* ===== MAIN HEADER ===== */
.main-header {
  background: #c1ebff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}
.navbar {
  max-width: 1400px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  transition: max-height 0.4s ease;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  position: relative;
  padding: 5px;
}
.nav-links a:hover { color: #009e4f; }
.nav-links a::after{
  content: "";
  position: absolute;
  bottom: -3px; left: 0;
  width: 0%; height: 2px;
  background: #009e4f;
  transition: 0.3s ease;
}
.nav-links a:hover::after{ width: 100%; }

.nav-links a.active {
  color: #009e4f;
  font-weight: 600;
}
.nav-links a.active::after {
  width: 100%;
}
/* Social Media */
.social-icons {
  display: flex; gap: 10px;
}
.social-icons a {
  font-size: 16px;
  background: #003344;
  width: 35px; height: 35px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; transition: 0.3s ease;
}
.social-icons a:hover { background: #009e4f; transform: scale(1.2); }

/* ===== Mobile Menu ===== */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}
.mobile-size-whatsup{
  color: #003344;
  font-size: 34px;
  margin-left: 15px;
}
.mobileSize-logo{
  display: none;
}

@media (max-width: 992px) {
  .main-header{
    position: fixed;
    width: 100vw;
    height: 80px;
  }
  .navbar { flex-wrap: wrap;}
  .menu-toggle { 
    display: block;
    position: fixed !important;
    right: 10px;
    top: 20px;
  
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    background: #fff;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
  }
  .nav-links.show { max-height: 500px; }
  .nav-links li { text-align: center; padding: 10px 0; }
  .social-icons { margin: 10px auto; }
  .mobileSize-logo{
    display: block;
    width: 180px;
    margin-top: 10px;
  }
  .social-icons{
    display: none;
  }
  .sub-header{
    display: none;
  }
}

@media (max-width: 768px) {
  .sub-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 12px 20px;
  }
  .contact-icons {
    justify-content: center;
    gap: 20px;
  }
  .contact-item { flex-direction: column; align-items: center; }
  .tagline { margin-left: 0; font-size: 14px; }
}




/* CAROUSEL SLIDER ======================
==================================== */
/* Hero Section Slider */
.heroSwiper {
  width: 100%;
  height: 70vh; /* full viewport height */
  position: relative;
}

.heroSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.heroSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

/* Overlay for readability (optional) */
.heroSwiper::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.25); 
  z-index: 1;
}

/* Pagination Dots */
.heroSwiper .swiper-pagination {
  bottom: 30px !important;
  z-index: 2;
}

.heroSwiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
  width: 12px;
  height: 12px;
}

.heroSwiper .swiper-pagination-bullet-active {
  background: #ff5722;
  opacity: 1;
}

/* Navigation Arrows */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  color: #fff;
  z-index: 2;
  transition: transform 0.3s ease, color 0.3s ease;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  color: #ff5722;
  transform: scale(1.2);
}

@media screen and (max-width: 414px) {
  .heroSwiper {
  height: 40vh;
}
  
}



/* PACKAGES SECTION======================
===================================== */
/* Packages Section */
.packages {
  /* padding: 50px 50px; */
  text-align: center;
  position: relative;
  top: -100px;
}

.packages-title{
  margin-top: 120px;
}

.packages h3 {
  font-size: 34px;
  font-weight: 600;
  margin-top: 20px;
  color: #0071ce;
}

.packages h1 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Swiper Slide */
.packagesSwiper {
  padding: 20px !important;
}

.packagesSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  height: auto;
}

/* Package Card */
.package-card {
  background: #c1ebff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  max-width: 400px;
  width: 100%;
}

.package-card:hover {
  transform: translateY(-8px) scale(1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Image box */
.image-box {
  position: relative;
}

.image-box img {
  width: 100%;
  border-radius: 10px;
  display: block;
}



/* View Details link */
.details-link {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-weight: bold;
  color: #0071ce;
  text-decoration: none;
  background: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

.details-link:hover {
  background: #0071ce;
  color: #fff;
}

/* Title below image */
.package-title {
  margin-top: 15px;
  font-weight: bold;
  font-size: 17px;
  color: #000;
  text-align: start;
}


/* Navigation Arrows */
.packagesSwiper .swiper-button-next,
.packagesSwiper .swiper-button-prev {
  color: #009e4f;
  background-color: rgba(193,235,255,0.7);
  padding: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}




/* ABOUT CARVANA SECTION =====================
========================================= */
.carvana{
  background-color: #c1ebff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.col {
  flex: 1;
  min-width: 300px;
}

/* Left Column */
.left-col h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.left-col .main-title {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 10px;
}

.left-col .underline {
  width: 120px;
  height: 4px;
  background-color: #06a155;
  margin-bottom: 20px;
  border-radius: 2px;
}

.left-col .about-image {
  width: 100%;
  height: 480px;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.left-col .about-image:hover {
  transform: scale(1.01);
}

/* Right Column */
.right-col .about-text {
  text-align: justify;
  margin-bottom: 50px;
  line-height: 1.6;
}

.right-col .sub-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.right-col .sub-title span {
  color: #06a155;
  border-bottom: 4px solid #06a155;
  padding-bottom: 3px;
}

/* Icon Text Section */
.icon-text-section .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.icon-text-section .icon-col {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.icon-text-section .icon-col i {
  font-size: 30px;
  color: #06a155;
}

.icon-text-section .icon-col:hover {
  transform: translateY(-5px);
}

/* Button */
.about-btn {
  display: inline-block;
  font-weight: bold;
  text-decoration: underline;
  color: #06a155;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.about-btn:hover {
  color: #028a42;
}

/* Animations */
.left-col {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s forwards;
}

.right-col {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .row {
    flex-direction: column;
  }

  .left-col, .right-col {
    transform: none !important;
    opacity: 1 !important;
  }

  .left-col .main-title {
    font-size: 35px;
  }

  .right-col .sub-title {
    font-size: 30px;
  }
}

@media screen and (max-width: 414px) {
  .left-col .about-image {
  height: 350px;
}
  
}



/* TEAM MEMBER SECTION==========================
============================================= */
/* ============ TEAM SECTION ============ */
.team-section {
  padding: 60px 150px;
  background-color: #edf9ff;
}

/* Row Flex */
.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* Team Intro Row */
.team-intro {
  align-items: center;
  margin-bottom: 60px;
}

.team-left h2 {
  font-size: 44px;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-left h1 {
  font-size: 54px;
  font-weight: 700;
  color: #05c4ff;
  margin-top: -20px;
  text-decoration: underline;
}

.team-right {
  background-color: #f2f8f5;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
}

.team-right p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Team Members Grid */
.team-members {
  justify-content: space-between;
  gap: 20px;
}

.member {
  flex: 1 1 calc(25% - 20px);
  text-align: center;
  background-color: #fff;
  padding-block: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.member-img {
  width: 200px;
  height: 200px;
  margin: 0 auto 15px;
  overflow: hidden;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.member:hover .member-img img {
  transform: scale(1.1);
}

.member h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 5px;
}

.member span {
  font-size: 16px;
  color: #666;
}

/* ============ RESPONSIVE ============ */

/* Medium Devices */
@media (max-width: 992px) {
  .team-section {
    padding: 60px 50px;
    margin-top: 100px;
  }

  .team-left, .team-right {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .team-left h2 {
    font-size: 36px;
  }

  .team-left h1 {
    font-size: 44px;
  }

  .member {
    flex: 1 1 calc(50% - 20px);
    margin-bottom: 30px;
  }
}

/* Small Devices */
@media (max-width: 576px) {
  .team-section {
    padding: 40px 20px;
    margin-top: 50px;
  }

  .team-left h2 {
    font-size: 28px;
  }

  .team-left h1 {
    font-size: 32px;
  }

  .team-right p {
    font-size: 14px;
  }

  .member {
    flex: 1 1 100%;
  }

  .member-img {
    width: 150px;
    height: 150px;
  }

  .member h3 {
    font-size: 18px;
  }

  .member span {
    font-size: 14px;
  }
}




/* ============ CLIENTS SECTION ============ 
==========================================*/
.clients-section {
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  color: #fff;
}

/* Intro Content */
.clients-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  background-color: rgba(193,235,255,0.8);
  padding: 30px 20px;
  border-radius: 10px;
}

.clients-intro h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.clients-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

/* Swiper Client Cards */
.client-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.client-img {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

.client-card:hover .client-img img {
  transform: scale(1.1);
}

.country-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: red;
  color: #fff;
  padding: 5px 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
}

/* Card Content */
.client-content {
  padding: 20px;
}

.client-content h3 {
  background-color: green;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  border-top-right-radius: 50px;
  font-size: 18px;
  margin-bottom: 15px;
}

.client-content p {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.client-content .read-more {
  display: inline-block;
  padding: 8px 20px;
  background-color: #05c4ff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.client-content .read-more:hover {
  background-color: #029ecb;
}


/* Responsive */
@media (max-width: 992px) {
  .clients-intro h2 {
    font-size: 28px;
  }
  .clients-intro p {
    font-size: 15px;
  }

  .client-img {
    height: 200px;
  }

  .client-content h3 {
    font-size: 16px;
    padding: 8px 16px;
  }

  .client-content p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .clients-intro h2 {
    font-size: 24px;
  }
  .clients-intro p {
    font-size: 14px;
  }

  .client-img {
    height: 180px;
  }

  .client-content h3 {
    font-size: 14px;
    padding: 6px 12px;
    border-top-right-radius: 40px;
  }

  .client-content p {
    font-size: 12px;
  }

  .client-content .read-more {
    padding: 6px 16px;
    font-size: 13px;
  }
}



/* FOOTER SECTION============================
=========================================== */
/* ================= Footer ================= */
.footer {
  background: #003344;
  color: #fff;
  padding: 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.newsletter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.newsletter-left h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.newsletter-left p {
  font-size: 14px;
  color: #ccc;
}

.newsletter-form {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 550px;
  width: 100%;
}

.newsletter-form input {
  border: none;
  padding: 20px 15px;
  flex: 1;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  background: #029ecb;
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.newsletter-form button:hover {
  background: #056abc;
}

/* Footer middle */
.footer-middle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #0071ce;
  position: absolute;
  left: 0;
  bottom: -5px;
}

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

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

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

.footer-col ul li a:hover {
  color: #056abc;
  padding-left: 5px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-col p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #fff;
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #0071ce;
  border-color: #0071ce;
  transform: translateY(-3px);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 14px;
  color: #ccc;
}

.footer-bottom a {
  color: #056abc;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    margin-top: 15px;
    width: 100%;
  }
}


/* Page Header Section ====================================
======================================================= */
#page-header {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('img/page-header/page-header.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 0;
}


#page-header h2 {
    font-size: 54px;
    font-weight: 700;
}
#page-header p{
    font-size: 18px;
}
#page-header p a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

/* Packages Section second page  2-============================
==========================================================*/
.packages-section {
    padding: 50px 40px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Row */
.packages-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: #c1ebff;
    border-radius: 15px;
    margin-bottom: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.packages-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Left Content */
.packages-left {
    flex: 1 1 50%;
}

.packages-left h3 {
    font-size: 1.9rem;
    color: #0A3E60;
    margin-bottom: 15px;
}

.packages-left p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-link {
    color: #0A3E60;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.read-more-link:hover {
    color: #ff6600;
    padding-left: 5px;
}

/* Right Column */
.packages-right {
    flex: 1 1 50%;
    text-align: center;
}

.package-image {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    transition: transform 0.4s, box-shadow 0.4s;
}

.package-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Animation */
.fade-in-top {
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   RESPONSIVE DESIGN
================================*/

/* Tablets */
@media (max-width: 992px) {
    .packages-row {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .packages-left h3 {
        font-size: 1.6rem;
        text-align: center;
    }

    .packages-left p {
        text-align: center;
    }

    .read-more-link {
        display: inline-block;
        margin: auto;
    }
}

/* Mobiles */
@media (max-width: 600px) {

    .packages-section {
        padding: 20px;
    }

    .packages-row {
        padding: 20px;
    }

    .packages-left h3 {
        font-size: 1.4rem;
    }

    .packages-left p {
        font-size: 0.95rem;
    }
}

/* Very Small Phones */
@media (max-width: 400px) {
    .packages-section {
        padding: 15px;
    }

    .packages-row {
        padding: 15px;
    }

    .packages-left h3 {
        font-size: 1.25rem;
    }

    .packages-left p {
        font-size: 0.85rem;
    }
}


/* Services PAGE ======================================
================================================= */
/* =========================
/* =========================
   Services Section
========================= */

.services-section {
    padding: 70px 40px;
    background-color: #f5fbff;
}

.services-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.services-header h2 {
    font-size: 2.4rem;
    color: #0A3E60;
    margin-bottom: 10px;
}

.services-header p {
    color: #555;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Service Card */
.service-card {
    background: white;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Icon Styling */
.service-icon i {
    font-size: 45px;
    color: #0A3E60;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #0A3E60;
    margin-bottom: 12px;
}

.service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Animation */
.fade-in-top {
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInTop 1s forwards;
}

@keyframes fadeInTop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

/* Tablets */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .services-header h2 {
        font-size: 2rem;
    }
}

/* Phones */
@media (max-width: 600px) {
    .services-section {
        padding: 40px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon i {
        font-size: 38px;
    }
}




/* Memory Section===========================
========================================= */
.memory-section {
    position: relative;
    width: 100%;
    min-height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
    url('img/packages/herat-111.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    overflow: hidden;
    color: #fff;
}

/* Overlay (optional extra darkness) */
.memory-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
    z-index: 1;
}

/* Content */
.memory-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.memory-content h1 {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 30px;
}

/* Underline & Bold */
.underline-bold {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #04ae59;
}

/* Actions container */
.memory-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Button */
.memory-btn {
    background-color: #04ae59;
    color: #fff;
    padding: 12px 25px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
}

.memory-btn:hover {
    background-color: #03954f;
    transform: translateY(-3px);
}

/* Phone section */
.memory-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.3s;
}

.memory-contact:hover {
    background-color: rgba(255,255,255,0.2);
}

.phone-icon {
    background-color: #fff;
    color: #04ae59;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-number {
    font-weight: 500;
}

/* Fade-in animation from bottom */
.fade-in-bottom {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInBottom 1s forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .memory-content h1 {
        font-size: 32px;
    }

    .memory-actions {
        flex-direction: column;
    }

    .memory-btn, .memory-contact {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .memory-content h1 {
        font-size: 26px;
    }
}



/* ABOUT PAGE =================================
=========================================== */
.about-section {
  padding: 80px 130px;
  background-color: #f8f8f8;
  overflow: hidden;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: center; /* center content */
  flex-wrap: wrap;
  gap: 30px;
}

.about-left {
  flex: 1 1 100%;
  max-width: 600px;
  text-align: left;
}

.about-left h1 {
  font-size: 52px;
  color: #0A3E60;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.about-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.about-right {
  flex: 1 1 100%;
  max-width: 600px;
  text-align: center;
}

.about-right img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-right img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Fade-in Animations */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s forwards;
  animation-delay: 0.3s;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =================== RESPONSIVE =================== */

/* Laptops / small desktops */
@media (max-width: 1200px) {
  .about-section {
    padding: 60px 80px;
  }
  .about-left h1 {
    font-size: 42px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .about-section {
    padding: 50px 40px;
  }

  .about-row {
    flex-direction: column;
    align-items: center; /* center both columns */
    gap: 20px; /* smaller gap between text and image */
  }

  .about-left, .about-right {
    max-width: 100%;
    text-align: center;
  }

  .about-left h1 {
    font-size: 32px;
  }

  .about-left p {
    font-size: 15px;
  }

  .about-right img {
    max-width: 100%;
    margin: 0; /* remove extra margin */
  }
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 20px;
  }

  .about-left h1 {
    font-size: 28px;
  }

  .about-left p {
    font-size: 14px;
  }

  .about-right img {
    max-width: 100%;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .about-left h1 {
    font-size: 24px;
  }

  .about-left p {
    font-size: 13px;
    line-height: 1.6;
  }

  .about-right img {
    max-width: 100%;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .about-left h1 {
    font-size: 22px;
  }

  .about-left p {
    font-size: 12px;
  }

  .about-section {
    padding: 30px 15px;
  }
}



/* WHY US ABOUT PAGE ================================
================================================= */
.why-us {
  padding: 80px 120px;
  background: #c1ebff;
  text-align: center;
}

.why-us h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #0A3E60;
  animation: fadeUp 0.8s ease forwards;
}

.why-us h2 span {
  color: #056abc;
  text-decoration: underline;
}

.why-us p {
  font-size: 1rem;
  color: #000;
  margin-bottom: 50px;
  animation: fadeUp 1s ease forwards;
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Feature Box */
.feature-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay);
  width: 100%;
  max-width: 350px;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-box i {
  font-size: 2.5rem;
  color: #0A3E60;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-box:hover i {
  transform: scale(1.2);
  color: rgb(0,158,79);
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.feature-box p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== RESPONSIVE ==================== */

/* Laptops / small desktops */
@media (max-width: 1200px) {
  .why-us {
    padding: 60px 80px;
  }
  .why-us h2 {
    font-size: 2.2rem;
  }
  .why-us p {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .why-us {
    padding: 50px 40px;
  }
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  .feature-box {
    max-width: 100%;
    padding: 25px 15px;
  }
  .feature-box h3 {
    font-size: 1.2rem;
  }
  .feature-box p {
    font-size: 0.9rem;
  }
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
  .why-us {
    padding: 40px 20px;
  }
  .why-us h2 {
    font-size: 2rem;
  }
  .why-us p {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  .features-grid {
    grid-template-columns: 1fr; /* stack vertically */
    gap: 20px;
  }
  .feature-box {
    padding: 20px 15px;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .why-us h2 {
    font-size: 1.8rem;
  }
  .why-us p {
    font-size: 0.85rem;
  }
  .feature-box h3 {
    font-size: 1.1rem;
  }
  .feature-box p {
    font-size: 0.85rem;
  }
  .feature-box i {
    font-size: 2rem;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .why-us h2 {
    font-size: 1.6rem;
  }
  .why-us p {
    font-size: 0.8rem;
  }
  .feature-box h3 {
    font-size: 1rem;
  }
  .feature-box p {
    font-size: 0.8rem;
  }
  .feature-box i {
    font-size: 1.8rem;
  }
}





/* Reviews page seciton ======================
========================================== */
/* ================= TESTIMONIALS STYLES ================= */
.testimonials {
  background: linear-gradient(135deg, #f9f9f9, #eef5ff);
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: #222;
}

.section-title::after{
  content: "";
  width: 70px;
  height: 3px;
  background: #0077ff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  border-radius: 2px;
}

/* Container */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}

.testimonial-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* Image */
.testimonial-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.3s;
}
.testimonial-card:hover .testimonial-img {
  transform: scale(1.05);
}

/* Client Info */
.client-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 5px 0 2px;
  color: #222;
}
.client-role {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
}

/* Stars */
.stars {
  color: #ffb400;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* Text */
.testimonial-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
  min-height: 90px;
  font-style: italic;
}

/* Country */
.testimonial-country {
  font-size: 1rem;
  font-weight: 600;
  color: #0077ff;
  margin-bottom: 20px;
}

/* Read More Button */
.read-more {
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.9rem;
  color: #fff;
  background: #0077ff;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  font-weight: 500;
}
.read-more:hover {
  background: #005fcc;
  transform: scale(1.08);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== Responsive Hero Sections ==================== */
/* GALLERY PAGE ====================================== */
/* ===== HERO MAIN STYLES ===== */
.gallery-hero,
.reviews-hero,
.about-hero,
.services-hero,
.packages-hero,
.contact-hero,
.price-hero { /* Added price-hero */
  position: relative;
  height: 70vh;
  background: url("img/page-header/page-header.jpeg") center/cover no-repeat; /* Change image as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  animation: fadeInHero 1s ease forwards;
}

/* ===== OVERLAYS ===== */
.gallery-hero .overlay,
.reviews-hero .overlay,
.about-hero .overlay,
.services-hero .overlay,
.packages-hero .overlay,
.contact-hero .overlay,
.price-hero .overlay { /* Added price-hero */
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* ===== HERO CONTENT BOX ===== */
.gallery-content,
.reviews-content,
.about-content,
.services-content,
.packages-content,
.contact-content,
.price-content { /* Added price-content */
  position: absolute;
  bottom: 50px;
  left: 100px;
  z-index: 2;
  background: rgb(0, 51, 68);
  padding: 30px 50px;
  border-radius: 12px;
  text-align: center;
  max-width: max-content;
  width: 90%;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUpContent 1s ease forwards;
  animation-delay: 0.6s;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* TEXT STYLES */
.gallery-content h1,
.reviews-content h1,
.about-content h1,
.services-content h1,
.packages-content h1,
.contact-content h1,
.price-content h1 { /* Added price-content */
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
}

.gallery-content h1 span,
.reviews-content h1 span,
.about-content h1 span,
.services-content h1 span,
.packages-content h1 span,
.contact-content h1 span,
.price-content h1 span { /* Added price-content */
  font-size: 4rem;
  color: #056abc;
  text-decoration: underline;
}

.gallery-content p,
.reviews-content p,
.about-content p,
.services-content p,
.packages-content p,
.contact-content p,
.price-content p { /* Added price-content */
  font-size: 1.1rem;
  color: #fff;
}

/* Hover effect */
.gallery-content:hover,
.reviews-content:hover,
.about-content:hover,
.services-content:hover,
.packages-content:hover,
.contact-content:hover,
.price-content:hover { /* Added price-content */
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== Animations ===== */
@keyframes fadeInHero { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUpContent { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); } }

/* ===================================================
   ============= FULL RESPONSIVE SECTION =============
   =================================================== */

/* STILL LEFT-SIDE UNTIL 768PX */
@media (max-width: 992px) {
  .gallery-content,
  .reviews-content,
  .about-content,
  .services-content,
  .packages-content,
  .contact-content,
  .price-content { width: 80%; }

  .gallery-content h1,
  .reviews-content h1,
  .about-content h1,
  .services-content h1,
  .packages-content h1,
  .contact-content h1,
  .price-content h1 { font-size: 2.5rem; }

  .gallery-content h1 span,
  .reviews-content h1 span,
  .about-content h1 span,
  .services-content h1 span,
  .packages-content h1 span,
  .contact-content h1 span,
  .price-content h1 span { font-size: 3rem; }

  .gallery-content p,
  .reviews-content p,
  .about-content p,
  .services-content p,
  .packages-content p,
  .contact-content p,
  .price-content p { font-size: 1rem; }
}

/* ===== CENTER STARTS HERE (Tablets) ===== */
@media (max-width: 768px) {
  .gallery-content,
  .reviews-content,
  .about-content,
  .services-content,
  .packages-content,
  .contact-content,
  .price-content {
    left: 5%;
    transform: translateX(-50%);
    bottom: 30px;
    width: 90%;
    padding: 20px 25px;
    text-align: center;
  }

  .gallery-content h1,
  .reviews-content h1,
  .about-content h1,
  .services-content h1,
  .packages-content h1,
  .contact-content h1,
  .price-content h1 { font-size: 2rem; }

  .gallery-content h1 span,
  .reviews-content h1 span,
  .about-content h1 span,
  .services-content h1 span,
  .packages-content h1 span,
  .contact-content h1 span,
  .price-content h1 span { font-size: 2.4rem; }

  .gallery-hero,
  .reviews-hero,
  .about-hero,
  .services-hero,
  .packages-hero,
  .contact-hero,
  .price-hero { height: 50vh; }
}

/* ===== SMALL PHONES ===== */
@media (max-width: 480px) {
  .gallery-content,
  .reviews-content,
  .about-content,
  .services-content,
  .packages-content,
  .contact-content,
  .price-content {
    padding: 15px 18px;
    width: 95%;
    bottom: 20px;
  }

  .gallery-content h1,
  .reviews-content h1,
  .about-content h1,
  .services-content h1,
  .packages-content h1,
  .contact-content h1,
  .price-content h1 { font-size: 1.4rem; }

  .gallery-content h1 span,
  .reviews-content h1 span,
  .about-content h1 span,
  .services-content h1 span,
  .packages-content h1 span,
  .contact-content h1 span,
  .price-content h1 span { font-size: 1.8rem; }

  .gallery-content p,
  .reviews-content p,
  .about-content p,
  .services-content p,
  .packages-content p,
  .contact-content p,
  .price-content p { font-size: 0.85rem; }

  .gallery-hero,
  .reviews-hero,
  .about-hero,
  .services-hero,
  .packages-hero,
  .contact-hero,
  .price-hero { height: 45vh; }
}




/* gallary section====================
================================== */
/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 60px 120px;
  background: #c1ebff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Grid layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

/* Gallery items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeZoom 0.8s ease forwards;
}

.gallery-item:nth-child(odd) { animation-delay: 0.2s; }
.gallery-item:nth-child(even) { animation-delay: 0.4s; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover effect */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Animations */
@keyframes fadeZoom {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .section-subtitle { font-size: 1rem; }
}




/* CONTACT PAGE STYLE ===============================
================================================== */
/* ===== CONTACT HERO ===== */
.contact-hero {
  position: relative;
  height: 65vh;
  background: url("img/contact/contact-header-.jpeg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  animation: fadeInHero 1s ease forwards;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 1;
}

.contact-hero-content {
  position: absolute;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUpContent 1s ease forwards;
  animation-delay: 0.5s;
  bottom: 50px;
  left: 100px;
  background-color: rgba(0,51,68,0.9);
  padding: 10px 80px 30px;
  border-radius: 30px;
}

.contact-hero-content h1 {
  font-size: 3rem;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.contact-hero-content h1 span{
  color: #005fcc;
  font-size: 4rem;
  text-decoration: underline;
}

.contact-hero-content p{
  color: #fff;
  font-size: 16px;
  margin-top: -20px;
}




/* Animations */
@keyframes fadeInHero {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUpContent {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero { height: 50vh; }
  .contact-hero-content h1 { font-size: 2rem; }
}


/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 120px;
  background: #c1ebff;
  animation: slideUp 1s ease forwards;
  opacity: 0;
}

/* Layout */
.contact-row {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 320px;
}

/* Left Column */
.contact-left h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #222;
  line-height: 1.2;
}

.contact-left h2 span {
  color: #005fcc;
  text-decoration: underline;
}

.contact-left p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #333;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  width: 100%;
  display: block;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #8ac1de;
  outline: none;
}

/* Button */
.contact-form button {
  background: #003344;
  color: #fff;
  font-size: 1rem;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #056abc;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Right Column */
.contact-right img {
  max-width: 100%;
  height: auto;                  /* FIXED RESPONSIVENESS */
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.contact-right img:hover {
  transform: scale(1.02);
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* Laptops (max-width: 1100px) */
@media (max-width: 1100px) {
  .contact-section {
    padding: 70px 80px;
  }

  .contact-left h2 {
    font-size: 2.4rem;
  }
}

/* Tablets (max-width: 900px) */
@media (max-width: 900px) {
  .contact-row {
    flex-direction: column;
    text-align: center;
  }

  .contact-left {
    order: 1;
  }

  .contact-right {
    order: 2;
  }

  .contact-left h2 {
    font-size: 2.2rem;
  }

  .contact-right img {
    width: 90%;
    margin-top: 25px;
  }
}

/* Mobile Phones (max-width: 600px) */
@media (max-width: 600px) {
  .contact-section {
    padding: 50px 25px;
  }

  .contact-left h2 {
    font-size: 1.9rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .contact-form button {
    padding: 12px;
    font-size: 0.95rem;
  }

  .contact-right img {
    width: 100%;
  }
}

/* Extra Small Devices (max-width: 400px) */
@media (max-width: 400px) {
  .contact-left h2 {
    font-size: 1.7rem;
  }

  .contact-form {
    gap: 12px;
  }
}


/* ===== LOCATION SECTION ===== */
.location-section {
  opacity: 0;
  animation: slideUp 1s ease forwards;
  animation-delay: 1s;
}

.location-map iframe {
  width: 100%;
  border: none;
  display: block;
}

/* Animations */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .contact-row {
    flex-direction: column;
    gap: 30px;
  }
  .contact-left h2 {
    font-size: 1.6rem;
  }
}






/* ===== CONTACT US TODAY ===== */
.contact-today {
  padding: 70px 20px;
  background: #c1ebff;
  text-align: center;
  animation: slideUp 1s ease forwards;
  opacity: 0;
}

.contact-today-title {
  font-size: 3.5rem;
  margin-bottom: 40px;
  color: #222;
  position: relative;
  opacity: 0;
  animation: slideUp 1s ease forwards;
  animation-delay: 0.2s;
}

.contact-today-title span {
  color: #0077ff;
  text-decoration: underline;
}

.contact-today-row {
  display: flex;
  flex-wrap: wrap;
  gap: 130px;
  justify-content: center;
}

/* Columns */
.contact-today-col {
  position: relative;
  width: 100%;
  max-width: 500px; /* keeps cards centered */
  margin: 0 auto;   /* center on all screens */
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  animation: slideUp 1s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
  transition: transform 0.4s ease;
}

.contact-today-col:hover {
  transform: translateY(-10px);
}

.contact-today-col .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}

.contact-today-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px 0;
  color: #fff;
  text-align: center;
}

/* Icon */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.3s ease;
}

.icon-box:hover {
  background: #00c16e;
  border-color: #00c16e;
  transform: scale(1.1);
}

/* Text */
.contact-today-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-today-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #eee;
}

/* Phone / Email Box */
.phone-box {
  background: #0A3E60;
  padding: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  color: #fff;
  transition: background 0.3s ease;
  margin-bottom: 30px;
}

.phone-box:hover {
  background: #00c16e;
}

/* Animations */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-today-row {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .contact-today-title { 
    font-size: 2rem; 
  }

  .contact-today-row {
    flex-direction: column;
    gap: 40px;
    align-items: center; /* centers columns */
  }

  .contact-today-col {
    max-width: 380px;
  }
}

@media (max-width: 480px) {
  .contact-today-col {
    max-width: 100%;
  }

  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .phone-box {
    font-size: 1rem;
  }
}
