:root {
    --light: #f5f5f5;
    --primary: #2a3990;
    --text: #333;
    --overlay: rgba(0, 0, 0, 0.5);
    --shadow: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease-in-out;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--light);
    color: var(--text);
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
}

/* 🔥 HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Background Image with Optimization */
.hero picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    will-change: transform, opacity; /* Optimizes performance */
    filter: brightness(0.8);
}

/* Overlay for Better Readability */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 0;
}

/* Centered Content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 80%;
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Modern Glass Effect */
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 16px var(--shadow);
    transition: var(--transition);
}

.hero-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px var(--shadow);
}

/* 🔥 SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: bounce 2s infinite;
    will-change: transform;
    z-index: 9999;
}


/* Smooth Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.scroll-indicator svg {
    fill: none;
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 2;
    transition: var(--transition);
}

.scroll-indicator:hover svg {
    stroke: var(--primary);
    transform: scale(1.1);
}

/* 🔥 GENERAL LAYOUT */
.container {
    margin: 0 auto;
    width: min(1200px, 90%);
}

.section {
    padding: 4rem 0;
}

 
    
    .grid {
    display:grid;
    display:grid;
    gap:2rem;
    gap:20px;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    margin-top:2rem
    }
    
    .cultural-highlights {
    background:var(--light);
    padding:clamp(60px,10vw,100px) 0;
    text-align:center
    }
    
    .cultural-highlights h2 {
    color:var(--primary);
    font-size:clamp(2rem,5vw,2.5rem);
    letter-spacing:2px;
    margin-bottom:2rem;
    position:relative;
    text-transform:uppercase
    }
    
    .cultural-highlights h2::after {
    background:var(--secondary);
    border-radius:2px;
    content:"";
    display:block;
    height:4px;
    margin:10px auto 0;
    width:60px
    }
    
    .highlight-card {
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 20px #0000001a;
    overflow:hidden;
    transition:transform .3s ease,box-shadow .3s ease;
    will-change:transform,box-shadow
    }
    
    .highlight-card:hover {
    box-shadow:0 15px 30px #0003;
    transform:translateY(-10px)
    }
    
    .highlight-card img {
    height:220px;
    object-fit:cover;
    transition:transform .3s ease;
    width:100%
    }
    
    .highlight-card:hover img {
    transform:scale(1.05)
    }
    
    .highlight-card h3 {
    color:var(--primary);
    font-size:1.5rem;
    font-weight:700;
    margin:1rem 1rem .5rem;
    text-transform:capitalize
    }
    
    .highlight-card p {
    color:var(--text);
    font-size:1rem;
    line-height:1.6;
    margin:0 1rem 1.5rem
    }
    
    .card-content {
    padding:1.5rem
    }
    
    .visa-section {
    background:var(--primary);
    color:#fff;
    padding:6rem 0;
    position:relative
    }
    
    .visa-grid {
    display:grid;
    gap:1.5rem;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    margin-bottom:2rem
    }
    
   .visa-card {
    -webkit-backdrop-filter: blur(8px); /* Vendor prefix for Safari and older WebKit browsers */
    backdrop-filter: blur(8px); /* Standard property */
    background: #ffffff1a;
    border-radius: 8px;
    padding: 1.5rem;
}

    
    .country-list {
    display:grid;
    gap:1rem;
    grid-template-columns:repeat(auto-fill,minmax(140px,1fr))
    }
    
    .country-item {
    background:#ffffff1a;
    border-radius:4px;
    padding:.75rem;
    text-align:center
    }
    
    .amd-container {
    align-items:center;
    background:linear-gradient(135deg,#141e30,#243b55);
    display:flex;
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    justify-content:center;
    justify-content:center;
    margin:0;
    min-height:100vh;
    padding:0;
    perspective:2000px
    }
    
    .amd {
    cursor:pointer;
    height:400px;
    position:relative;
    transform-style:preserve-3d;
    transition:transform 1.2s cubic-bezier(0.4,0,0.2,1),box-shadow .8s ease;
    width:300px;
    will-change:transform
    }
    
    .amd:hover {
    box-shadow:0 20px 40px #00000080;
    transform:rotateY(10deg) rotateX(-5deg) scale(1.05)
    }
    
    .amd.is-flipped {
    transform:rotateY(180deg)
    }
    
    .amd-side {
    backface-visibility:hidden;
    border-radius:15px;
    height:100%;
    overflow:hidden;
    position:absolute;
    width:100%
    }
    
    .amd-front {
    background-position:center;
    background-size:cover;
    box-shadow:0 10px 30px #0006;
    transition:transform .5s ease,filter .5s ease
    }
    
    .amd-front:hover {
    filter:brightness(1.1) saturate(1.2)
    }
    
    .amd-front::before {
    background:linear-gradient(to bottom,#0000004d,#000000b3);
    content:'';
    height:100%;
    left:0;
    opacity:.8;
    position:absolute;
    top:0;
    width:100%
    }
    
    .amd-title {
    bottom:20px;
    color:#fff;
    font-size:1.8rem;
    font-weight:700;
    left:20px;
    position:absolute;
    text-shadow:0 4px 6px #000000b3
    }
    
    .amd-back {
    align-items:center;
    background:linear-gradient(to bottom,#1c1c1c,#222);
    box-shadow:inset 0 0 20px #00000080;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:20px;
    text-align:center;
    transform:rotateY(180deg)
    }
    
    .amd-back h2 {
    animation:fadeIn 1s ease;
    font-size:2rem;
    margin-bottom:15px
    }
    
    .amd-back p {
    animation:fadeInUp 1.2s ease;
    font-size:1rem;
    line-height:1.6;
    margin-bottom:20px
    }
    
    .amd-back a:hover {
    box-shadow:0 10px 25px #0009;
    transform:scale(1.1)
    }
    
    @keyframes fadeIn {
    from {
    opacity:0;
    transform:translateY(-20px)
    }
    
    to {
    opacity:1;
    transform:translateY(0)
    }
    }
    
    @keyframes fadeInUp {
    from {
    opacity:0;
    transform:translateY(30px)
    }
    
    to {
    opacity:1;
    transform:translateY(0)
    }
    }
    
    .form-section {
    background:linear-gradient(to bottom right,#f8fafc,#e2e8f0);
    color:#1a202c;
    font-family:'Inter',system-ui,-apple-system,sans-serif;
    padding:4rem 1rem
    }
    
    .form-container {
    margin:0 auto;
    max-width:1200px
    }
    
    .header {
    margin-bottom:3rem;
    text-align:center
    }
    
    .title {
    color:#1a365d;
    font-size:clamp(2rem,5vw,3rem);
    font-weight:800;
    margin-bottom:1rem
    }
    
    .subtitle {
    color:#4a5568;
    font-size:1.2rem;
    line-height:1.6;
    margin:0 auto;
    max-width:800px
    }
    
    .content-grid {
    display:grid;
    gap:2rem;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    margin-top:3rem
    }
    
   .info-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.07); /* Fixed box-shadow */
    padding: 2rem;
    transition: transform .2s ease;
}

    
    .info-card:hover {
    transform:translateY(-5px)
    }
    
    .card-header {
    align-items:center;
    border-bottom:2px solid #e2e8f0;
    display:flex;
    gap:1rem;
    margin-bottom:1.5rem;
    padding-bottom:1rem
    }
    
    .icon {
    background:#ebf4ff;
    border-radius:.5rem;
    color:#4299e1;
    height:2.5rem;
    padding:.5rem;
    width:2.5rem
    }
    
    .card-title {
    color:#2d3748;
    font-size:1.5rem;
    font-weight:700
    }
    
    .info-list {
    list-style:none;
    margin:0;
    padding:0
    }
    
    .info-item {
    align-items:flex-start;
    background:#f7fafc;
    border-radius:.5rem;
    display:flex;
    gap:.75rem;
    margin-bottom:1rem;
    padding:1rem
    }
    
    .info-text {
    color:#4a5568;
    font-size:1rem;
    line-height:1.6
    }
    
  .contact-form {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.07); /* Fixed box-shadow */
    padding: 2rem;
}

    
    .form-group {
    margin-bottom:1.5rem
    }
    
    .form-label {
    color:#2d3748;
    display:block;
    font-weight:600;
    margin-bottom:.5rem
    }
    
    .form-input {
    border:2px solid #e2e8f0;
    border-radius:.5rem;
    font-size:1rem;
    padding:.75rem 1rem;
    transition:border-color .2s ease;
    width:100%
    }
    
    .form-input:focus {
    border-color:#4299e1;
    box-shadow:0 0 0 3px #4299e11a;
    outline:none
    }
    
    .submit-button {
    align-items:center;
    background:#4299e1;
    border:none;
    border-radius:.5rem;
    color:#fff;
    cursor:pointer;
    display:inline-flex;
    font-weight:600;
    gap:.5rem;
    padding:1rem 2rem;
    transition:all .2s ease
    }
    
    .submit-button:hover {
    background:#3182ce
    }
    
    .help-text {
    color:#718096;
    font-size:.875rem;
    margin-top:.5rem
    }
    
    @media screen and (max-width: 768px) {
    .hero {
    padding:1rem;
    text-align:center
    }
    
    .hero h1 {
    font-size:1.2rem
    }
    
    .hero p {
    font-size:1rem;
    max-width:100%
    }
    
    .cultural-highlights {
    padding:30px 15px
    }
    
    .grid {
    gap:15px;
    grid-template-columns:1fr
    }
    
    .highlight-card {
    margin-bottom:15px
    }
    
    .country-list {
    grid-template-columns:repeat(2,1fr)
    }
    
    .amd-container {
    flex-direction:column;
    gap:20px;
    padding:20px
    }
    
    .amd {
    max-width:350px;
    width:100%
    }
    
    .form-section {
    padding:2rem .5rem
    }
    
    .contact-form {
    padding:1rem
    }
    
    .form-input {
    padding:.5rem .75rem
    }
    
    .submit-button {
    justify-content:center;
    width:100%
    }
    
    .scroll-indicator {
    bottom:20px;
    scale:.8
    }
    
    .visa-grid,.content-grid {
    grid-template-columns:1fr
    }
    }
    
    .company-section {
    background:var(--gradient-bg);
    overflow:hidden;
    padding:6rem 2rem;
    position:relative
    }
    
    .company-section::before,.company-section::after {
    background:linear-gradient(135deg,#2563eb1a 0%,#1e40af0d 100%);
    border-radius:50%;
    content:'';
    height:400px;
    position:absolute;
    width:400px;
    z-index:0
    }
    
    .company-section::before {
    left:-200px;
    top:-200px
    }
    
    .company-section::after {
    bottom:-200px;
    right:-200px
    }
    
    .company-container {
    background-color:var(--white);
    border-radius:24px;
    box-shadow:var(--card-shadow);
    margin:0 auto;
    max-width:1200px;
    padding:4rem 2rem;
    position:relative;
    text-align:center;
    z-index:1
    }
    
    .logo-container {
    height:180px;
    margin:0 auto 2.5rem;
    position:relative;
    width:180px
    }
    
    .logo {
    height:100%;
    object-fit:contain;
    width:100%
    }
    
    .logo-glow {
    background:radial-gradient(circle,#2563eb26 0%,#fff0 70%);
    border-radius:50%;
    height:150%;
    left:50%;
    opacity:0;
    position:absolute;
    top:50%;
    transform:translate(-50%,-50%);
    width:150%;
    z-index:-1
    }
    
    .company-name {
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background:linear-gradient(135deg,#1e3a8a 0%,#3b82f6 100%);
    background-clip:text;
    color:transparent;
    font-size:2.5rem;
    font-weight:700;
    margin-bottom:1rem
    }
    #loading-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, #12121276, #00000080);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      z-index: 9999;
  }
  
  .loading-content {
      text-align: center;
      animation: fadeIn 1s ease-in-out;
  }
  
  .loading-spinner {
      width: 50px;
      height: 50px;
      border: 5px solid rgba(255, 255, 255, 0.3);
      border-top: 5px solid #007bff;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-top: 20px;
  }
  
  /* Spinner animation */
  @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }
  
  /* Smooth fade-in */
  @keyframes fadeIn {
      0% { opacity: 0; }
      100% { opacity: 1; }
  }
  
    .contact-info {
    color:var(--secondary);
    font-size:1.125rem;
    margin:0 auto .75rem;
    max-width:600px
    }
    
    .contact-details {
    display:flex;
    flex-wrap:wrap;
    gap:2rem;
    justify-content:center;
    margin-top:2.5rem
    }
    
    .contact-item {
    align-items:center;
    background-color:var(--gray-light);
    border-radius:100px;
    display:flex;
    padding:.75rem 1.5rem;
    transition:all .3s ease
    }
    
    .contact-item:hover {
    background-color:var(--white);
    box-shadow:0 10px 25px #0000001a;
    transform:translateY(-3px)
    }
    
    .contact-item svg {
    color:var(--primary);
    height:22px;
    margin-right:.75rem;
    width:22px
    }
    
    .contact-link {
    color:var(--gray-dark);
    font-weight:500;
    text-decoration:none;
    transition:color .2s ease
    }
    
    .contact-link:hover {
    color:var(--primary)
    }
    
    .decorative-line {
    background:linear-gradient(90deg,transparent 0%,#2563eb4d 50%,transparent 100%);
    height:2px;
    left:50%;
    max-width:1000px;
    position:absolute;
    transform:translateX(-50%);
    width:100%
    }
    
    .decorative-line-top {
    top:0
    }
    
    .decorative-line-bottom {
    bottom:0
    }
    
    .particles-container {
    height:100%;
    left:0;
    overflow:hidden;
    position:absolute;
    top:0;
    width:100%;
    z-index:0
    }
    
    .particle {
    background-color:var(--primary);
    border-radius:50%;
    opacity:.2;
    position:absolute
    }
    
    @media (max-width: 768px) {
    .company-section {
    padding:4rem 1.5rem
    }
    
    .company-container {
    padding:3rem 1.5rem
    }
    
    .logo-container {
    height:140px;
    margin-bottom:2rem;
    width:140px
    }
    
    .company-name {
    font-size:2rem
    }
    
    .contact-details {
    align-items:center;
    flex-direction:column;
    gap:1rem
    }
    }
    
    .hotel-bg {
    background-image:url(../img/hotel.webp);
    background-position:center;
    background-size:cover
    }
    
    .hospitality-bg {
    background-image:url(../img/hospitality.webp);
    background-position:center;
    background-size:cover
    }
    
    .eia-bg {
    background-image:url(../img/eia.webp);
    background-position:center;
    background-size:cover
    }