
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
  
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #5d57f4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
   
        --primary: #1a56db;
        --primary-dark: #0e3aa3;
        --secondary: #ffc107;
        --light: #f8f9fa;
        --dark: #0f172a;
        --success: #10b981;
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
        --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
        --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    

}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3a3939;  /* The default color of the main navmenu links */
  --nav-hover-color: #5d57f4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #5d57f4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f4f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: #fff;
  padding: 6px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  width: 130px;
  margin-right: 8px;
}





.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 64px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}




/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/



.hero-section {
        background: linear-gradient(135deg, #0a2e52 0%, #1a4b8c 100%);
        color: white;
        padding-top: 7rem;
        position: relative;
        overflow: hidden;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
        opacity: 0.5;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero-title {
        font-weight: 600;
        font-size: 2rem;
        color:#fff;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .call-box {
        background: white;
        color: #0a2e52;
        padding: 1rem 2rem;
        border-radius: 8px;
        display: inline-block;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .call-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    }
    
    .call-number {
        font-weight: 700;
        font-size: 1.5rem;
        margin: 0;
    }
    
    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        color: #4dabf7;
    }
    
    .feature-text {
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .support-features {
        display: flex;
        gap: 1.5rem;
        margin: 1.5rem 0;
        flex-wrap: wrap;
    }
    
    .support-feature {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
    }
    
    .highlight-text {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 193, 7, 0.15);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-weight: 600;
        color: #ffc107;
        margin-top: 1rem;
    }
    
    .hero-image {
      
        max-height: 470px;
        
    }
    
    .hero-image:hover {
        transform: scale(1.02);
    }
    
    @media (max-width: 768px) {
        .hero-title {
          text-align:center;
            font-size: 1.5rem;
        }
        
        .call-number {
            font-size: 1.2rem;
        }
        .call-box {display:block; text-align: center;}
        
        .support-features {
            justify-content: center;
        }
    }



    .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 100%; /* Ensure equal height */
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 1.8rem; /* Slightly smaller icons */
    margin-bottom: 0.8rem;
    color: var(--secondary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-text {
    font-size: 0.85rem; /* Slightly smaller text */
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .feature-card {
        padding: 1rem 0.5rem;
    }
    
    .feature-icon {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    /* Special adjustment for col-md-6 context */
    .col-md-6 .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns on mobile */
        gap: 0.7rem;
    }
    
    .col-md-6 .features-grid {
        grid-template-columns: 1fr; /* Full width in narrow columns */
    }
    
    .feature-card {
        padding: 0.8rem 0.3rem;
    }
    
    .feature-icon {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
}

  /* Custom Styles for Flight Form */
    .flight-search-form {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1;
    }
    
    .flight-search-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 10px;
        background: linear-gradient(90deg, #1a56db, #0e3aa3);
        border-radius: 16px 16px 0 0;
    }
    
    .form-label {
        font-weight: 600;
        color: #334155;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .form-control, .form-select {
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 0.75rem 1rem;
        height: auto;
        transition: all 0.3s ease;
    }
    
    .form-control:focus, .form-select:focus {
        border-color: #1a56db;
        box-shadow: 0 0 0 0.25rem rgba(26, 86, 219, 0.15);
    }
    
    .input-group-text {
        background-color: #f8fafc;
        border: 1px solid #e2e8f0;
        color: #64748b;
    }
    
    .search-btn {
        background: linear-gradient(135deg, #1a56db, #0e3aa3);
        border: none;
        border-radius: 8px;
        padding: 0.75rem 2rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .search-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(26, 86, 219, 0.3);
    }
    
    .location-icon {
        color: #1a56db;
        font-size: 1.2rem;
    }
    
    .date-input {
        position: relative;
    }
    
    .date-input .form-control {
        padding-left: 2.5rem;
    }
    
    .date-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #64748b;
        z-index: 3;
    }
    
    
    /* Passenger Dropdown Styles */
.passenger-dropdown {
    position: relative;
}

.passenger-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    cursor: pointer;
}

.passenger-dropdown .dropdown-menu {
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
    transform: translateY(5px);
    transition: all 0.2s ease;
}

.passenger-dropdown .dropdown-menu.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.passenger-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
}

.passenger-item:last-child {
    border-bottom: none;
}

.passenger-type {
    font-weight: 500;
    color: #333;
}

.passenger-age {
    font-size: 0.8rem;
    color: #777;
}

.passenger-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.passenger-count {
    min-width: 25px;
    text-align: center;
    font-weight: 500;
}

.btn-passenger {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #f5f5f5;
    color: #333;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-passenger:hover {
    background: #e0e0e0;
}

.btn-passenger:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
    
    .btn-passenger {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: #f1f5f9;
        color: #1a56db;
        border: none;
    }
    
    .btn-passenger:hover {
        background: #e2e8f0;
    }
    
    @media (max-width: 768px) {
        .flight-search-form {
            padding: 1.5rem;
        }
    }




    /* service 
    */


    .services {
  padding: 40px 0;
  background-color: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-title p {
  color: #7f8c8d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.service-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3498db, #2c3e50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 2rem;
  color: #fff;
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.service-content p {
  color: #7f8c8d;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: #3498db;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: #2980b9;
}

.service-link:hover i {
  transform: translateX(5px);
}




.flight-deals {
  padding: 40px 0;
  background-color: #cbeaff;
}

.flight-deal-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.flight-deal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.flight-route {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.departure, .arrival {
  text-align: center;
  flex: 1;
}

.airport-code {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a56db;
  margin-bottom: 5px;
}

.city {
  display: block;
  font-size: 1rem;
  color: #64748b;
}

.duration {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
}

.duration i {
  font-size: 1.5rem;
  color: #94a3b8;
  margin-bottom: 5px;
}

.duration span {
  font-size: 0.9rem;
  color: #64748b;
}

.deal-badge {
  background: linear-gradient(135deg, #1a56db, #0e3aa3);
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: space-between;
}

.discount {
  font-weight: 700;
  margin-right: 10px;
}

.promo-code {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
}

.price {
  margin-bottom: 25px;
}

.price span {
  display: block;
}

.price .amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a56db;
  line-height: 1;
}

.book-now-btn {
  background: linear-gradient(135deg, #1a56db, #0e3aa3);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
}

.book-now-btn:hover {
  background: linear-gradient(135deg, #0e3aa3, #1a56db);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 86, 219, 0.3);
}

/* Swiper Navigation */
.swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 1;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: #1a56db;
}






.glass-features {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a56db 0%, #0e3aa3 100%);
  position: relative;
  overflow: hidden;
}

.glass-features::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.2);
}

.glass-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.glass-icon i {color:#2e597a;}

.glass-card:hover .glass-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.glass-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color:#fff;
  font-weight: 600;
}

.glass-card p {
  opacity: 0.9;
  line-height: 1.6;
  font-size: 1rem;
}

.glass-reflection {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.1) 51%,
    rgba(255, 255, 255, 0) 52%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  pointer-events: none;
}

@media (max-width: 768px) {
  .glass-grid {
    grid-template-columns: 1fr;
  }
  
  .glass-card {
    padding: 30px 20px;
  }
}



.glass-cta {
  position: relative;
  padding: 40px 0;
  background: linear-gradient(135deg, #ffffff 0%, #ebf1ff 100%);
  overflow: hidden;
  text-align: center;
  color: white;
}



.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  background: #2f5878;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.glass-cta h2 {
  font-size: 2.2rem;
  color:#fff;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.glass-cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #1a56db;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button i {
  margin-right: 10px;
  font-size: 1.3rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
  color: #0e3aa3;
}

/* Animation for floating elements */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.cta-button {
  animation: float 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  .glass-cta {
    padding: 70px 0;
  }
  
  .cta-content {
    padding: 40px 20px;
  }
  
  .glass-cta h2 {
    font-size: 1.3rem;
  }
  
  .glass-cta p {
    font-size: 1rem;
  }
  
  .cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
}



.footer {
  background-color: #0e3aa3;
  color: white;
  position: relative;
  padding-top:40px;
  margin-bottom: 60px;
}


.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-about p {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact p {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: white;
  color: #0e3aa3;
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: white;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-links i {
  font-size: 0.8rem;
}

.footer-newsletter h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-newsletter p {
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  background: white;
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  outline: none;
}

.newsletter-form button {
  background: #1a56db;
  color: white;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #0e3aa3;
}

.payment-methods img {
  border-radius: 5px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 50px;
}

.copyright {
  text-align: center;
  opacity: 0.8;
}

.credits {
  text-align: center;
  margin-top: 10px;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer {
    padding-top: 60px;
  }
  
  .footer-wave {
    top: -80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 30px;
        margin-bottom: 50px;
  }
  
  .footer-wave {
    top: -60px;
    height: 60px;
  }
  
  .footer-links {
    margin-bottom: 30px;
  }
}

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

.footer-about,
.footer-links,
.footer-newsletter {
  animation: fadeInUp 0.6s ease forwards;
}

.footer-links {
  animation-delay: 0.2s;
}

.footer-newsletter {
  animation-delay: 0.4s;
}



@media (max-width:991px ){
  .section-title h2 {font-size:1.5rem;}
  .about .content h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

  .hero-section {padding-top:6rem;}

  .header {padding:13px 0px;}
}




/* btm cta */

.call-fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0px;
  pointer-events: none;
}

.call-btn {
  display: block;
  justify-content: center;
  align-items: center;
  background: #004bff;
  color: white;
  text-decoration: none;
  border-radius: 0px;
  padding: 12px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: auto;
  position: relative;
  overflow: hidden;
  border: none;
  max-width: 100%;
  width: 100%;
}

.call-btn-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  justify-content: center;
  z-index: 2;
}

.call-icon {
  font-size: 1.5rem;
  transition: all 0.3s ease;
  animation: ring-shake 4s ease infinite;
}

.call-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.call-label {
  font-size: 0.8rem;
  opacity: 0.9;
}

.call-number {
  font-size: 1.1rem;
  font-weight: 600;
}

.call-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  scale: 1;
}

/* Animations */
@keyframes ring-shake {
  0%, 95%, 100% {
    transform: rotate(0deg);
  }
  5%, 15%, 25%, 35%, 45% {
    transform: rotate(10deg);
  }
  10%, 20%, 30%, 40% {
    transform: rotate(-10deg);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    scale: 1;
  }
  100% {
    opacity: 0;
    scale: 1.2;
  }
}

.call-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
  color:#fff;
}

