/* ===== NAVBAR ===== */
.navbar {
  background: linear-gradient(135deg, #034295 0%, #0056d4 100%);
}
#navbarmenu {
  width: 40%;
}

#navbarmenu img {
  width: 50%;
  height: 50%;
}

/* ===== TESTIMONIAL PAGE ===== */
.testimonial-page {
  background: #f5f7fb;
  color: #17324d;
  overflow: hidden;
}

.testimonial-hero {
  min-height: 520px;
  padding: 90px min(6vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 40px;
  background:
   /* linear-gradient(105deg, rgba(3, 66, 149, 0.92), rgba(3, 66, 149, 0.72)), */
    url("image_45/Kashmir.jpg") center/cover;
  color: #fff;
   
}


.testimonial-hero__content {
  max-width: 720px;
}

.testimonial-kicker {
  margin: 0 0 10px;
  color: #ffaa02;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

.testimonial-hero p {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.8;
}

.testimonial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.testimonial-primary-btn,
.testimonial-secondary-btn {
  min-height: 46px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.testimonial-primary-btn {
  background: #ffaa02;
  color: #034295;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.testimonial-secondary-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.testimonial-primary-btn:hover,
.testimonial-secondary-btn:hover {
  transform: translateY(-2px);
}

.testimonial-score-card {
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #17324d;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.testimonial-score-card span {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: #034295;
}

.testimonial-stars {
  margin: 10px 0;
  color: #ffaa02;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.testimonial-score-card p {
  margin: 0;
  color: #5d6b7a;
  font-weight: 600;
}

.testimonial-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 20px 0;
}

.testimonial-section:last-child {
  padding-bottom: 80px;
}

.testimonial-section-head {
  margin-bottom: 24px;
}

.testimonial-section-head h2 {
  margin: 0;
  color: #034295;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 800;
}

.testimonial-video-carousel {
  border-radius: 8px;
  overflow: hidden;
  background: #101820;
  box-shadow: 0 18px 45px rgba(3, 66, 149, 0.18);
}

.testimonial-video-carousel .carousel-item {
  height: min(66vw, 620px);
  min-height: 320px;
  background: #101820;
}

.testimonial-video-carousel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-video-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: min(520px, calc(100% - 48px));
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(3, 66, 149, 0.82);
  color: #fff;
  font-weight: 700;
}

.testimonial-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-photo-grid figure {
  position: relative;
  min-height: 250px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #dfe7f0;
  box-shadow: 0 12px 26px rgba(3, 66, 149, 0.1);
}

.testimonial-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.testimonial-photo-grid figure:hover img {
  transform: scale(1.05);
}

.testimonial-photo-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(255, 170, 2, 0.95);
  color: #034295;
  font-weight: 800;
}

.testimonial-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-review-card {
  padding: 24px;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(3, 66, 149, 0.08);
}

.testimonial-review-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-review-top span {
  color: #034295;
  font-weight: 800;
}

.testimonial-review-top strong {
  color: #ffaa02;
  letter-spacing: 0.06em;
}

.testimonial-review-card p {
  min-height: 100px;
  margin: 0 0 20px;
  color: #5d6b7a;
  line-height: 1.8;
}

.testimonial-review-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #edf1f5;
  padding-top: 18px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #034295;
  color: #ffaa02;
  font-weight: 800;
}

.testimonial-review-profile h3 {
  margin: 0;
  color: #17324d;
  font-size: 1rem;
  font-weight: 800;
}

.testimonial-review-profile small {
  color: #6b7a89;
}

.testimonial-form-section {
  max-width: 980px;
}

.testimonial-review-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(3, 66, 149, 0.1);
}

.testimonial-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-review-form label {
  display: grid;
  gap: 8px;
  color: #17324d;
  font-weight: 800;
}

.testimonial-review-form input,
.testimonial-review-form select,
.testimonial-review-form textarea {
  width: 100%;
  border: 1px solid #d4deea;
  border-radius: 8px;
  padding: 12px 14px;
  color: #17324d;
  font: inherit;
  font-weight: 500;
  outline: none;
}

