    :root {
      --primary: #ff6b35;
      --primary-dark: #e85a2a;
      --secondary: #1a1a2e;
      --accent: #16213e;
      --gold: #f7b731;
      --gradient: linear-gradient(135deg, #ff6b35 0%, #f7b731 100%);
      --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }
    a:hover{
        text-decoration: none;
    }

    .Privacy_Policy p{
         color: #A6A6A6;
         font-size: 15px;
    }
    .teamColor{
        color: var(--primary)
    }
    
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Poppins', sans-serif; overflow-x: hidden; }
    
    /* Smooth Scrolling */
    html { scroll-behavior: smooth; }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar { width: 10px; }
    ::-webkit-scrollbar-track { background: #f1f1f1; }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
    
    /* Navbar */
    .navbar {
      background: rgba(26, 26, 46, 0.95) !important;
      backdrop-filter: blur(10px);
      padding: 15px 0;
      transition: all 0.3s ease;
    }
    .navbar.scrolled {
      padding: 10px 0;
      box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    }
    .navbar-brand {
      padding: 0;
      margin-left: 1rem;
    }
    .navbar-toggler{
          margin-right: 1rem;
    }
    .navbar-brand img {
      height: 50px;
      width: auto;
      max-width: 180px;
      object-fit: contain;
    }

    .nav-link {
      font-weight: 500;
      margin: 0 10px;
      position: relative;
      transition: all 0.3s ease;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }
    .nav-link:hover::after { width: 100%; }
    .nav-cta {
      background: var(--gradient);
      padding: 10px 25px !important;
      border-radius: 50px;
      color: #fff !important;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .nav-cta:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    }
    .nav-cta::after { display: none; }

    /* Page Loader */
    .page-loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 99999;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .page-loader.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    .loader-content {
      text-align: center;
      position: relative;
    }

    /* Globe Animation */
    .globe-container {
      position: relative;
      width: 150px;
      height: 150px;
      margin: 0 auto 30px;
    }

    .globe {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #006699 100%);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 
        inset -20px -20px 40px rgba(0,0,0,0.3),
        inset 10px 10px 20px rgba(255,255,255,0.2),
        0 0 60px rgba(0, 212, 255, 0.4);
      overflow: hidden;
    }

    .globe::before {
      content: '';
      position: absolute;
      width: 200%;
      height: 100%;
      background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 30px,
        rgba(255,255,255,0.1) 30px,
        rgba(255,255,255,0.1) 32px
      );
      animation: globeSpin 3s linear infinite;
    }

    .globe::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 200%;
      top: -50%;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 25px,
        rgba(255,255,255,0.08) 25px,
        rgba(255,255,255,0.08) 27px
      );
    }

    @keyframes globeSpin {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Airplane Animation */
    .airplane {
      position: absolute;
      font-size: 28px;
      color: #fff;
      filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
      animation: flyAround 3s ease-in-out infinite;
      z-index: 10;
    }

    @keyframes flyAround {
      0% {
        top: 50%;
        left: -20px;
        transform: translate(0, -50%) rotate(0deg) scale(0.8);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      25% {
        top: 20%;
        left: 50%;
        transform: translate(-50%, 0) rotate(15deg) scale(1);
      }
      50% {
        top: 50%;
        left: calc(100% + 20px);
        transform: translate(-100%, -50%) rotate(0deg) scale(0.8);
        opacity: 1;
      }
      51% {
        opacity: 0;
      }
      52% {
        top: 80%;
        left: calc(100% + 20px);
        transform: translate(0, 0) rotate(180deg) scale(0.8);
      }
      53% {
        opacity: 1;
      }
      75% {
        top: 80%;
        left: 50%;
        transform: translate(-50%, 0) rotate(195deg) scale(1);
      }
      100% {
        top: 50%;
        left: -20px;
        transform: translate(0, -50%) rotate(180deg) scale(0.8);
        opacity: 0;
      }
    }

    /* Orbit Ring */
    .orbit-ring {
      position: absolute;
      width: 150px;
      height: 150px;
      border: 2px dashed rgba(255,255,255,0.2);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotateX(70deg);
      animation: orbitPulse 2s ease-in-out infinite;
    }

    @keyframes orbitPulse {
      0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) rotateX(70deg) scale(1); }
      50% { opacity: 0.6; transform: translate(-50%, -50%) rotateX(70deg) scale(1.05); }
    }

    /* Loading Text */
    .loader-text {
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 15px;
      letter-spacing: 2px;
    }

    .loader-text span {
      display: inline-block;
      animation: textWave 1.5s ease-in-out infinite;
    }

    .loader-text span:nth-child(1) { animation-delay: 0s; }
    .loader-text span:nth-child(2) { animation-delay: 0.1s; }
    .loader-text span:nth-child(3) { animation-delay: 0.2s; }
    .loader-text span:nth-child(4) { animation-delay: 0.3s; }
    .loader-text span:nth-child(5) { animation-delay: 0.4s; }
    .loader-text span:nth-child(6) { animation-delay: 0.5s; }
    .loader-text span:nth-child(7) { animation-delay: 0.6s; }
    .loader-text span:nth-child(8) { animation-delay: 0.7s; }
    .loader-text span:nth-child(9) { animation-delay: 0.8s; }

    @keyframes textWave {
      0%, 100% { transform: translateY(0); color: #fff; }
      50% { transform: translateY(-10px); color: #00d4ff; }
    }

    /* Progress Bar */
    .loader-progress {
      width: 200px;
      height: 4px;
      background: rgba(255,255,255,0.2);
      border-radius: 2px;
      margin: 0 auto;
      overflow: hidden;
    }

    .loader-progress-bar {
      width: 0%;
      height: 100%;
      background: linear-gradient(90deg, #00d4ff, #ff6b6b, #ffd93d, #00d4ff);
      background-size: 300% 100%;
      border-radius: 2px;
      animation: progressGradient 2s ease-in-out infinite, progressLoad 2.5s ease-out forwards;
    }

    @keyframes progressGradient {
      0% { background-position: 0% 50%; }
      100% { background-position: 300% 50%; }
    }

    @keyframes progressLoad {
      0% { width: 0%; }
      100% { width: 100%; }
    }

    /* Floating Elements */
    .floating-icons {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .floating-icon {
      position: absolute;
      font-size: 20px;
      opacity: 0.3;
      animation: floatUp 4s ease-in-out infinite;
    }

    .floating-icon:nth-child(1) { left: 10%; top: 80%; animation-delay: 0s; color: #ff6b6b; }
    .floating-icon:nth-child(2) { left: 25%; top: 85%; animation-delay: 0.5s; color: #ffd93d; }
    .floating-icon:nth-child(3) { left: 40%; top: 90%; animation-delay: 1s; color: #00d4ff; }
    .floating-icon:nth-child(4) { left: 55%; top: 82%; animation-delay: 1.5s; color: #ff6b6b; }
    .floating-icon:nth-child(5) { left: 70%; top: 88%; animation-delay: 2s; color: #ffd93d; }
    .floating-icon:nth-child(6) { left: 85%; top: 85%; animation-delay: 2.5s; color: #00d4ff; }

    @keyframes floatUp {
      0% { transform: translateY(0) rotate(0deg); opacity: 0; }
      20% { opacity: 0.4; }
      80% { opacity: 0.4; }
      100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
    }

    /* Tagline */
    .loader-tagline {
      color: rgba(255,255,255,0.6);
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      margin-top: 20px;
      letter-spacing: 1px;
    }
    
    /* Hero Section */
    .hero {
      min-height: 80vh;
      background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.85) 100%),
                  url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920') center/cover no-repeat fixed;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 60px 0 80px;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
      animation: pulse 4s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.1); opacity: 0.8; }
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(255, 107, 53, 0.2);
      border: 1px solid var(--primary);
      padding: 8px 20px;
      border-radius: 50px;
      color: var(--primary);
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 20px;
      animation: fadeInUp 0.8s ease;
    }
    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 20px;
      animation: fadeInUp 0.8s ease 0.2s both;
    }
    .hero h1 span {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: 1.2rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 30px;
      animation: fadeInUp 0.8s ease 0.4s both;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    /* Duration Tabs */
    .duration-tabs {
      display: flex;
      gap: 15px;
      margin-bottom: 30px;
      animation: fadeInUp 0.8s ease 0.6s both;
    }
    .duration-tab {
      background: rgba(255,255,255,0.1);
      border: 2px solid rgba(255,255,255,0.2);
      padding: 15px 30px;
      border-radius: 15px;
      color: #fff;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .duration-tab:hover, .duration-tab.active {
      background: var(--gradient);
      border-color: var(--primary);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }
    .duration-tab span {
      display: block;
          font-size: 0.7rem;
      opacity: 0.8;
      font-weight: 400;
    }

       .duration-tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .duration-tab {
      flex: 1 1 calc(25% - 10px);
      min-width: 100px;
      max-width: 140px;
      text-align: center;
      padding: 15px 10px;
      box-sizing: border-box;
    }
    @media (max-width: 576px) {
      .duration-tab {
        flex: 1 1 calc(50% - 10px);
        max-width: none;
      }
    }
    
    /* CTA Buttons */
    .btn-primary-custom {
      background: var(--gradient);
      border: none;
      padding: 15px 40px;
      border-radius: 50px;
      color: #fff;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .btn-primary-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
      color: #fff;
    }
    .btn-outline-custom {
      background: transparent;
      border: 2px solid rgba(255,255,255,0.3);
      padding: 15px 40px;
      border-radius: 50px;
      color: #fff;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }
    .btn-outline-custom:hover {
      background: rgba(255,255,255,0.1);
      border-color: #fff;
      color: #fff;
    }
    
    /* Hero Images Grid */
    .hero-images {
      position: relative;
      animation: fadeInUp 0.8s ease 0.8s both;
    }
    .hero-images img {
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
      transition: all 0.4s ease;
    }
    .hero-img-main {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }
    .hero-img-float {
      position: absolute;
      width: 150px;
      height: 150px;
      object-fit: cover;
      border: 4px solid #fff;
    }
    .hero-img-float:nth-child(2) {
      bottom: -30px;
      left: -5px;
      animation: float 3s ease-in-out infinite;
    }
    .hero-img-float:nth-child(3) {
      top: 20px;
      right: -20px;
      animation: float 3s ease-in-out infinite 0.5s;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    /* Features Strip */
    .features-strip {
      background: var(--gradient-dark);
      padding: 30px 0;
      position: relative;
      overflow: hidden;
    }
    .features-strip::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient);
    }
    .feature-item {
      display: flex;
      align-items: center;
      gap: 15px;
      color: #fff;
      padding: 10px 0;
    }
    .feature-item i {
      font-size: 2rem;
      color: var(--primary);
    }
    .feature-item h5 {
      margin: 0;
      font-weight: 600;
      font-size: 1rem;
    }
    .feature-item p {
      margin: 0;
      font-size: 0.85rem;
      opacity: 0.7;
    }
    
    /* Section Styling */
    .section { padding: 100px 0; }
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .section-badge {
      display: inline-block;
      background: rgba(255, 107, 53, 0.1);
      color: var(--primary);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 15px;
    }
    .section-header h2 {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--secondary);
      margin-bottom: 15px;
    }
    .section-header p {
      font-size: 1.1rem;
      color: #666;
      max-width: 600px;
      margin: 0 auto;
    }
    
    /* Package Cards */
    #packages .row {
      display: flex;
      flex-wrap: wrap;
    }
    #packages .row > [class*='col-'] {
      display: flex;
    }
    .package-card {
      background: #fff;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      border: none;
      height: 100%;
      display: flex;
      flex-direction: column;
      width: 100%;
    }
    .package-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    }
    .package-card .card-img-wrapper {
      position: relative;
      overflow: hidden;
      height: 220px;
      flex-shrink: 0;
    }
    .package-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
    }
    .package-card:hover img {
      transform: scale(1.1);
    }
    .package-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--gradient);
      color: #fff;
      padding: 8px 15px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
    }
    .package-card .card-body {
      padding: 30px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .package-card .card-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 10px;
    }
    .package-card .card-text {
      color: #666;
      font-size: 0.95rem;
      margin-bottom: 20px;
      flex-grow: 1;
    }
    .package-features {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }
    .package-features span {
      background: rgba(255, 107, 53, 0.1);
      color: var(--primary);
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
    }
    .package-card .btn {
      background: var(--gradient);
      border: none;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      width: 100%;
      margin-top: auto;
    }
    .package-card .btn:hover {
      transform: scale(1.02);
      box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }
    
    /* Package Cards Responsive */
    @media (max-width: 991px) {
      .package-card .card-img-wrapper {
        height: 200px;
      }
      .package-card .card-body {
        padding: 25px;
      }
    }
    @media (max-width: 767px) {
      .package-card .card-img-wrapper {
        height: 180px;
      }
      .package-card .card-body {
        padding: 20px;
      }
      .package-card .card-title {
        font-size: 1.1rem;
      }
      .package-card .card-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
      }
      .package-features {
        gap: 8px;
        margin-bottom: 15px;
      }
      .package-features span {
        padding: 4px 10px;
        font-size: 0.75rem;
      }
      .package-card .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
      }
    }
    @media (max-width: 576px) {
      #packages .row > [class*='col-'] {
        margin-bottom: 20px;
      }
      .package-card .card-img-wrapper {
        height: 200px;
      }
    }
    
    /* Testimonials */
    .testimonials {
      background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
      position: relative;
    }
    .testimonials::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .testimonial-card {
      background: #fff;
      border-radius: 25px;
      padding: 40px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      position: relative;
      height: 100%;
    }
    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }
    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 6rem;
      color: var(--primary);
      opacity: 0.1;
      font-family: serif;
      line-height: 1;
    }
    .testimonial-rating {
      color: var(--gold);
      margin-bottom: 15px;
    }
    .testimonial-text {
      font-size: 1rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 25px;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .testimonial-author img {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--primary);
    }
    .testimonial-author h5 {
      margin: 0;
      font-weight: 600;
      color: var(--secondary);
    }
    .testimonial-author span {
      font-size: 0.85rem;
      color: #888;
    }
    
    /* Stats Section */
    .stats-section {
      background: var(--gradient-dark);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .stats-section::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    }
    .stat-item {
      text-align: center;
      color: #fff;
      position: relative;
      z-index: 2;
    }
    .stat-item i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 15px;
    }
    .stat-item h3 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 5px;
    }
    .stat-item p {
      font-size: 1rem;
      opacity: 0.8;
    }
    
    /* Gallery Section */
    .gallery {
      background: #fff;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .gallery-item {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      height: 250px;
      cursor: pointer;
    }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: auto; }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
    }
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(transparent, rgba(26, 26, 46, 0.8));
      display: flex;
      align-items: flex-end;
      padding: 25px;
      opacity: 0;
      transition: all 0.4s ease;
    }
    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }
    .gallery-overlay h5 {
      color: #fff;
      font-weight: 600;
      margin: 0;
    }

    /* Travel Assistance Section */
    .travel-assistance-section {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
      position: relative;
      overflow: hidden;
      padding: 80px 0;
    }
    
    .travel-assistance-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.5;
    }
    
    .assistance-info {
      position: relative;
      z-index: 1;
    }
    
    .assistance-info .section-badge {
      background: rgba(255, 107, 53, 0.2);
      color: #ff6b35;
      padding: 8px 20px;
      border-radius: 30px;
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
    }
    
    .assistance-title {
      color: #fff;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    
    .assistance-desc {
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 30px;
    }
    
    .assistance-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .assistance-feature-item {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .feature-icon-circle {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #ff6b35, #ff8f5a);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .feature-icon-circle i {
      color: #fff;
      font-size: 1.2rem;
    }
    
    .assistance-feature-item h6 {
      color: #fff;
      font-weight: 600;
      margin-bottom: 2px;
      font-size: 1rem;
    }
    
    .assistance-feature-item p {
      color: rgba(255, 255, 255, 0.6);
      margin: 0;
      font-size: 0.9rem;
    }
    
    /* Form Wrapper */
    .assistance-form-wrapper {
      background: #fff;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
      position: relative;
      z-index: 1;
    }
    
    .assistance-form-wrapper::before {
      content: '';
      position: absolute;
      top: -3px;
      left: -3px;
      right: -3px;
      bottom: -3px;
      /* background: linear-gradient(135deg, #ff6b35, #ff8f5a, #1a1a2e); */
      border-radius: 23px;
      z-index: -1;
    }
    
    /* Floating Label Input */
    .floating-label-group {
      position: relative;
      margin-bottom: 25px;
    }
    
    .floating-input {
      width: 100%;
      padding: 18px 15px 8px 45px;
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: #f8f9fa;
      color: #1a1a2e;
    }
    
    .floating-input:focus {
      outline: none;
      border-color: #ff6b35;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    }
    
    .floating-label-group label {
      position: absolute;
      left: 45px;
      top: 50%;
      transform: translateY(-50%);
      color: #999;
      font-size: 1rem;
      transition: all 0.3s ease;
      pointer-events: none;
      background: transparent;
      padding: 0 5px;
    }
    
    .floating-label-group label i {
      position: absolute;
      left: -30px;
      top: 50%;
      transform: translateY(-50%);
      color: #ff6b35;
      font-size: 1rem;
    }
    
    .floating-input:focus + label,
    .floating-input:not(:placeholder-shown) + label {
      top: 8px;
      transform: translateY(0);
      font-size: 0.75rem;
      color: #ff6b35;
      background: linear-gradient(to bottom, transparent 50%, #fff 50%);
    }
    
    .floating-textarea {
      min-height: 120px;
      resize: vertical;
      padding-top: 25px;
    }
    
    .floating-label-group:has(.floating-textarea) label {
      top: 25px;
    }
    
    .floating-textarea:focus + label,
    .floating-textarea:not(:placeholder-shown) + label {
      top: 8px;
    }
    
    /* Nationality Autocomplete */
    .nationality-autocomplete {
      position: relative;
    }
    
    .nationality-suggestions {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      border: 2px solid #e0e0e0;
      border-top: none;
      border-radius: 0 0 12px 12px;
      max-height: 200px;
      overflow-y: auto;
      z-index: 1000;
      display: none;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .nationality-suggestions.show {
      display: block;
    }
    
    .nationality-suggestions .suggestion-item {
      padding: 12px 15px 12px 45px;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid #f0f0f0;
    }
    
    .nationality-suggestions .suggestion-item:last-child {
      border-bottom: none;
    }
    
    .nationality-suggestions .suggestion-item:hover,
    .nationality-suggestions .suggestion-item.active {
      background: linear-gradient(135deg, #fff5eb 0%, #fef9f3 100%);
      color: #ff6b35;
    }
    
    .nationality-suggestions .suggestion-item i {
      color: #ff6b35;
      font-size: 0.9rem;
    }
    
    .nationality-suggestions .suggestion-item .country-name {
      font-weight: 500;
      color: #1a1a2e;
    }
    
    .nationality-suggestions .suggestion-item:hover .country-name,
    .nationality-suggestions .suggestion-item.active .country-name {
      color: #ff6b35;
    }
    
    .nationality-suggestions .suggestion-item .country-code {
      font-size: 0.8rem;
      color: #999;
      margin-left: auto;
    }
    
    .nationality-suggestions .no-results {
      padding: 15px;
      text-align: center;
      color: #999;
      font-size: 0.9rem;
    }
    
    /* Scrollbar styling for suggestions */
    .nationality-suggestions::-webkit-scrollbar {
      width: 6px;
    }
    
    .nationality-suggestions::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 3px;
    }
    
    .nationality-suggestions::-webkit-scrollbar-thumb {
      background: #ff6b35;
      border-radius: 3px;
    }

    /* Submit Button */
    .assistance-submit-btn {
      width: 100%;
      padding: 16px 30px;
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      position: relative;
      overflow: hidden;
    }
    
    .assistance-submit-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #ff6b35, #ff8f5a);
      transition: left 0.3s ease;
    }
    
    .assistance-submit-btn span,
    .assistance-submit-btn i {
      position: relative;
      z-index: 1;
    }
    
    .assistance-submit-btn:hover::before {
      left: 0;
    }
    
    .assistance-submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }
    
    .assistance-submit-btn i {
      transition: transform 0.3s ease;
    }
    
    .assistance-submit-btn:hover i {
      transform: translateX(5px);
    }
    
    /* Success State */
    .form-success {
      text-align: center;
      padding: 40px 20px;
    }
    
    .form-success .success-checkmark {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #28a745, #34ce57);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      animation: scaleIn 0.5s ease;
    }
    
    .form-success .success-checkmark i {
      color: #fff;
      font-size: 2.5rem;
    }
    
    .form-success h4 {
      color: #1a1a2e;
      font-weight: 700;
      margin-bottom: 10px;
    }
    
    .form-success p {
      color: #666;
    }
    
    @keyframes scaleIn {
      0% { transform: scale(0); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }
    
    /* Responsive */
    @media (max-width: 991px) {
      .assistance-title {
        font-size: 2rem;
      }
      
      .assistance-form-wrapper {
        padding: 30px 25px;
      }
    }
    
    @media (max-width: 767px) {
      .travel-assistance-section {
        padding: 60px 0;
      }
      
      .assistance-title {
        font-size: 1.75rem;
      }
      
      .assistance-features {
        margin-bottom: 30px;
      }
    }

    /* Dubai Visit Info Section */
    .dubai-visit-section {
      background: linear-gradient(135deg, #fef9f3 0%, #fff5eb 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    
    .dubai-visit-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    
    .dubai-visit-header {
      position: relative;
      margin-bottom: 40px;
    }
    
    .dubai-visit-header h2 {
      font-size: 25px;
      font-weight: 700;
      color: #1a3a5c;
      line-height: 1.4;
      margin-bottom: 0;
    }
    
    .dubai-visit-header h2 .airplane-icon {
      display: inline-block;
      color: #0099cc;
      margin-left: 10px;
      animation: flyBounce 2s ease-in-out infinite;
    }
    
    @keyframes flyBounce {
      0%, 100% { transform: translateY(0) rotate(-15deg); }
      50% { transform: translateY(-5px) rotate(-15deg); }
    }
    
    .dubai-visit-header .decorative-line {
      position: absolute;
      top: -15px;
      left: 0;
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, #1a3a5c, transparent);
    }
    
    .dubai-visit-header .decorative-arc {
      position: absolute;
      top: -25px;
      left: 20px;
      width: 40px;
      height: 20px;
      border: 2px dashed #1a3a5c;
      border-bottom: none;
      border-radius: 50px 50px 0 0;
    }
    
    .visit-type-card {
      background: transparent;
      margin-bottom: 30px;
    }
    
    .visit-type-card h3 {
      color: #0099cc;
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .visit-type-card h3::before {
      content: '';
      width: 4px;
      height: 25px;
      background: linear-gradient(180deg, #0099cc, #ff6b35);
      border-radius: 2px;
    }
    
    .visit-type-card p {
      color: #555;
      font-size: 14px;
      line-height: 1.8;
      text-align: justify;
    }
    
    .visit-cta {
      margin-top: 30px;
      padding: 20px 25px;
      background: linear-gradient(135deg, #1a3a5c, #0f2a42);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 15px;
    }
    
    .visit-cta p {
      color: #fff;
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0;
    }
    
    .visit-cta p i {
      color: #ff6b35;
      margin-right: 10px;
    }
    
    .visit-cta .cta-btn {
      background: linear-gradient(135deg, #ff6b35, #ff8f5a);
      color: #fff;
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }
    
    .visit-cta .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
      color: #fff;
      text-decoration: none;
    }
    
    /* Image Grid */
    .dubai-images-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      height: 100%;
    }
    
    .dubai-image-item {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: all 0.4s ease;
    }
    
    .dubai-image-item:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
    
    .dubai-image-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .dubai-image-item:hover img {
      transform: scale(1.1);
    }
    
    .dubai-image-item .image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 15px;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .dubai-image-item:hover .image-overlay {
      opacity: 1;
    }
    
    .dubai-image-item .image-overlay span {
      color: #fff;
      font-size: 0.9rem;
      font-weight: 500;
    }
    
    /* First image larger */
    .dubai-images-grid .dubai-image-item:first-child {
      grid-row: span 2;
    }
    
    .dubai-images-grid .dubai-image-item:first-child img {
      height: 100%;
      min-height: 415px;
    }
    
    @media (max-width: 991px) {
      .dubai-visit-header h2 {
        font-size: 1.8rem;
      }
      
      .dubai-images-grid {
        margin-top: 40px;
      }
      
      .dubai-images-grid .dubai-image-item:first-child img {
        min-height: 200px;
        height: 200px;
      }
      
      .dubai-images-grid .dubai-image-item:first-child {
        grid-row: span 1;
      }
    }
    
    @media (max-width: 767px) {
      .dubai-visit-section {
        padding: 60px 0;
      }
      
      .dubai-visit-header h2 {
        font-size: 1.5rem;
      }
      
      .visit-cta {
        flex-direction: column;
        text-align: center;
      }
    }
    
    /* Footer */
    footer {
      background: var(--secondary);
      color: #fff;
      padding: 80px 0 30px;
    }
    .footer-brand {
      margin-bottom: 20px;
    }
    .footer-brand img {
      height: 60px;
      width: auto;
      max-width: 200px;
      object-fit: contain;
    }
    .footer-desc {
      color: rgba(255,255,255,0.7);
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 25px;
    }
    .footer-social {
      display: flex;
      gap: 15px;
    }
    .footer-social a {
      width: 45px;
      height: 45px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }
    .footer-social a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    .footer-title {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }
    .footer-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: var(--primary);
    }
    .footer-links {
      list-style: none;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 12px;
    }
    .footer-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-links a:hover {
      color: var(--primary);
      padding-left: 5px;
    }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 20px;
      color: rgba(255,255,255,0.7);
    }
    .footer-contact-item i {
      color: var(--primary);
      font-size: 1.2rem;
      margin-top: 3px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 30px;
      margin-top: 50px;
      text-align: center;
      color: rgba(255,255,255,0.5);
    }
    
    /* Floating WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 65px;
      height: 65px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 2rem;
      box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      transition: all 0.3s ease;
      animation: pulse-whatsapp 2s infinite;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
      color: #fff;
    }
    @keyframes pulse-whatsapp {
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
      70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }
    
    /* Back to Top Button */
    .back-to-top {
      position: fixed;
          bottom: 115px;
    right: 37px;
      width: 50px;
      height: 50px;
      background: var(--gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.2rem;
      box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.4s ease;
      text-decoration: none;
    }
    .back-to-top.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .back-to-top:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
      color: #fff;
    }

    /* Utility Classes */
    .gap-15 {
      gap: 15px;
    }

    /* Contact Us Section */
    .contact-us-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 80px 0;
    }
    
    .contact-info-wrapper {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .contact-info-card {
      display: flex;
      align-items: center;
      gap: 20px;
      background: #fff;
      padding: 20px 25px;
      border-radius: 15px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      border-left: 4px solid var(--primary, #f97316);
    }
    
    .contact-info-card:hover {
      transform: translateX(10px);
      box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    }
    
    .contact-icon-box {
      width: 55px;
      height: 55px;
      background: linear-gradient(135deg, var(--primary, #f97316) 0%, #fb923c 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .contact-icon-box i {
      font-size: 22px;
      color: #fff;
    }
    
    .contact-icon-box.whatsapp-icon {
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    }
    
    .contact-info-content h5 {
      margin: 0 0 5px 0;
      font-size: 16px;
      font-weight: 600;
      color: #1a1a1a;
    }
    
    .contact-info-content p {
      margin: 0;
      color: #555;
      font-size: 15px;
    }
    
    .contact-info-content a {
      color: #555;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .contact-info-content a:hover {
      color: var(--primary, #f97316);
    }
    
    .availability-badge {
      display: inline-block;
      background: #e8f5e9;
      color: #2e7d32;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 20px;
      margin-top: 8px;
    }
    
    /* Contact Social Links */
    .contact-social-links {
      background: #fff;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    }
    
    .contact-social-links h5 {
      margin: 0 0 15px 0;
      font-size: 16px;
      font-weight: 600;
      color: #1a1a1a;
    }
    
    .social-icons {
      display: flex;
      gap: 12px;
    }
    
    .social-icon {
      width: 45px;
      height: 45px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      transition: all 0.3s ease;
    }
    
    .social-icon:hover {
      transform: translateY(-5px);
      color: #fff;
    }
    
    .social-icon.facebook { background: #1877f2; }
    .social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
    .social-icon.twitter { background: #1da1f2; }
    .social-icon.youtube { background: #ff0000; }
    
    /* Contact Form Wrapper */
    .contact-form-wrapper {
      background: #fff;
      padding: 35px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    
    .contact-form-header {
      margin-bottom: 25px;
    }
    
    .contact-form-header h4 {
      margin: 0 0 8px 0;
      font-size: 22px;
      font-weight: 600;
      color: #1a1a1a;
    }
    
    .contact-form-header p {
      margin: 0;
      color: #777;
      font-size: 14px;
    }
    
    .contact-form .form-group {
      margin-bottom: 20px;
    }
    
    .contact-form label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      font-size: 14px;
      color: #333;
    }
    
    .contact-form label i {
      color: var(--primary, #f97316);
      margin-right: 8px;
    }
    
    .contact-form .form-control {
      border: 2px solid #e9ecef;
      border-radius: 10px;
      /* padding: 12px 15px; */
      font-size: 15px;
      transition: all 0.3s ease;
    }
    
    .contact-form .form-control:focus {
      border-color: var(--primary, #f97316);
      box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    }
    
    .contact-form textarea.form-control {
      resize: none;
    }
    
    .contact-form select.form-control {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 15px center;
    }
    
    .btn-contact-submit {
      width: 100%;
      padding: 15px 30px;
      background: linear-gradient(135deg, var(--primary, #f97316) 0%, #fb923c 100%);
      border: none;
      border-radius: 10px;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .btn-contact-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
    }
    
    /* Map Section */
    .contact-map-wrapper {
      background: #fff;
      padding: 25px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    
    .map-header {
      margin-bottom: 20px;
    }
    
    .map-header h4 {
      margin: 0;
      font-size: 20px;
      font-weight: 600;
      color: #1a1a1a;
    }
    
    .map-header h4 i {
      color: var(--primary, #f97316);
    }
    
    .map-container {
      border-radius: 15px;
      overflow: hidden;
    }
    


      /* About Hero Section */
    .about-hero-section {
      padding: 140px 0 80px;
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      position: relative;
      overflow: hidden;
    }
    
    .about-hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('assets/img/pattern.png') repeat;
      opacity: 0.05;
    }
    
    .about-hero-content {
      position: relative;
      z-index: 2;
    }
    
    .about-hero-content h1 {
      font-size: 48px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    
    .highlight-text {
      color: var(--primary, #f97316);
    }
    
    .about-hero-content .lead {
      font-size: 18px;
      color: rgba(255,255,255,0.8);
      margin-bottom: 30px;
      line-height: 1.7;
    }
    
    .about-stats-row {
      display: flex;
      gap: 40px;
      margin-top: 30px;
    }
    
    .about-stat-item {
      text-align: center;
    }
    
    .about-stat-item h3 {
      font-size: 36px;
      font-weight: 700;
      color: var(--primary, #f97316);
      margin-bottom: 5px;
    }
    
    .about-stat-item span {
      color: rgba(255,255,255,0.7);
      font-size: 14px;
    }
    
    .about-hero-images {
      position: relative;
      z-index: 2;
    }
    
    .about-img-wrapper {
      position: relative;
    }
    
    .about-main-img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    }
    
    .floating-badge {
      position: absolute;
      bottom: -20px;
      left: 20px;
      background: linear-gradient(135deg, var(--primary, #f97316) 0%, #fb923c 100%);
      padding: 15px 25px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    }
    
    .floating-badge i {
      font-size: 24px;
    }
    
    .floating-badge span {
      font-weight: 600;
    }
    
    /* Our Story Section */
    .our-story-section {
      background: #f8f9fa;
    }
    
    .story-images-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      position: relative;
    }
    
    .story-img-1 {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: 15px;
      margin-top: 40px;
    }
    
    .story-img-2 {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: 15px;
    }
    
    .story-content h2 {
      font-size: 36px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 20px;
    }
    
    .story-content p {
      color: #555;
      line-height: 1.8;
      margin-bottom: 15px;
    }
    
    .story-highlights {
      margin-top: 25px;
    }
    
    .story-highlight-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    
    .story-highlight-item i {
      color: var(--primary, #f97316);
      font-size: 20px;
    }
    
    .story-highlight-item span {
      font-weight: 500;
      color: #333;
    }
    
    /* Why Choose Us Section */
    .why-choose-section {
      background: #fff;
    }
    
    .why-choose-card {
      background: #fff;
      padding: 35px 30px;
      border-radius: 15px;
      box-shadow: 0 5px 30px rgba(0,0,0,0.08);
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
      border: 1px solid #f0f0f0;
    }
    
    .why-choose-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
      border-color: var(--primary, #f97316);
    }
    
    .why-icon-box {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      transition: all 0.3s ease;
    }
    
    .why-choose-card:hover .why-icon-box {
      background: linear-gradient(135deg, var(--primary, #f97316) 0%, #fb923c 100%);
    }
    
    .why-icon-box i {
      font-size: 32px;
      color: var(--primary, #f97316);
      transition: all 0.3s ease;
    }
    
    .why-choose-card:hover .why-icon-box i {
      color: #fff;
    }
    
    .why-choose-card h4 {
      font-size: 20px;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 15px;
    }
    
    .why-choose-card p {
      color: #666;
      line-height: 1.7;
      margin: 0;
    }
    
    /* Values Section */
    .values-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .values-content h2 {
      font-size: 36px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 20px;
    }
    
    .values-content > p {
      color: #555;
      line-height: 1.7;
      margin-bottom: 30px;
    }
    
    .values-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }
    
    .value-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    
    .value-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary, #f97316) 0%, #fb923c 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .value-icon i {
      font-size: 24px;
      color: #fff;
    }
    
    .value-content h5 {
      font-size: 18px;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 8px;
    }
    
    .value-content p {
      color: #666;
      margin: 0;
      line-height: 1.6;
    }
    
    .values-image-wrapper {
      position: relative;
    }
    
    .values-img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }
    
    .experience-badge {
      position: absolute;
      bottom: 30px;
      right: -20px;
      background: #fff;
      padding: 20px 30px;
      border-radius: 15px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
      text-align: center;
    }
    
    .experience-badge .years {
      display: block;
      font-size: 42px;
      font-weight: 700;
      color: var(--primary, #f97316);
      line-height: 1;
    }
    
    .experience-badge .text {
      font-size: 14px;
      color: #555;
      font-weight: 500;
    }
    
    /* CTA Section */
    .about-cta-section {
      background: linear-gradient(135deg, var(--primary, #f97316) 0%, #ea580c 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    
    .about-cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 400px;
      height: 400px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
    }
    
    .about-cta-section::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -5%;
      width: 300px;
      height: 300px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
    }
    
    .cta-content {
      position: relative;
      z-index: 2;
    }
    
    .cta-content h2 {
      font-size: 40px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 15px;
    }
    
    .cta-content p {
      font-size: 18px;
      color: rgba(255,255,255,0.9);
      margin-bottom: 30px;
    }
    
    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .btn-outline-light {
      display: inline-flex;
      align-items: center;
      padding: 15px 30px;
      border: 2px solid #fff;
      color: #fff;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .btn-outline-light:hover {
      background: #fff;
      color: var(--primary, #f97316);
      text-decoration: none;
    }
    
    /* Responsive Styles */
    @media (max-width: 991px) {
      .about-hero-content h1 {
        font-size: 36px;
      }
      
      .about-stats-row {
        gap: 25px;
      }
      
      .about-stat-item h3 {
        font-size: 28px;
      }
      
      .story-content h2,
      .values-content h2 {
        font-size: 30px;
      }
      
      .experience-badge {
        right: 10px;
        bottom: 20px;
      }
    }
    
    @media (max-width: 767px) {
      .about-hero-section {
        padding: 120px 0 60px;
      }
      
      .about-hero-content h1 {
        font-size: 28px;
      }
      
      .about-stats-row {
        flex-wrap: wrap;
        gap: 20px;
      }
      
      .about-stat-item {
        flex: 1;
        min-width: 80px;
      }
      
      .floating-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        justify-content: center;
      }
      
      .story-images-grid {
        grid-template-columns: 1fr;
      }
      
      .story-img-1,
      .story-img-2 {
        height: 250px;
        margin-top: 0;
      }
      
      .cta-content h2 {
        font-size: 28px;
      }
      
      .experience-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        display: inline-block;
      }
    }


    .footer-text-muted {
      margin: 0;
      color: rgba(255,255,255,0.7);
    }

    .footer-icon-primary {
      color: var(--primary);
    }

    .footer-bottom-spacing {
      margin-top: 30px;
      padding-top: 20px;
    }

    .footer-bottom-text {
      margin: 0;
    }

    .footer-link-primary {
      color: var(--primary);
    }

    .footer-link-primary:hover {
      color: var(--primary-dark);
    }

    .success-icon {
      font-size: 4rem;
    }
    
    /* Modal Styling */
    .modal-content {
      border: none;
      border-radius: 25px;
      overflow: hidden;
    }
    .modal-header {
      background: var(--gradient);
      border: none;
      padding: 25px 30px;
    }
    .modal-title {
      color: #fff;
      font-weight: 700;
    }
    .modal-header .close {
      color: #fff;
      opacity: 1;
      font-size: 1.5rem;
    }
    .modal-body {
      padding: 30px;
    }
    .modal-body .form-control {
      border: 2px solid #eee;
      border-radius: 12px;
      padding: 15px;
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    .modal-body .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    }
    .modal-body .btn {
      background: var(--gradient);
      border: none;
      padding: 15px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1.1rem;
    }
    
    /* Rating Badge */
    .rating-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      margin-top: 30px;
      animation: fadeInUp 0.8s ease 1s both;
    }
    .rating-badge i {
      color: var(--gold);
    }
    .rating-badge span {
      font-weight: 700;
      color: var(--secondary);
    }
    
    /* Responsive Styles */
    @media screen and (min-width: 992px) and (max-width: 1200px) {
     .navbar-nav .nav-link{
       font-size: 13px;
     }
}

 @media screen and (min-width: 992px) and (max-width: 991px){

 }

        @media (max-width: 1199px){
          .navbar-brand img{
            height: 45px;
          }
        }
    @media (max-width: 991px) {
      .contact-info-wrapper {
        margin-bottom: 30px;
      }
      
      .contact-form-wrapper {
        padding: 25px;
      }
    }
    
    @media (max-width: 576px) {
      .contact-us-section {
        padding: 60px 0;
      }
      
      .contact-info-card {
        padding: 15px 20px;
      }
      
      .contact-icon-box {
        width: 45px;
        height: 45px;
      }
      
      .contact-icon-box i {
        font-size: 18px;
      }
      
      .contact-form-wrapper {
        padding: 20px;
      }
      
      .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }
    }

    @media (max-width: 992px) {
      .hero h1 { font-size: 2.5rem; }
      .hero-images { margin-top: 50px; }
      .duration-tabs { flex-wrap: wrap; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-item:nth-child(1) { grid-column: span 2; }
    }
    @media (max-width: 768px) {
      /* .hero { padding: 120px 0 80px; } */
      .hero h1 { font-size: 2rem; }
      .section { padding: 60px 0; }
      .section-header h2 { font-size: 2rem; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:nth-child(1) { grid-column: span 1; }
      .stat-item { margin-bottom: 30px; }
    }