.call-btn:hover .call-pulse {
  animation: pulse 1.5s ease infinite;
}

.call-btn:hover .call-icon {
  animation: ring-shake 1s ease infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .call-fixed-bottom {
    padding: 0px;
  }
  
  .call-btn {
    padding: 10px 20px;
    max-width: 100%;
    border-radius: 0;
  }
  
  .call-icon {
    font-size: 1.3rem;
  }
  
  .call-number {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .call-text {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  
  .call-label {
    font-size: 0.9rem;
  }
}







.swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #1a56db;
  width: 20px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #1a56db;
  transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #1a56db;
  color: white;
}

/* Flight Deal Card Styles */
.flight-deal-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}



.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: 80px;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}



.inner-page {padding: 40px 0;
    background-color: #cbeaff;}





.policy-section {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border-left: 4px solid #1a56db;
}




/*  */



 .flight-search-form {
            background: linear-gradient(135deg, #f5f7fa 0%, #f5f5f5 100%);
            border-radius: 15px;
            padding: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .form-label {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            text-align: left;
            display: block;
        }
        
        .form-control, .form-select {
            border-radius: 8px;
            padding: 9px 15px;
            border: 1px solid #dfe6e9;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
        }

         .suggestions {
    
    background: #fff;
    position: absolute;
    max-height: 200px;
    overflow-y: auto;
    width: 250px;
    z-index: 100;
  }
  .suggestions div {
    padding: 5px 10px;
    text-align: left;
    display:block;
    color:#000;
    border-bottom:1px solid #ddd;
    cursor: pointer;
  }
  .suggestions div:hover {
    background-color: #cce7ff;
  }
  .input-container {
    position: relative;
    margin-bottom: 15px;
  }
        
        .btn-search {
            background: linear-gradient(to right, #3498db, #2c3e50);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            letter-spacing: 1px;
            border-radius: 8px;
            transition: all 0.3s ease;
            width: 100%;
            color: white;
        }
        
        .btn-search:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
       
        
     
        
     


        