.testimonial-review-form textarea {
  resize: vertical;
}

.testimonial-review-form input:focus,
.testimonial-review-form select:focus,
.testimonial-review-form textarea:focus {
  border-color: #034295;
  box-shadow: 0 0 0 3px rgba(3, 66, 149, 0.12);
}

.testimonial-review-form .testimonial-primary-btn {
  width: fit-content;
  border: none;
}

.testimonial-form-note {
  min-height: 24px;
  margin: 0;
  color: #0c7a43;
  font-weight: 700;
}

@media (max-width: 900px) {
  .testimonial-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 68px 24px;
  }

  .testimonial-score-card {
    max-width: 360px;
  }

  .testimonial-photo-grid,
  .testimonial-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .testimonial-hero {
    padding: 54px 18px;
  }

  .testimonial-actions {
    display: grid;
  }

  .testimonial-section {
    padding-top: 52px;
  }

  .testimonial-video-carousel .carousel-item {
    min-height: 260px;
  }

  .testimonial-video-caption {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    font-size: 0.86rem;
  }

  .testimonial-photo-grid,
  .testimonial-review-grid,
  .testimonial-form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-review-form {
    padding: 18px;
  }
}


/* ===== NAV LINKS ===== */
.navbar-nav .nav-link {
  color: #ffaa02 !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin: 0 0.25rem;
  text-transform: uppercase;
}

.navbar a {
  font-size: large;
  margin-left: 10px;
}

.navbar-nav .nav-link:hover {
  background: #ffaa02;
  color: #034295 !important;
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 1rem;
  min-width: 500px;
}

.dropdown-item {
  border: none !important;
  padding: 0;
}

/* ===== MEGA MENU SECTIONS ===== */
.menu-section {
  margin-bottom: 1.5rem;
}

.menu-section h6 {
  color: #034295 !important;
  margin-bottom: 1rem;
  border-bottom: 3px solid #ffaa02;
  padding-bottom: 0.5rem;
}

/* ===== REGION ===== */
.region h6 {
  color: #034295 !important;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #ffaa02;
  padding-bottom: 0.25rem;
}

.region ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.region ul li {
  margin-bottom: 0.25rem;
}

.region ul li a {
  color: #666;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 0.25rem 0;
  display: block;
}

.region ul li a:hover {
  color: #034295;
  background: #f8f9fa;
  padding-left: 0.5rem;
}

/* ===== CUSTOM DROPDOWN (Travel Support) ===== */
.nav-custom-item {
  position: relative;
  list-style: none;
}

.custom-dropdown-menu {
  display: none;
  position: absolute;
  top: 105%;
  left: 0%;
  min-width: 160px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.custom-dropdown-menu li {
  list-style: none;
}

.custom-dropdown-link {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.custom-dropdown-link:hover {
  background-color: #e9ecef;

  color: #034295;
}

/* Show dropdown on hover */
.custom-dropdown:hover .custom-dropdown-menu {
  display: block;
}
/* Group dropdown */
.custom-group-dropdown {
  display: none;
  position: absolute;
  background: white;
 border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.custom-group-dropdown li a{
    font-size: 0.8rem;
    padding-bottom: 10px;
    color: #666;

}
.custom-group-dropdown li a:hover{
  color: #034295;
}

.nav-item.dropdown.active .custom-group-dropdown {
  display: block;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  #navbarmenu {
    width: 60%;
  }

  #navbarmenu img {
    width: 100%;
  }

  .navbar button {
    border: none;
    background-color: #ffaa02;
  }

  .navbar button:hover {
    background: #034295;
  }

  .dropdown-menu {
    padding: 1rem;
    min-width: 200px !important;
  }

  .region {
    margin-bottom: 1rem;
  }

  /* Custom dropdown mobile */
  .nav-custom-item {
    width: 100%;
  }

  .custom-dropdown-menu {
    position: relative;
    border: none;
    box-shadow: none;
    background-color: #e9ecef;
  }

  .custom-dropdown.active .custom-dropdown-menu {
    display: block;
  }

  .custom-dropdown-link {
    padding-left: 20px;
  }
}

/* ===== TABLET ===== */
@media (min-width: 600px) and (max-width: 1280px) {

  #navbarmenu {
    width: 30%;
  }

  #navbarmenu img {
    width: 100%;
  }

  .navbar-nav .nav-link {
    font-size: medium;
    padding: 0.25rem 0.5rem;
  }

  .navbar a {
    font-size: small;
  }
}

