    :root{
      --bg:#0a0d14;
      --text:#0f172a;
      --muted:#5b677a;
      --brand:#1e90ff;
      --brand2:#2563eb;
      --card:#ffffff;
      --searchGrad: linear-gradient(135deg,#1f6aff 0%, #2a9fff 100%);
      --yellow:#f6c20f;
      --ring: rgba(30,144,255,.25);
      --shadow: 0 24px 56px rgba(15,23,42,.16);
      --radius: 18px;

      --primary-color:#ffffff;
      --secondary-color:#FF6B6B;
      --accent-color:#4ECDC4;
      --dark-text:#1f2937;
      --light-bg:#f6f8fc;
      --gradient: linear-gradient(135deg, #14b9be, #1b8ccd, #14b9be 100%);
    }

    *{box-sizing:border-box}
    html,body{margin:0; scroll-behavior:smooth}
    
    /* Enhanced scroll behavior */
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 20px;
    }
    
    /* Smooth scroll for all anchor links */
    a[href^="#"] {
      scroll-behavior: smooth;
    }
    
    /* Page Load Animation Setup */
    .page-wrap {
      opacity: 0;
      animation: pageLoad 0.2s ease-out forwards;
    }
    
    @keyframes pageLoad {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    body, .gtranslate_wrapper{
      font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Noto Sans Ethiopic", sans-serif;
      color:var(--text);
      background:linear-gradient(180deg,#f7f9ff 0%, #f3f6fb 30%, #eef2f7 100%);
      -webkit-tap-highlight-color: transparent;
      min-height:100vh; overflow-y:auto;
    }

      .goog-te-banner-frame, iframe.goog-te-banner-frame { display: none !important; }
  /* Reset the body offset Google adds when the banner is visible */
  body { top: 0 !important; }
  /* Optional: hide the tooltip balloon that sometimes appears */
  #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }

  #lang-switch{
    position: fixed; right: 12px; bottom: 12px; z-index: 99999; width: 260px;
    font-family:"Noto Sans","Noto Sans Ethiopic",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
    transition: all 0.3s ease;
  }
  .gt-panel{
    background:#fff; border:1px solid #e5e7eb; border-radius:12px; box-shadow:0 10px 28px rgba(0,0,0,.14);
    height:25vh; overflow-y:auto; padding:8px; display:flex; flex-direction:column; gap:6px;
    transition: all 0.3s ease;
  }
  .gt-item{ display:flex; align-items:center; gap:8px; padding:8px 10px; border-radius:8px; cursor:pointer; white-space:nowrap }
  .gt-item:hover{ background:#f3f4f6 }
  .gt-flag{ width:20px; height:14px; background-size:cover; background-position:center; border-radius:2px; flex:none }
  /* Keep our switcher text from being translated - handled in HTML */

  /* Language selector states */
  .lang-selector-expanded .gt-panel {
    height: 25vh;
    opacity: 1;
    visibility: visible;
  }
  
  .lang-selector-collapsed {
    width: 60px;
    height: 60px;
  }
  
  .lang-selector-collapsed .gt-panel {
    height: 60px;
    width: 60px;
    padding: 8px;
    overflow: hidden;
  }
  
  .lang-selector-collapsed .gt-item {
    display: none;
  }
  
  .lang-selector-collapsed .gt-item.selected {
    display: flex;
    justify-content: center;
    padding: 8px;
  }
  
  .lang-selector-collapsed .gt-item.selected .gt-flag {
    width: 24px;
    height: 18px;
  }
  
  .lang-selector-collapsed .gt-item.selected span:not(.gt-flag) {
    display: none;
  }

  /* Bottom language dropdown button */
  .bottom-lang-dropdown {
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 99999;
  }
  
  .bottom-lang-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    box-shadow: 0 10px 28px rgba(0,0,0,.14);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Noto Sans", "Noto Sans Ethiopic", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  }
  
  .bottom-lang-button:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
    transform: translateY(-2px);
  }
  
  .bottom-lang-button .gt-flag {
    width: 20px;
    height: 14px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    flex: none;
  }
  
  .bottom-lang-button .lang-name {
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
  }
  
  .bottom-lang-button i {
    color: #64748b;
    font-size: 12px;
    transition: transform 0.3s ease;
  }
  
  .bottom-lang-button:hover i {
    transform: rotate(180deg);
  }

  /* Dropdown for collapsed state */
  .lang-dropdown {
    position: fixed;
    bottom: 82px;
    right: 12px;
    z-index: 99998;
    width: 260px;
    max-height: 300px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,.14);
    overflow-y: auto;
    transition: all 0.3s ease;
  }
  
  .lang-dropdown.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
  }
  
  .lang-dropdown-content {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
  }
  
  .lang-dropdown-item:hover {
    background: #f3f4f6;
  }
  
  .lang-dropdown-item .gt-flag {
    width: 20px;
    height: 14px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    flex: none;
  }

  /* Scroll-based visibility */
  .lang-selector-hidden {
    display: none !important;
  }

    img,video{max-width:100%;height:auto;display:block;}
    header{position:sticky;top:0;z-index:1000;}
    body.modal-open{ overflow:hidden; }

    .mainlogo{
  width: 40%;
  height: auto;
  display: block;
  margin: 0 auto;
}



    @keyframes scaleFadeLoop {
  0%   { transform: scale(1);    opacity: 1;   }
  50%  { transform: scale(1.28); opacity: 0.65;}
  100% { transform: scale(1);    opacity: 1;   }
}

/* 2) A soft halo ring that scales out and fades away repeatedly */
@keyframes haloPulse {
  0%   { transform: scale(1);   opacity: 0.35; }
  70%  { transform: scale(1.45);opacity: 0;    }
  100% { transform: scale(1.15);opacity: 0;    }
}

/* Apply to any button */
.pulse-loop{
  position: relative;
  will-change: transform, opacity;
  animation: scaleFadeLoop 1.6s ease-in-out infinite;
}

/* Halo ring */
.pulse-loop::after{
  content:"";
  position:absolute;
  inset:-6px;                /* slightly larger than the button */
  border-radius: inherit;    /* follow button’s shape */
  background: currentColor;  /* uses the button's text/icon color */
  filter: blur(10px);        /* soft glow */
  z-index:-1;
  opacity:0;
  animation: haloPulse 1.6s ease-out infinite;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  .pulse-loop, .pulse-loop::after{ animation: none; }
}

/* Back-and-forth tilt animation */
@keyframes tiltIcon {
  0%   { transform: rotate(0deg); }
  30%  { transform: rotate(24deg); }  /* tilt right */
  100% { transform: rotate(0deg); }   /* back to normal */
}

