 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
  
          /* Header */
    .header-section {
      background: linear-gradient(115deg, #0061a8 0%, #0097e6 100%);
      padding: 80px 20px;
      text-align: center;
      color: #fff;
    }
    .header-title {
      font-size: 3rem;
      font-weight: 700;
    }
    .header-subtitle {
      font-size: 1.3rem;
      opacity: 0.9;
    }

    /* Banner */
    .full-width-banner {
      background: linear-gradient(135deg, #0a2a43 0%, #1a4a6c 100%);
      color: #fff;
      text-align: center;
      padding: 70px 20px;
      position: relative;
    }
    .banner-title {
      font-size: 2.5rem;
      font-weight: 600;
    }
    .banner-subtitle {
      font-size: 1.1rem;
      margin-bottom: 30px;
    }
    .cta-button {
      padding: 12px 30px;
      border-radius: 50px;
      background: linear-gradient(90deg, #00a8ff, #0097e6);
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .cta-button:hover {
      background: linear-gradient(90deg, #0097e6, #00a8ff);
    }

    /* Slider */
    .destination-slider {
      margin: 50px auto;
      max-width: 1000px;
      height: 250px;
      position: relative;
      overflow: hidden;
      border-radius: 15px;
    }
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      color: #fff;
    }
    .slide.active { opacity: 1; }
    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      display: inline-block;
      margin: 0 5px;
      cursor: pointer;
    }
    .slider-dot.active { background: #00a8ff; }

    /* Stats */
    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: #00a8ff;
    }

    /* Destination cards */
    .destination-card {
      background: #f6f9ff;
      border-left: 4px solid #0097e6;
      border-radius: 10px;
      padding: 20px;
      transition: 0.3s;
    }
    .destination-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Feature Box */
    .feature-box {
      background: #fff;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .feature-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .feature-icon {
      font-size: 2rem;
      color: #0097e6;
      margin-bottom: 15px;
    }

    /* Footer */
    .footer-section {
      background: linear-gradient(115deg, #0061a8, #0097e6);
      color: #fff;
      text-align: center;
      padding: 20px;
    }






   .contact-container {
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
    }
    
    .header-section {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .main-title {
      font-weight: 700;
      font-size: 3rem;
      margin-bottom: 15px;
      color: var(--primary);
      position: relative;
      display: inline-block;
    }
    
    .main-title::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--secondary);
      border-radius: 2px;
    }
    
    .subtitle {
      font-size: 1.2rem;
      color: var(--gray);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .card-wrapper {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    
    .card-wrapper:hover {
      transform: translateY(-5px);
    }
    
    .card-header {
      background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
      padding: 40px;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }
    
    .card-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
      background-size: cover;
      background-position: center;
    }
    
    .company-logo {
      max-width: 220px;
      margin: 0 auto 20px;
      display: block;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    }
    
    .company-name {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 10px;
      position: relative;
      z-index: 2;
    }
    
    .company-tagline {
      font-size: 1.2rem;
      opacity: 0.9;
      margin-bottom: 15px;
      position: relative;
      z-index: 2;
    }
    
    .tat-badge {
      display: inline-block;
      background: var(--secondary);
      color: var(--dark);
      padding: 8px 20px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.9rem;
      position: relative;
      z-index: 2;
    }
    
    .card-body {
      padding: 40px;
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }
    
    .icon-wrapper {
      background: rgba(26, 79, 139, 0.1);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      flex-shrink: 0;
      color: var(--primary);
      font-size: 1.2rem;
    }
    
    .contact-content h4 {
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--primary);
      font-size: 1.1rem;
    }
    
    .contact-content p {
      margin: 0;
      color: var(--dark);
      line-height: 1.6;
    }
    
    .divider {
      height: 1px;
      background: linear-gradient(to right, transparent, #ddd, transparent);
      margin: 30px 0;
    }
    
    .action-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: 30px;
    }
    
    .btn-primary {
      background: var(--primary);
      border: none;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
      background: #0d3a6b;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(26, 79, 139, 0.3);
    }
    
    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .btn-outline:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
    }
    
    /* Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .animated {
      animation: fadeIn 0.8s ease forwards;
    }
    
    .delay-1 {
      animation-delay: 0.2s;
    }
    
    .delay-2 {
      animation-delay: 0.4s;
    }
    
    .delay-3 {
      animation-delay: 0.6s;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
      .main-title {
        font-size: 2.5rem;
      }
      
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 768px) {
      .main-title {
        font-size: 2.2rem;
      }
      
      .card-header {
        padding: 30px 20px;
      }
      
      .card-body {
        padding: 30px 20px;
      }
      
      .company-name {
        font-size: 1.8rem;
      }
      
      .action-buttons {
        flex-direction: column;
      }
    }
    
    @media (max-width: 576px) {
      .main-title {
        font-size: 2rem;
      }
      
      .company-logo {
        max-width: 180px;
      }
      
      .contact-item {
        flex-direction: column;
        text-align: center;
      }
      
      .icon-wrapper {
        margin: 0 auto 15px;
      }
    }



      
        
        .main-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 30px 20px;
            background: white;
            border-radius: 12px;
        }
        
        .header {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 10px;
        }
        
        .title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            border-radius: 2px;
        }
        
        .subtitle {
            font-size: 1.1rem;
            color: #4a5568;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .highlight {
            color: #3498db;
            font-weight: 600;
        }
        
        .execution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .execution-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .execution-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .execution-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .execution-item:hover {
            transform: translateY(-5px);
        }
        
        .execution-item:hover .execution-img {
            transform: scale(1.08);
        }
        
        .execution-number {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            z-index: 2;
        }
        
        .execution-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .execution-item:hover .execution-caption {
            opacity: 1;
            transform: translateY(0);
        }
        
        .execution-caption h3 {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .execution-caption p {
            font-size: 0.9rem;
            margin: 0;
            opacity: 0.9;
        }
        
        .cta-section {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
            border-radius: 10px;
            color: white;
            margin-top: 20px;
        }
        
        .cta-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .cta-text {
            font-size: 1.1rem;
            margin-bottom: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            background: white;
            color: #2c3e50;
            border: none;
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
        }
        
        .footer {
            text-align: center;
            margin-top: 40px;
            color: #718096;
            font-size: 0.9rem;
        }
        
        /* Animation delays for items */
        .execution-item:nth-child(1) { transition-delay: 0.1s; }
        .execution-item:nth-child(2) { transition-delay: 0.2s; }
        .execution-item:nth-child(3) { transition-delay: 0.3s; }
        .execution-item:nth-child(4) { transition-delay: 0.4s; }
        .execution-item:nth-child(5) { transition-delay: 0.5s; }
        .execution-item:nth-child(6) { transition-delay: 0.6s; }
        .execution-item:nth-child(7) { transition-delay: 0.7s; }
        .execution-item:nth-child(8) { transition-delay: 0.8s; }
        .execution-item:nth-child(9) { transition-delay: 0.9s; }
        .execution-item:nth-child(10) { transition-delay: 1.0s; }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .title {
                font-size: 2.2rem;
            }
            
            .execution-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .title {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .execution-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 15px;
            }
            
            .execution-item {
                height: 220px;
            }
        }
        
        @media (max-width: 576px) {
            .main-container {
                padding: 20px 15px;
            }
            
            .title {
                font-size: 1.8rem;
            }
            
            .execution-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .execution-item {
                height: 250px;
            }
            
            .cta-title {
                font-size: 1.5rem;
            }
            
            .cta-text {
                font-size: 1rem;
            }
        }
  



          .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
  }
    @media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}