/*  */

 /* Footer Styles */
.footer {
  background: linear-gradient(135deg, #034295 0%, #034295 100%);
  color:#ffbe42;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #e74c3c, #f39c12, #27ae60);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.footer-section {
  padding: 1rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section h3 i {
  font-size: 1rem;
}

.footer-section p {
  margin-bottom: 1rem;
  color: #ffbe42;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #ffbe42;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: white;
  transform: translateX(5px);
}

.contact-item i {
  color:#ffbe42;
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ffbe42;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.3rem 0;
}

.footer-links a:hover {
  color: white;
  transform: translateX(8px);
}

.footer-links a i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  margin-bottom: 1.5rem;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.email-input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.9rem;
  outline: none;
  backdrop-filter: blur(10px);
}

.email-input::placeholder {
  color: white;
}

.subscribe-btn {
  padding: 0.8rem 1.2rem;
  background: linear-gradient(45deg, #ffbe42,  #034295);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-btn:hover {
  background: linear-gradient(45deg,  #034295, #ffbe42);
  transform: scale(1.05);
}

.subscribe-btn i {
  font-size: 1rem;
}

/* Social Media */
.social-media h4 {
  color: #ecf0f1;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-link i {
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* Social Media Colors */
.facebook {
  background: rgba(59, 89, 152, 0.8);
}
.facebook::before {
  background: #3b5998;
}

.instagram {
  background: linear-gradient(45deg, rgba(225, 48, 108, 0.8), rgba(255, 204, 119, 0.8));
}
.instagram::before {
  background: linear-gradient(45deg, #e1306c, #ffcc77);
}

.whatsapp {
  background: rgba(37, 211, 102, 0.8);
}
.whatsapp::before {
  background: #25d366;
}

.youtube {
  background: rgba(255, 0, 0, 0.8);
}
.youtube::before {
  background: #ff0000;
}

.twitter {
  background: rgba(29, 161, 242, 0.8);
}
.twitter::before {
  background: #1da1f2;
}

/* Footer Bottom */
.footer-bottom {
  background: #034295;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color:white;
  font-size: 0.9rem;
  margin: 0;
}

.highlight {
  color: #ffbe42;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .content h1 {
    font-size: 2rem;
  }
  
  .content p {
    font-size: 1rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 1.5rem 0.5rem;
  }
  
  .footer-section {
    padding: 0.5rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link i {
    font-size: 1rem;
  }
}
/*  */

.footer-section {
  animation: slideInUp 0.6s ease-out forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }


/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #f59e0b;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Popup Background */
    .location-popup {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
      justify-content: center;
      align-items: center;
    }

    /* Popup Box */
    .location-popup-box {
      background-color: white;
      padding: 20px 30px;
      border-radius: 8px;
      text-align: center;
      color: navy;
      max-width: 400px;
    }

    .location-close-btn {
      color: #ffaa02;
      font-size: 20px;
      float: right;
      cursor: pointer;
    }

    .location-close-btn:hover {
      color: #003399;
    }
    #locationText{
      color: #034295;
    }


:root {
    --primary-color: #034295;
    --secondary-color: #ffaa02;
    --accent-color: #00d4aa;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #0052CC);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #ff8c00);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    min-height: 100vh;
    color: var(--text-dark);
}

/* Side Button */
.testimonial-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 22px 12px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.2px;
    border: none;
    font-family: inherit;
    box-shadow: -4px 0 16px rgba(255,170,2,0.35);
    transition: var(--transition);
    z-index: 9999;
}

.testimonial-btn:hover {
    padding-right: 16px;
    box-shadow: -6px 0 20px rgba(255,170,2,0.45);
}
   