/* Apply to the phone icon */
.phone-icon {
  display: inline-block;
  animation: tiltIcon 1.5s ease infinite;
  transform-origin: center; /* ensures rotation is around center */
}

/* Up-and-down floating animation */
@keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); } /* move up */
  100% { transform: translateY(0); }   /* back down */
}

/* Apply to phone icons */
.location-icon {
  display: inline-block;
  animation: floatUpDown 1.6s ease-in-out infinite;
}



.portfolio-carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.portfolio-carousel-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  position: relative;
  width: 320px;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transition: box-shadow 0.3s;
}
.portfolio-carousel-btn:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.portfolio-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transform: scale(0.92) rotateY(30deg);
  transition: 
    opacity 0.7s cubic-bezier(.77,0,.18,1),
    transform 0.7s cubic-bezier(.77,0,.18,1);
  z-index: 1;
}
.portfolio-carousel-img.active {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
  z-index: 2;
}
.portfolio-carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.38);
  color: #fff;
  padding: 0.5em 1em;
  font-size: 1.1em;
  border-radius: 0 0 18px 18px;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}





.scrolling-announcement-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  height: 48vh;
  min-height: 260px;
  max-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid #e0e7ef;
}
.scrolling-announcement-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 320px;
  overflow-y: auto;
  scroll-behavior: smooth;
  /* Hide scrollbar for Chrome, Safari and Opera */
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f1f5f9;
}
.scrolling-announcement-content {
  font-size: 1.13rem;
  line-height: 1.7;
  color: #334155;
  padding: 2.2rem 2.2rem 2.2rem 2.2rem;
  white-space: pre-line;
  user-select: text;
  background: transparent;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.scrolling-announcement-viewport::-webkit-scrollbar {
  width: 7px;
  background: #f1f5f9;
}
.scrolling-announcement-viewport::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 6px;
}



    /* =========================
       FLOATING HAMBURGER MENU
    ========================== */
    .hamburger-menu {
      position: fixed !important;
      top: 20px !important;
      right: 20px !important;
      z-index: 99999 !important;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 50%;
      cursor: pointer;
      padding: 0;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transform: none !important;
      margin: 0 !important;
    }

    .hamburger-line {
      width: 20px;
      height: 2px;
      background: #333;
      margin: 2px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    .hamburger-menu:hover {
      background: rgba(30, 144, 255, 0.1);
      transform: scale(1.05);
    }

    .hamburger-menu:hover .hamburger-line {
      background: #1e90ff;
    }

    .hamburger-menu.active .hamburger-line:nth-child(1) {
      transform: rotate(45deg) translate(4px, 4px);
    }

    .hamburger-menu.active .hamburger-line:nth-child(2) {
      opacity: 0;
    }

    .hamburger-menu.active .hamburger-line:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -5px);
    }

    /* Always visible - no scroll behavior */
    
    /* Ensure menu can appear anywhere on page */
    body, html {
      overflow-x: visible !important;
    }
    
    /* Prevent any parent containers from clipping the menu */
    * {
      box-sizing: border-box;
    }

    /* Slide-out Navigation */
    .slide-nav {
      position: fixed !important;
      top: 0 !important;
      right: -300px;
      width: 300px;
      height: 100vh;
      background: #fff;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      transition: right 0.3s ease;
      z-index: 99998 !important;
      overflow-y: auto;
      margin: 0 !important;
      padding: 0 !important;
      transform: none !important;
    }

    .slide-nav.open {
      right: 0 !important;
      visibility: visible !important;
      opacity: 1 !important;
    }

    .slide-nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      border-bottom: 1px solid #eee;
      background: #f8f9fa;
    }

    .slide-nav-header h3 {
      margin: 0;
      color: #333;
      font-size: 18px;
      font-weight: 600;
    }

    .close-menu {
      background: none;
      border: none;
      font-size: 24px;
      color: #666;
      cursor: pointer;
      padding: 0;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .close-menu:hover {
      background: #e9ecef;
      color: #333;
    }

    .slide-nav-links {
      padding: 20px 0;
    }

    .slide-nav-link {
      display: block;
      padding: 15px 20px;
      color: #333;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      transition: all 0.3s ease;
      border-left: 3px solid transparent;
    }

    .slide-nav-link:hover {
      background: #f8f9fa;
      color: #1e90ff;
      border-left-color: #1e90ff;
    }

    /* Overlay */
    .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 99997;
    }

    .nav-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    /* Mobile responsive */
    @media (max-width: 480px) {
      .hamburger-menu {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
      }

      .hamburger-line {
        width: 18px;
        height: 2px;
      }

      .slide-nav {
        width: 280px;
        right: -280px;
      }
    }

    /* =========================
       HERO
    ========================== */
    header.hero, .hero{
      position:relative; min-height:700px; display:flex; align-items:center; justify-content:center;
      color:#fff; padding:0 16px 240px; overflow:visible;
    }

    /* Hero background image - works with picture element */
    picture {
      position: absolute;
      top: 0 !important;
      left: 0;
      width: 100%;
      height: 50vh;
      z-index: 0;
      margin: 0 !important;
      padding: 0 !important;
      display: block;
    }

    .hero-bg-image, picture img {
      position: absolute;
      top: 0 !important;
      left: 0;
      transform: none !important;
      width: 100%;
      height: 50vh;
      object-fit: cover;
      object-position: center top;
      z-index: 0;
      margin: 0 !important;
      padding: 0 !important;
      display: block;
      opacity: 0;
      animation: heroImageFadeIn 1.5s ease-out forwards;
    }

    /* Hero image fade-in animation - opacity only */
    @keyframes heroImageFadeIn {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }

    /* Adjust image height for different screens */
    @media (max-width: 767px) {
      picture, .hero-bg-image, picture img {
        height: 45vh;
        width: 100%;
        left: 0;
        top: 0;
        transform: none !important;
        object-position: center center;
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      picture, .hero-bg-image, picture img {
        height: 50vh;
      }
    }
    /* Hero Titles Animation */
.logo-stack .subtitle,
.logo-stack .title,
.logo-stack .tag {
  background: linear-gradient(135deg, #1ce3c2, #2563eb, #1ce3c2);
  background-size: 300% 300%;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 6s ease infinite, fadeUp 1s ease forwards;
  opacity: 0;
}

/* Different delays for smooth staggered entry */
.logo-stack .subtitle {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 4px;
  animation-delay: 0.2s;
}
.footer-column a i {
  margin-right: 8px;
  font-size: 16px;
  transition: color 0.3s ease;
}

/* Optional: TikTok brand color on hover */
.footer-column a:hover i.fa-tiktok {
  color: #000000;
}

.logo-stack .title {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 3px;
  animation-delay: 0.5s;
}
.logo-stack .tag {
  font-size: 22px;
  font-weight: 600;
  margin-top: 16px;
  color: #f0f0f0;
  animation-delay: 0.8s;
}

/* Gradient Flow Effect */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Fade-up entrance */
@keyframes fadeUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile-friendly scaling */
@media (max-width: 640px) {
  .logo-stack .subtitle {
    font-size: 26px;
  }
  #lang-switch{
    width: 25%;
  }
  .logo-stack .title {
    font-size: 42px;
  }
  .logo-stack .tag {
    font-size: 18px;
  }
}

    header.hero::after{
      content:""; position:absolute; inset:0; background:
        radial-gradient(1200px 520px at 60% -20%, rgba(30,144,255,.25), transparent 60%),
        linear-gradient(to bottom, rgba(8,14,26,.25) 0%, rgba(8,14,26,.55) 60%, rgba(8,14,26,.75) 100%);
    }
    .hero-inner{position:relative; z-index:1; width:100%; max-width:1200px; text-align:center}
    .logo-stack .subtitle{margin-bottom:6px; font-size:38px; font-weight:800; letter-spacing:.12em}
    .logo-stack .title{font-weight:900; letter-spacing:.02em; font-size:44px; line-height:1.02;}
    .logo-stack .tag{margin-top:12px; color:#e2e8f0; font-weight:600; opacity:.9}

    /* Hero logo positioning - top left corner */
    .hero-logo-container {
      position: absolute;
      top: 0px;
      left: 20px;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      opacity: 0;
      transform: translateX(-50px) scale(0.8);
      animation: logoSlideIn 1s ease-out 0.8s forwards;
    }
    
    @keyframes logoSlideIn {
      0% {
        opacity: 0;
        transform: translateX(-50px) scale(0.8);
      }
      100% {
        opacity: 1;
        transform: translateX(0) scale(1);
      }
    }

    .hero-logo {
      width: 30%;
      height: auto;
      display: block;
    }

    .hero-logo-text {
      font-weight: 900;
      letter-spacing: 0.02em;
      font-size: 16px;
      line-height: 1.2;
      background: linear-gradient(135deg, #1ce3c2, #2563eb, #1ce3c2);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientFlow 6s ease infinite;
      max-width: 200px;
    }

    @media (max-width: 640px) {
      .hero-logo {
        width: 35%;
      }
      
      .hero-logo-text {
        font-size: 12px;
        max-width: 150px;
      }
    }

    /* Horizontal Image Slider */
    .slider-container {
      width: 100%;
      overflow: hidden;
      background: rgba(255, 255, 255, 0);
      backdrop-filter: blur(6px);
      padding: 40px 0;
      position: relative;
      opacity: 0;
      transform: translateY(30px);
      animation: sliderSlideIn 1s ease-out 1.5s forwards;
    }
    
    @keyframes sliderSlideIn {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .slider-track {
      display: flex;
      gap: 30px;
      animation: scroll 30s linear infinite;
      width: fit-content;
    }

    .slider-item {
      flex-shrink: 0;
      width: 140px;
      height: 200px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .slider-item:hover {
      transform: scale(1.05);
    }

    .slider-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-140px * 6 - 30px * 6));
      }
    }

    /* Pause animation on hover */
    .slider-container:hover .slider-track {
      animation-play-state: paused;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .slider-item {
        width: 120px;
        height: 180px;
      }

      @keyframes scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-120px * 6 - 30px * 6));
        }
      }
    }

    @media (max-width: 480px) {
      .slider-item {
        width: 100px;
        height: 150px;
      }

      .slider-track {
        gap: 20px;
      }

      @keyframes scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-100px * 6 - 20px * 6));
        }
      }
    }

    /* Search Flights Button with Star Animation */
    .search-flights-btn {
      position: relative;
      padding: 12px 35px;
      background: #fec195;
      font-size: 17px;
      font-weight: 500;
      color: #181818;
      border: 3px solid #fec195;
      border-radius: 8px;
      box-shadow: 0 0 0 #fec1958c;
      transition: all 0.3s ease-in-out;
      cursor: pointer;
      overflow: visible;
    }

    @keyframes gradientShift {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }


    .search-flights-btn .star-1 {
      position: absolute;
      top: 20%;
      left: 20%;
      width: 25px;
      height: auto;
      filter: drop-shadow(0 0 0 #fec195);
      z-index: 1;
      transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
      opacity: 0;
    }

    .search-flights-btn .star-2 {
      position: absolute;
      top: 45%;
      left: 45%;
      width: 15px;
      height: auto;
      filter: drop-shadow(0 0 0 #fec195);
      z-index: 1;
      transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
      opacity: 0;
    }

    .search-flights-btn .star-3 {
      position: absolute;
      top: 40%;
      left: 40%;
      width: 5px;
      height: auto;
      filter: drop-shadow(0 0 0 #fec195);
      z-index: 1;
      transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
      opacity: 0;
    }

    .search-flights-btn .star-4 {
      position: absolute;
      top: 20%;
      left: 40%;
      width: 8px;
      height: auto;
      filter: drop-shadow(0 0 0 #fec195);
      z-index: 1;
      transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
      opacity: 0;
    }

    .search-flights-btn .star-5 {
      position: absolute;
      top: 25%;
      left: 45%;
      width: 15px;
      height: auto;
      filter: drop-shadow(0 0 0 #fec195);
      z-index: 1;
      transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
      opacity: 0;
    }

    .search-flights-btn .star-6 {
      position: absolute;
      top: 5%;
      left: 50%;
      width: 5px;
      height: auto;
      filter: drop-shadow(0 0 0 #fec195);
      z-index: 1;
      transition: all 0.8s ease;
      opacity: 0;
    }

    .search-flights-btn:hover {
      background: transparent;
      color: #fec195;
      box-shadow: 0 0 25px #fec1958c;
    }

    .search-flights-btn:hover .star-1 {
      position: absolute;
      top: -80%;
      left: -30%;
      width: 25px;
      height: auto;
      filter: drop-shadow(0 0 10px #fec195);
      z-index: 10;
      opacity: 1;
    }

    .search-flights-btn:hover .star-2 {
      position: absolute;
      top: -25%;
      left: 10%;
      width: 15px;
      height: auto;
      filter: drop-shadow(0 0 10px #fec195);
      z-index: 10;
      opacity: 1;
    }

    .search-flights-btn:hover .star-3 {
      position: absolute;
      top: 55%;
      left: 25%;
      width: 5px;
      height: auto;
      filter: drop-shadow(0 0 10px #fec195);
      z-index: 10;
      opacity: 1;
    }

    .search-flights-btn:hover .star-4 {
      position: absolute;
      top: 30%;
      left: 80%;
      width: 8px;
      height: auto;
      filter: drop-shadow(0 0 10px #fec195);
      z-index: 10;
      opacity: 1;
    }

    .search-flights-btn:hover .star-5 {
      position: absolute;
      top: 25%;
      left: 115%;
      width: 15px;
      height: auto;
      filter: drop-shadow(0 0 10px #fec195);
      z-index: 10;
      opacity: 1;
    }

    .search-flights-btn:hover .star-6 {
      position: absolute;
      top: 5%;
      left: 60%;
      width: 5px;
      height: auto;
      filter: drop-shadow(0 0 10px #fec195);
      z-index: 10;
      opacity: 1;
    }

    .fil0 {
      fill: #fec195;
    }




    /* =========================
       SEARCH PANEL
    ========================== */
    .search-wrap{width:100%; display:flex; justify-content:center; position:relative; z-index:2; margin-top:-110px; padding:0 16px}
    .search-shell{width:100%; max-width:1100px; background:var(--searchGrad); border-radius:28px; padding:24px; box-shadow:var(--shadow)}
    .search-title{color:#fff; font-weight:800; font-size:32px; letter-spacing:.01em; margin:2px 6px 16px}

    .seg { border-bottom: 1px solid #eef2f7; padding: 12px 0; }
    .badge { background:#eef2ff; color:#3730a3; padding:2px 8px; border-radius:999px; font-size:12px; }
    .ac-item { padding: 8px 10px; cursor: pointer; font-size: 14px; }
    .ac-item:hover, .ac-item.active { background: #f3f4f6; }
    #from-list, #to-list{ max-height: 15rem; overflow-y:auto; box-shadow:0 8px 18px rgba(2,6,23,.08); border-radius:12px; }

    .search-card{ background:#fff; border-radius:18px; padding:16px; display:grid; grid-template-columns:1.3fr 1.3fr 1fr 1fr; gap:12px; align-items:end; border:1px solid #e8eef6 }
    .label{font-size:12px; font-weight:800; color:#334155; letter-spacing:.02em}
    .input,.select{height:46px; border-radius:12px; border:1px solid #e6ecf4; padding:0 14px; font-weight:600; color:#0f172a; outline:none; background:#fff}
    .input:focus,.select:focus{box-shadow:0 0 0 4px var(--ring); border-color:#93c5fd}
    .row2{display:flex; align-items:center; gap:16px; margin-top:12px; color:#0f172a; flex-wrap:wrap}
    .check{display:flex; align-items:center; gap:8px; font-weight:700}
    .check input{width:18px; height:18px}

    .btn{
      height:46px; 
      border-radius:20px; 
      border:none; 
      background: linear-gradient(45deg, rgb(16, 137, 211) 0%, rgb(18, 177, 209) 100%);
      color: white;
      font-weight:800; 
      cursor:pointer; 
      padding:0 24px; 
      transition: all 0.2s ease-in-out;
      box-shadow: rgba(133, 189, 215, 0.878) 0px 10px 10px -8px;
    }
    .btn:hover{
      transform: scale(1.03);
    }
    .btn:active{
      transform: scale(0.95);
    }

    .dd{position:relative}
    .dd-panel{ position:absolute; left:0; top:calc(100% + 8px); width:320px; max-width:85vw; background:#fff; border:1px solid #e6ecf4; border-radius:14px; padding:12px; box-shadow:0 24px 56px rgba(2,6,23,.12); display:none; }
    .row{display:flex; justify-content:space-between; align-items:center; padding:8px 2px}
    .row .who{display:flex; flex-direction:column}
    .row .who small{color:#64748b; font-weight:600}
    .ctl{display:flex; align-items:center; gap:10px}
    .ctl button{width:32px; height:32px; border-radius:8px; border:1px solid #e6ecf4; background:#fff; font-size:18px; cursor:pointer}
    .ctl span{min-width:20px; text-align:center; font-weight:800}

    .dd-footer{display:flex; gap:8px; margin-top:10px}
    .dd-footer .select{flex:1}

    /* Flight Search Panel Styles */
    .flight-search-panel {
      position: relative;
      z-index: 10;
      opacity: 0;
      transform: translateY(40px) scale(0.95);
      animation: searchPanelSlideIn 0.8s ease-out 0.7s forwards;
    }
    
    @keyframes searchPanelSlideIn {
      0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .flight-search-panel input[type="radio"] {
      accent-color: #10b981;
    }

    .flight-search-panel input[type="radio"]:checked + span i.fa-circle {
      color: #10b981;
    }

    .flight-search-panel input[type="radio"]:not(:checked) + span i {
      color: #9ca3af;
    }

    /* Add spacing for swap icon on desktop */
    @media (min-width: 768px) {
      .flight-search-panel form > div.grid.md\:grid-cols-2 > div:first-child {
        padding-right: 2rem;
      }
      
      .flight-search-panel form > div.grid.md\:grid-cols-2 > div:nth-child(2) {
        padding-left: 2rem;
      }
    }

    .swap-icon-btn {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 40px;
      height: 40px;
      background: white;
      border: 2px solid #d1d5db;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      z-index: 10;
      margin-top: 0.5rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .swap-icon-btn:hover {
      background: #f9fafb;
      border-color: #9ca3af;
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .swap-icon-btn:active {
      transform: translate(-50%, -50%) scale(0.95);
    }

    @media (max-width: 768px) {
      .swap-icon-btn {
        display: none !important;
      }
    }

    /* =========================
       EMBA SECTIONS
    ========================== */
    section{
      padding:6rem 5% 4rem; 
      background:var(--light-bg);
      opacity: 0;
      transform: translateY(60px);
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    section:nth-of-type(even){background:#fff}
    
    /* Section Reveal Animation */
    section.revealed {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Staggered section animations */
    section:nth-child(1) { transition-delay: 0.1s; }
    section:nth-child(2) { transition-delay: 0.2s; }
    section:nth-child(3) { transition-delay: 0.3s; }
    section:nth-child(4) { transition-delay: 0.4s; }
    section:nth-child(5) { transition-delay: 0.5s; }
    h2.section-title{ font-family:'Playfair Display',serif; color:var(--dark-text); font-size:2.25rem; margin-bottom:1rem; text-align:center; position:relative; }
    #Book-Now h2.section-title{ 
      color: rgb(16, 137, 211); 
      font-weight: 900;
      font-size: 30px;
    }
    .section-title:after{ content:""; position:absolute; height:3px; width:80px; bottom:-10px; left:50%; transform:translateX(-50%); background:var(--gradient); border-radius:2px; }
    .section-subtitle{max-width:760px; margin:0 auto 2.25rem; text-align:center; color:#334155}


    #Book-Now{
        background: linear-gradient(180deg, rgb(244, 247, 251) 0%, rgb(255, 255, 255) 50%, rgb(244, 247, 251) 100%);
  background-size: 300% 300%;
  
  /* Animation */
  animation: gradientAnimation 8s ease infinite;
    }
    
    .form-input{
      max-width: 900px;
      width: 90%; 
      margin: 20px auto; 
      background: #f8f9fd;
      background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%);
      border-radius: 40px;
      padding: 35px 45px;
      border: 5px solid rgb(255, 255, 255);
      box-shadow: rgba(133, 189, 215, 0.878) 0px 30px 30px -20px;
    }
    
    .form-row{display:flex; flex-wrap:wrap; gap:1.25rem; margin-bottom:1.25rem}
    .form-group{flex:1; min-width:220px}
    .form-group label{
      display:block; 
      margin-bottom:.5rem; 
      margin-left: 10px;
      font-family:'Montserrat',sans-serif; 
      font-weight:700; 
      color: rgb(16, 137, 211); 
      font-size:.9rem;
    }
    .form-group input,.form-group select, .form-group textarea{
      width:100%; 
      background: white;
      border: none;
      padding: 15px 20px;
      border-radius: 20px;
      box-shadow: #cff0ff 0px 10px 10px -5px;
      border-inline: 2px solid transparent;
      font-family:'Montserrat',sans-serif;
      transition: all 0.2s ease;
    }
    .form-group input::placeholder,
    .form-group select::placeholder,
    .form-group textarea::placeholder {
      color: rgb(170, 170, 170);
    }
    .form-group input:focus,.form-group select:focus, .form-group textarea:focus{
      outline:none; 
      border-inline: 2px solid #12b1d1;
    }
    .form-submit{text-align:center}

    /* Portfolio Section - Modern Glassmorphism */
    #portfolio {
      background: linear-gradient(135deg, #a8d8ea 0%, #5dade2 50%, #87ceeb 100%);
      background-size: 200% 200%;
      animation: gradientShift 8s ease infinite;
      position: relative;
      overflow: hidden;
    }
    
    #portfolio::before {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      border-radius: 50%;
      top: -100px;
      right: -100px;
      animation: float 20s ease-in-out infinite;
    }
    
    #portfolio .section-title,
    #portfolio .section-subtitle {
      color: white;
    }
    
    .portfolio-grid {
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
      gap: 2rem; 
      margin-top: 2.5rem;
    }
    
    .portfolio-item {
      position: relative; 
      overflow: hidden; 
      border-radius: 24px; 
      height: 280px; 
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .portfolio-item img {
      width: 100%; 
      height: 100%; 
      object-fit: cover; 
      transition: transform 0.6s ease;
      opacity: 0.9;
    }
    
    .portfolio-item:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      border-color: rgba(255, 255, 255, 0.4);
    }
    
    .portfolio-item:hover img {
      transform: scale(1.1);
      opacity: 1;
    }
    
    .portfolio-item .overlay {
      position: absolute; 
      left: 0; 
      bottom: 0; 
      width: 100%; 
      padding: 1.5rem; 
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      color: #fff;
      font-weight: 600;
    }
    
    @keyframes float {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      33% { transform: translate(50px, -50px) rotate(120deg); }
      66% { transform: translate(-50px, 50px) rotate(240deg); }
    }
    
    /* Services Section - Revolutionary Bright Design */
    #concierge {
      background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
      position: relative;
      overflow: hidden;
    }
    
    /* Animated background particles - bright theme */
    #concierge::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(135, 206, 235, 0.25) 0%, transparent 50%);
      animation: particleFloat 20s ease-in-out infinite;
      opacity: 1;
    }
    
    @keyframes particleFloat {
      0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
      }
      33% {
        transform: scale(1.2) rotate(120deg);
        opacity: 0.8;
      }
      66% {
        transform: scale(0.8) rotate(240deg);
        opacity: 0.5;
      }
    }
    
    #concierge .section-title {
      font-size: 3rem;
      color: #1a365d;
      font-weight: 900;
    }
    
    #concierge .section-subtitle {
      color: #2d3748;
    }
    
    @keyframes textShine {
      0%, 100% {
        filter: brightness(1);
      }
      50% {
        filter: brightness(1.3);
      }
    }
    
    .services-grid {
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
      gap: 2.5rem; 
      margin-top: 3rem;
      perspective: 1000px;
    }
    
    /* Revolutionary Service Card Design */
    .service-card {
      position: relative;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 20px; 
      padding: 1.8rem 1.5rem; 
      text-align: center; 
      transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
      transform-style: preserve-3d;
      cursor: pointer;
      overflow: visible;
      border: 1px solid rgba(255, 255, 255, 0.8);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
    
    /* Animated gradient border */
    .service-card::before {
      content: "";
      position: absolute;
      inset: -3px;
      border-radius: 25px;
      padding: 3px;
      background: linear-gradient(60deg, 
        #f79533, 
        #f37055, 
        #ef4e7b, 
        #a166ab, 
        #5073b8, 
        #1098ad, 
        #07b39b, 
        #6fba82);
      background-size: 300% 300%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: gradientRotate 4s linear infinite;
      opacity: 0;
      transition: opacity 0.6s ease;
    }
    
    @keyframes gradientRotate {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }
    
    .service-card:hover::before {
      opacity: 1;
    }
    
    /* Inner glow effect */
    .service-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 25px;
      background: radial-gradient(circle at 50% 0%, rgba(120, 119, 198, 0.12) 0%, rgba(240, 147, 251, 0.08) 50%, transparent 70%);
      opacity: 0;
      transition: opacity 0.6s ease;
    }
    
    .service-card:hover::after {
      opacity: 1;
    }
    
    /* 3D tilt on hover */
    .service-card:hover {
      transform: translateY(-20px) rotateX(5deg) scale(1.05);
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 50px rgba(120, 119, 198, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    }
    
    /* Icon container with animated circle */
    .service-card .icon-wrapper {
      position: relative;
      width: 80px;
      height: 80px;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .service-card .icon-wrapper::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(93, 173, 226, 0.2), rgba(135, 206, 235, 0.2), rgba(168, 216, 234, 0.2));
      animation: iconPulse 2s ease-in-out infinite;
      opacity: 1;
    }
    
    @keyframes iconPulse {
      0%, 100% {
        transform: scale(1);
        opacity: 0.5;
      }
      50% {
        transform: scale(1.2);
        opacity: 0.8;
      }
    }
    
    .service-card:hover .icon-wrapper::before {
      animation: iconPulse 1s ease-in-out infinite;
      opacity: 1;
    }
    
    .service-card i {
      font-size: 2.2rem;
      background: linear-gradient(135deg, #5dade2 0%, #87ceeb 50%, #a8d8ea 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      position: relative;
      z-index: 1;
      transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      filter: drop-shadow(0 0 8px rgba(135, 206, 235, 0.4));
    }
    
    .service-card:hover i {
      transform: scale(1.3) rotateY(360deg);
      filter: drop-shadow(0 0 20px rgba(135, 206, 235, 0.8));
    }
    
    .service-card h3 {
      margin-bottom: 0.6rem;
      font-weight: 700;
      font-size: 1.1rem;
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
      color: #0f2942;
    }
    
    .service-card:hover h3 {
      transform: translateZ(20px);
      letter-spacing: 1px;
      color: #1a365d;
    }
    
    .service-card p {
      color: #2d3748;
      position: relative;
      z-index: 1;
      line-height: 1.5;
      transition: all 0.3s ease;
      font-weight: 500;
      font-size: 0.9rem;
    }
    
    .service-card:hover p {
      color: #1a365d;
      transform: translateZ(10px);
    }
    
    /* Scroll-triggered animation for service cards */
    .service-card {
      opacity: 0;
      transform: translateY(50px) rotateX(15deg);
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .service-card.revealed {
      opacity: 1;
      transform: translateY(0) rotateX(0deg);
    }
    
    /* Staggered delays for service cards */
    .service-card:nth-child(1) { transition-delay: 0.1s; }
    .service-card:nth-child(2) { transition-delay: 0.2s; }
    .service-card:nth-child(3) { transition-delay: 0.3s; }
    .service-card:nth-child(4) { transition-delay: 0.4s; }
    .service-card:nth-child(5) { transition-delay: 0.5s; }
    .service-card:nth-child(6) { transition-delay: 0.6s; }
    .service-card:nth-child(7) { transition-delay: 0.7s; }
    .service-card:nth-child(8) { transition-delay: 0.8s; }
    
    @keyframes cardSlideIn {
      from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* Contact Section - Next-Level Unique Design */
    #contact {
      background: linear-gradient(135deg, #a8d8ea 0%, #5dade2 50%, #87ceeb 100%);
      background-size: 200% 200%;
      animation: gradientShift 8s ease infinite;
      position: relative;
      overflow: hidden;
    }
    
    /* Floating geometric shapes in background */
    #contact::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      top: 10%;
      left: -100px;
      animation: morphShape 15s ease-in-out infinite;
      filter: blur(40px);
    }
    
    #contact::after {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03));
      border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
      bottom: -150px;
      right: -150px;
      animation: morphShape 20s ease-in-out infinite reverse;
      filter: blur(50px);
    }
    
    @keyframes morphShape {
      0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
      }
      25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(90deg) scale(1.1);
      }
      50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg) scale(0.9);
      }
      75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(270deg) scale(1.05);
      }
    }
    
    #contact .section-title,
    #contact .section-subtitle {
      color: white;
      position: relative;
      z-index: 1;
    }
    
    .contact-info {
      max-width: 1200px; 
      margin: 0 auto 2rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      position: relative;
      z-index: 1;
      perspective: 1000px;
    }
    
    /* Revolutionary Contact Card with Hexagon Design */
    .contact-item {
      background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
      backdrop-filter: blur(20px);
      padding: 1.8rem; 
      border-radius: 24px; 
      box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
      border: 2px solid rgba(255, 255, 255, 0.5);
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      transform-style: preserve-3d;
    }
    
    /* Animated corner accents */
    .contact-item::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(135, 206, 235, 0.3) 90deg,
        transparent 180deg,
        rgba(93, 173, 226, 0.3) 270deg,
        transparent 360deg
      );
      animation: rotateGradient 8s linear infinite;
      opacity: 0;
      transition: opacity 0.5s;
    }
    
    @keyframes rotateGradient {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    
    .contact-item:hover::before {
      opacity: 1;
    }
    
    /* Pulsing ring effect */
    .contact-item::after {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: 30px;
      background: linear-gradient(60deg, #87ceeb, #5dade2, #a8d8ea, #87ceeb);
      background-size: 300% 300%;
      z-index: -1;
      animation: borderPulse 3s ease-in-out infinite;
      opacity: 0;
      filter: blur(8px);
    }
    
    @keyframes borderPulse {
      0%, 100% {
        opacity: 0;
        background-position: 0% 50%;
      }
      50% {
        opacity: 0.6;
        background-position: 100% 50%;
      }
    }
    
    .contact-item:hover::after {
      animation: borderPulse 2s ease-in-out infinite;
    }
    
    /* 3D Flip and lift on hover */
    .contact-item:hover {
      transform: translateY(-15px) rotateX(10deg) rotateY(-5deg) scale(1.03);
      box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.25),
        0 0 60px rgba(135, 206, 235, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 1);
      border-color: rgba(135, 206, 235, 0.6);
    }
    
    /* Icon styling - centered and visible */
    .contact-item i {
      font-size: 2rem;
      color: #5dade2;
      display: block;
      margin: 0 auto 1.2rem;
      position: relative;
      width: 65px;
      height: 65px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
      background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(93, 173, 226, 0.2));
      border-radius: 50%;
    }
    
    .contact-item:hover i {
      transform: scale(1.15) rotate(10deg);
      color: #87ceeb;
      box-shadow: 0 0 30px rgba(135, 206, 235, 0.5);
      background: linear-gradient(135deg, rgba(135, 206, 235, 0.3), rgba(93, 173, 226, 0.3));
    }
    
    /* Special animations for specific icons - preserve existing */
    .contact-item .pulse-loop {
      animation: scaleFadeLoop 1.6s ease-in-out infinite;
    }
    
    .contact-item .phone-icon {
      animation: tiltIcon 1.5s ease infinite;
    }
    
    .contact-item .location-icon {
      animation: floatUpDown 1.6s ease-in-out infinite;
    }
    
    .contact-item strong {
      color: #2d3748;
      font-size: 1rem;
      display: block;
      margin-bottom: 0.6rem;
      font-weight: 800;
      position: relative;
      z-index: 1;
      background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
      -webkit-background-clip: text;
      background-clip: text;
      transition: all 0.3s ease;
    }
    
    .contact-item:hover strong {
      letter-spacing: 0.5px;
      transform: translateZ(15px);
    }
    
    .contact-item p {
      color: #4a5568;
      font-weight: 600;
      position: relative;
      z-index: 1;
      font-size: 0.85rem;
      transition: all 0.3s ease;
    }
    
    .contact-item:hover p {
      color: #2d3748;
      transform: translateZ(10px);
    }
    
    /* Ripple effect on click */
    @keyframes ripple {
      0% {
        transform: scale(0);
        opacity: 0.6;
      }
      100% {
        transform: scale(4);
        opacity: 0;
      }
    }
    
    .contact-item:active::before {
      animation: ripple 0.6s ease-out;
    }
    
    /* Scroll-triggered animation for contact items */
    .contact-item {
      opacity: 0;
      transform: translateY(60px) rotateY(15deg);
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .contact-item.revealed {
      opacity: 1;
      transform: translateY(0) rotateY(0deg);
    }
    
    /* Staggered delays for contact items */
    .contact-item:nth-child(1) { transition-delay: 0.1s; }
    .contact-item:nth-child(2) { transition-delay: 0.2s; }
    .contact-item:nth-child(3) { transition-delay: 0.3s; }
    .contact-item:nth-child(4) { transition-delay: 0.4s; }
    .contact-item:nth-child(5) { transition-delay: 0.5s; }
    .contact-item:nth-child(6) { transition-delay: 0.6s; }
    .contact-item:nth-child(7) { transition-delay: 0.7s; }
    
    @keyframes contactSlideIn {
      from {
        opacity: 0;
        transform: translateY(80px) rotateX(-20deg);
      }
      to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
      }
    }

    /* Footer - Revolutionary Futuristic Design */
    footer {
      background: linear-gradient(135deg, #a8d8ea 0%, #5dade2 50%, #87ceeb 100%);
      background-size: 200% 200%;
      animation: gradientShift 10s ease infinite;
      color: #2d3748; 
      padding: 5rem 5% 3rem; 
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    /* Animated grid pattern background */
    footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
      background-size: 50px 50px;
      animation: gridMove 20s linear infinite;
      opacity: 0.4;
    }
    
    @keyframes gridMove {
      0% {
        transform: translate(0, 0);
      }
      100% {
        transform: translate(50px, 50px);
      }
    }
    
    /* Glowing orbs in background */
    footer::after {
      content: "";
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: pulse 8s ease-in-out infinite;
      pointer-events: none;
    }
    
    @keyframes pulse {
      0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
      }
      50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.6;
      }
    }
    
    .footer-content {
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
      gap: 2rem; 
      text-align: left; 
      margin-bottom: 4rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }
    
    /* Holographic footer columns */
    .footer-column {
      padding: 2rem;
      border-radius: 20px;
      background: linear-gradient(135deg, #a8d8ea 0%, #87c4ed 50%, #87ceeb 100%);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.5);
      background-clip: padding-box;
      position: relative;
      transition: all 0.5s ease;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    /* Animated holographic border */
    .footer-column::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 1px;
      background: linear-gradient(45deg, 
        transparent,
        rgba(135, 206, 235, 0.6),
        transparent,
        rgba(93, 173, 226, 0.6),
        transparent
      );
      background-size: 200% 200%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: borderFlow 3s linear infinite;
      opacity: 0;
      transition: opacity 0.5s;
    }
    
    @keyframes borderFlow {
      0% {
        background-position: 0% 50%;
      }
      100% {
        background-position: 200% 50%;
      }
    }
    
    .footer-column:hover::before {
      opacity: 1;
    }
    
    /* Inner glow effect */
    .footer-column::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(135, 206, 235, 0.2) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.5s;
      border-radius: 20px;
    }
    
    .footer-column:hover::after {
      opacity: 1;
    }
    
    .footer-column:hover {
      background: linear-gradient(135deg, #81adca 0%, #87ceeb 50%, #81adca 100%);
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .footer-column h3 {
      margin-bottom: 1.5rem; 
      font-size: 1.2rem; 
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      color: #0f2942;
      position: relative;
      z-index: 1;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    @keyframes textFlow {
      0%, 100% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
    }
    
    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
      position: relative;
      z-index: 1;
    }
    
    .footer-column li {
      margin-bottom: 0.5rem;
    }
    
    .footer-column a {
      color: #1a365d; 
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.8rem;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      font-weight: 600;
    }
    
    /* Slide-in effect on hover */
    .footer-column a::before {
      content: "";
      position: absolute;
      left: -100%;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.3), transparent);
      transition: left 0.4s ease;
    }
    
    .footer-column a:hover::before {
      left: 100%;
    }
    
    .footer-column a:hover {
      color: #0f2942;
      background: rgba(255, 255, 255, 0.4);
      padding-left: 1.2rem;
      transform: translateX(5px);
    }
    
    /* Footer bottom with animated text */
    .footer-bottom {
      padding-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      margin-top: 3rem;
      position: relative;
      z-index: 1;
    }
    
    .footer-bottom p {
      color: #2d3748;
      margin-bottom: 0.5rem;
      font-weight: 500;
    }
    
    .footer-bottom span {
      background: linear-gradient(90deg, #0f2942, #1a365d, #0f2942);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: shine 5s ease infinite;
      font-weight: 800;
      font-size: 1.1rem;
      display: inline-block;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }
    
    @keyframes shine {
      0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
      }
      50% { 
        background-position: 100% 50%;
        filter: brightness(1.3);
      }
    }

    /* Responsive */
    @media (max-width:980px){ .search-card{grid-template-columns:1fr 1fr} .form-input{width:85%} .search-title{font-size:28px} }
    @media (max-width:640px){ .mainlogo{width: 60%;} .logo-stack .title{font-size:38px} .logo-stack .subtitle{font-size:26px; letter-spacing:.1em} .search-title{font-size:22px} .search-card{grid-template-columns:1fr} .form-input{width:92%} }
  

    /* From Uiverse.io by Ashon-G */ 
        .uiverse {
      --duration: 7s;
      --easing: linear;
      --c-color-1: rgba(255, 163, 26, 0.7);
      --c-color-2: #1a23ff;
      --c-color-3: #e21bda;
      --c-color-4: rgba(255, 232, 26, 0.7);
      --c-shadow: rgba(255, 223, 87, 0.5);
      --c-shadow-inset-top: rgba(255, 223, 52, 0.9);
      --c-shadow-inset-bottom: rgba(255, 250, 215, 0.8);
      --c-radial-inner: #ffd215;
      --c-radial-outer: #fff172;
      --c-color: #fff;
      -webkit-tap-highlight-color: transparent;
      -webkit-appearance: none;
      outline: none;
      position: relative;
      cursor: pointer;
      border: none;
      display: table;
      border-radius: 24px;
      padding: 0;
      margin: 0;
      text-align: center;
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 0.02em;
      line-height: 1.5;
      color: var(--c-color);
      background: radial-gradient(
        circle,
        var(--c-radial-inner),
        var(--c-radial-outer) 80%
      );
      box-shadow: 0 0 14px var(--c-shadow);
      transition: background 0.6s ease-in-out; /* ✅ Smooth transition */
    }

    .uiverse:before {
      content: "";
      pointer-events: none;
      position: absolute;
      z-index: 3;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      border-radius: 24px;
      box-shadow:
        inset 0 3px 12px var(--c-shadow-inset-top),
        inset 0 -3px 4px var(--c-shadow-inset-bottom);
    }

    .uiverse .wrapper {
      -webkit-mask-image: -webkit-radial-gradient(white, black);
      overflow: hidden;
      border-radius: 24px;
      min-width: 132px;
      padding: 12px 0;
      position: relative;
    }

    .uiverse .wrapper span {
      display: inline-block;
      position: relative;
      z-index: 1;
    }

    /* ✅ Hover effect: button background turns green */
    .uiverse:hover {
      --duration: 1400ms;
      background: #edce00 !important; /* green */
    }

    /* ✅ Force all circles to green on hover + smooth transition */
    .uiverse .wrapper .circle {
      position: absolute;
      left: 0;
      top: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      filter: blur(var(--blur, 8px));
      background: var(--background, transparent);
      transform: translate(var(--x, 0), var(--y, 0)) translateZ(0);
      animation: var(--animation, none) var(--duration) var(--easing) infinite;
      transition: background 0.6s ease-in-out, filter 0.6s ease-in-out; /* ✅ Smooth transition */
    }

    .searchbtn{
      color: #ffffff;
    }
    .searchbtn:hover{
      color: #000000;
    }

    .uiverse:hover .wrapper .circle {
      background: #e0c200 !important; /* green */
      filter: blur(14px); /* glowing effect */
    }

    /* Default circle colors */
    .uiverse .wrapper .circle.circle-1,
    .uiverse .wrapper .circle.circle-9,
    .uiverse .wrapper .circle.circle-10 {
      --background: var(--c-color-4);
    }

    .uiverse .wrapper .circle.circle-3,
    .uiverse .wrapper .circle.circle-4 {
      --background: var(--c-color-2);
      --blur: 14px;
    }

    .uiverse .wrapper .circle.circle-5,
    .uiverse .wrapper .circle.circle-6 {
      --background: var(--c-color-3);
      --blur: 16px;
    }

    .uiverse .wrapper .circle.circle-2,
    .uiverse .wrapper .circle.circle-7,
    .uiverse .wrapper .circle.circle-8,
    .uiverse .wrapper .circle.circle-11,
    .uiverse .wrapper .circle.circle-12 {
      --background: var(--c-color-1);
      --blur: 12px;
    }

    /* Circle positions and animations */
    .uiverse .wrapper .circle.circle-1 { --x: 0; --y: -40px; --animation: circle-1; }
    .uiverse .wrapper .circle.circle-2 { --x: 92px; --y: 8px; --animation: circle-2; }
    .uiverse .wrapper .circle.circle-3 { --x: -12px; --y: -12px; --animation: circle-3; }
    .uiverse .wrapper .circle.circle-4 { --x: 80px; --y: -12px; --animation: circle-4; }
    .uiverse .wrapper .circle.circle-5 { --x: 12px; --y: -4px; --animation: circle-5; }
    .uiverse .wrapper .circle.circle-6 { --x: 56px; --y: 16px; --animation: circle-6; }
    .uiverse .wrapper .circle.circle-7 { --x: 8px; --y: 28px; --animation: circle-7; }
    .uiverse .wrapper .circle.circle-8 { --x: 28px; --y: -4px; --animation: circle-8; }
    .uiverse .wrapper .circle.circle-9 { --x: 20px; --y: -12px; --animation: circle-9; }
    .uiverse .wrapper .circle.circle-10 { --x: 64px; --y: 16px; --animation: circle-10; }
    .uiverse .wrapper .circle.circle-11 { --x: 4px; --y: 4px; --animation: circle-11; }
    .uiverse .wrapper .circle.circle-12 { --blur: 14px; --x: 52px; --y: 4px; --animation: circle-12; }

    /* Animations */
    @keyframes circle-1 { 33% { transform: translate(0px, 16px); } 66% { transform: translate(12px, 64px); } }
    @keyframes circle-2 { 33% { transform: translate(80px, -10px); } 66% { transform: translate(72px, -48px); } }
    @keyframes circle-3 { 33% { transform: translate(20px, 12px); } 66% { transform: translate(12px, 4px); } }
    @keyframes circle-4 { 33% { transform: translate(76px, -12px); } 66% { transform: translate(112px, -8px); } }
    @keyframes circle-5 { 33% { transform: translate(84px, 28px); } 66% { transform: translate(40px, -32px); } }
    @keyframes circle-6 { 33% { transform: translate(28px, -16px); } 66% { transform: translate(76px, -56px); } }
    @keyframes circle-7 { 33% { transform: translate(8px, 28px); } 66% { transform: translate(20px, -60px); } }
    @keyframes circle-8 { 33% { transform: translate(32px, -4px); } 66% { transform: translate(56px, -20px); } }
    @keyframes circle-9 { 33% { transform: translate(20px, -12px); } 66% { transform: translate(80px, -8px); } }
    @keyframes circle-10 { 33% { transform: translate(68px, 20px); } 66% { transform: translate(100px, 28px); } }
    @keyframes circle-11 { 33% { transform: translate(4px, 4px); } 66% { transform: translate(68px, 20px); } }
    @keyframes circle-12 { 33% { transform: translate(56px, 0px); } 66% { transform: translate(60px, -32px); } }
  
  

    /* Form Submit Button */ 
.button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  font-weight: bold;
  background: linear-gradient(45deg, rgb(16, 137, 211) 0%, rgb(18, 177, 209) 100%);
  color: white;
  padding: 15px;
  border-radius: 20px;
  box-shadow: rgba(133, 189, 215, 0.878) 0px 20px 10px -15px;
  border: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  font-size: 1.1em;
}

.button span {
  position: relative;
  z-index: 1;
}

.button:hover {
  transform: scale(1.03);
  box-shadow: rgba(133, 189, 215, 0.878) 0px 23px 10px -20px;
}

.button:active {
  transform: scale(0.95);
  box-shadow: rgba(133, 189, 215, 0.878) 0px 15px 10px -10px;
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.8);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

/* Enhanced hover effects */
.service-card:hover,
.contact-item:hover,
.portfolio-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Smooth transitions for all interactive elements */
* {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Loading state animations */
.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}


