 *{
            margin:0;
            padding:0;
            box-sizing:border-box;
            font-family:'Poppins',sans-serif;
        }

        body{
            background:#f5f7fb;
            overflow-x:hidden;
        }

        :root{
            --primary:#0d6efd;
            --secondary:#0b1c39;
            --light:#f8fbff;
            --dark:#081120;
        }

        /* Top Contact Bar */
    .top-bar {
      /* background: #f8fafc; */
      background: #3296c4;
      padding: 10px 0;
      border-bottom: 1px solid #eef2f6;
      font-size: 0.8rem;
      position: relative;
      z-index: 1031;
    }
    
    .top-bar a {
      color: #fbfbfc;
      text-decoration: none;
      margin-right: 1.5rem;
      transition: color 0.2s;
    }
    
    .top-bar a:hover {
      color: #0066cc;
    }
    
    /* Navbar - Sticky */
    .navbar {
      background: white;
      padding: 0.75rem 0;
      box-shadow: 0 2px 15px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 1030;
      width: 100%;
    }
    
    .navbar-brand {
      font-weight: 800;
      font-size: 1.6rem;
      letter-spacing: -0.5px;
    }
    
    .navbar-brand .blue {
      color: #0066cc;
    }
    
    .navbar-brand .dark {
      color: #1a2c3e;
    }
    
    /* Desktop menu items */
    .navbar-nav .nav-link {
      font-weight: 500;
      font-size: 0.9rem;
      color: #2c3e50;
      padding: 0.5rem 1rem;
      transition: color 0.2s ease;
    }
    
    .navbar-nav .nav-link:hover {
      color: #0066cc;
    }
    
    /* Mega Menu - Full Width with Centered Content (Desktop only) */
    @media (min-width: 992px) {
      .mega-dropdown {
        position: static;
      }
      
      .mega-dropdown .dropdown-menu {
        width: 100%;
        border: none;
        border-radius: 0;
        padding: 2rem 0;
        margin-top: 0;
        background: white;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        pointer-events: none;
        left: 0 !important;
        right: 0 !important;
      }
      
      .mega-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: all;
      }
    }
    
    /* Centered content inside mega menu */
    .dropdown-menu .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    .dropdown-menu h6 {
      font-weight: 700;
      font-size: 0.75rem;
      color: #0066cc;
      margin-bottom: 1rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    
    .dropdown-menu .dropdown-item {
      padding: 0.4rem 0;
      font-size: 0.85rem;
      color: #4a5b6e;
      transition: all 0.2s;
    }
    
    .dropdown-menu .dropdown-item:hover {
      color: #0066cc;
      background: transparent;
      transform: translateX(5px);
    }
    
    /* ========== MOBILE MENU STYLES (only active on mobile) ========== */
    @media (max-width: 991.98px) {
      .top-bar {
        display: none;
      }
      
      .navbar {
        position: sticky;
        top: 0;
        padding: 0.6rem 0;
      }
      
      /* Hamburger button */
      .navbar-toggler {
        border: none;
        padding: 8px;
        background: transparent;
        z-index: 1050;
        position: relative;
        transition: all 0.3s ease;
      }
      
      .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
      }
      
      .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 102, 204, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      }
      
      /* Overlay */
      .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
      }
      
      .menu-overlay.active {
        opacity: 1;
        visibility: visible;
      }
      
      /* Sidebar - only visible on mobile */
      .mobile-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: white;
        padding: 70px 20px 30px;
        transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        z-index: 1045;
        overflow-y: auto;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
        will-change: transform;
      }
      
      .mobile-sidebar.open {
        transform: translateX(0);
      }
      
      /* Close button inside sidebar */
      .mobile-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #f0f2f5;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: #4a5b6e;
        cursor: pointer;
        transition: all 0.2s ease;
        z-index: 1046;
      }
      
      .mobile-close-btn:hover {
        background: #e0e4e8;
        transform: rotate(90deg);
      }
      
      /* Nav items in sidebar */
      .mobile-sidebar .navbar-nav {
        flex-direction: column;
        width: 100%;
        margin: 0;
      }
      
      .mobile-sidebar .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #eef2f6;
      }
      
      .mobile-sidebar .nav-link {
        padding: 14px 0;
        font-size: 1rem;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      
      .mobile-sidebar .nav-link.dropdown-toggle::after {
        transition: transform 0.3s ease;
      }
      
      .mobile-sidebar .mega-dropdown.show .nav-link.dropdown-toggle::after {
        transform: rotate(180deg);
      }
      
      /* Contact button in sidebar */
      .mobile-sidebar .btn-primary-custom {
        margin-top: 20px;
        text-align: center;
        width: 100%;
        padding: 8px;
        font-size: 1rem;
      }
      
      /* Mobile dropdown menu */
      .mobile-sidebar .mega-dropdown .dropdown-menu {
        position: static !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        display: none;
        pointer-events: all;
        background: #f8fafc;
        margin: 0 0 8px 0;
        border-radius: 12px;
        width: 100%;
      }
      
      .mobile-sidebar .mega-dropdown.show .dropdown-menu {
        display: block;
        animation: slideDown 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      }
      
      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      .mobile-sidebar .dropdown-menu .container {
        padding: 12px 15px;
        width: 100%;
      }
      
      .mobile-sidebar .dropdown-menu .row {
        margin: 0;
      }
      
      .mobile-sidebar .dropdown-menu [class*="col-"] {
        padding: 0;
        margin-bottom: 8px;
      }
      
      .mobile-sidebar .dropdown-menu h6 {
        margin-top: 12px;
        margin-bottom: 8px;
        padding-left: 0;
      }
      
      .mobile-sidebar .dropdown-menu .dropdown-item {
        padding: 8px 0 8px 12px;
        font-size: 0.85rem;
      }
      
      .hero-title {
        font-size: 1.1rem;
      }
    }
    
    /* Hide mobile sidebar on desktop */
    @media (min-width: 992px) {
      .mobile-sidebar {
        display: none;
      }
    }
    
        /* HERO */
.hero-section{
    position: relative;
    background: linear-gradient(135deg,#021024,#041b45,#072b6b);
    overflow: hidden;
    color: #fff;
    /* padding-top: 120px; */
}

.hero-overlay{
    position: absolute;
    width: 800px;
    height: 800px;
    background: rgba(0,123,255,0.15);
    border-radius: 50%;
    top: -250px;
    right: -200px;
    filter: blur(100px);
}

.hero-content{
    position: relative;
    z-index: 2;
}

.hero-subtitle{
    display: inline-block;
    color: #2d8cff;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 15px;
}

.hero-title{
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span{
    color: #ff8a00;
}

.hero-text{
    font-size: 18px;
    color: #c7d2e2;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 35px;
}

.hero-btns{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary-custom{
    background: linear-gradient(45deg,#0066ff,#0099ff);
    color: #fff;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: 0.4s;
}

.btn-primary-custom:hover{
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,123,255,0.4);
}

.btn-outline-custom{
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.4s;
}

.btn-outline-custom:hover{
    background: #fff;
    color: #000;
}

.hero-features{
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.feature-box{
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid #1b7fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b7fff;
    font-size: 22px;
}

.feature-icon.orange{
    border-color: #ff8a00;
    color: #ff8a00;
}

.feature-box h5{
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-box p{
    margin: 0;
    color: #b5bfd0;
    font-size: 14px;
}

.hero-image{
    position: relative;
    z-index: 2;
}

.hero-image img{
    max-width: 100%;
}

.floating-img{
    animation: float 4s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-15px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-section{
        text-align: center;
        padding-bottom: 70px;
    }

    .hero-title{
        font-size: 48px;
    }

    .hero-text{
        margin: auto;
        margin-bottom: 35px;
    }

    .hero-btns{
        justify-content: center;
    }

    .hero-features{
        justify-content: center;
        margin-bottom: 50px;
    }

    .hero-image{
        margin-top: 30px;
    }
}

@media(max-width:576px){

    .hero-title{
        font-size: 36px;
    }

    .hero-text{
        font-size: 16px;
    }

    .hero-btns a{
        width: 100%;
    }

    .feature-box{
        width: 100%;
        justify-content: center;
    }
}
/* =========================
   SERVICES SECTION
========================= */

.services-section{
    padding: 100px 0;
    background: #07182f;
    position: relative;
    overflow: hidden;
}

.section-subtitle{
    color: #2d8cff;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title{
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.section-text{
    color: #b7c3d3;
    font-size: 17px;
    line-height: 1.8;
}

/* SERVICE CARD */

.service-card{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 25px;
    padding: 40px 30px;
    height: 100%;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(135deg,#0066ff,#00a2ff);
    transition: 0.4s;
    z-index: 0;
    opacity: 0.08;
}

.service-card:hover::before{
    height: 100%;
}

.service-card:hover{
    transform: translateY(-10px);
    border-color: rgba(0,153,255,0.5);
}

.service-card *{
    position: relative;
    z-index: 2;
}

.service-icon{
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(0,102,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #2d8cff;
    margin-bottom: 30px;
}

.service-icon.orange{
    background: rgba(255,138,0,0.15);
    color: #ff8a00;
}

.service-icon.blue{
    background: rgba(0,200,255,0.15);
    color: #00c8ff;
}

.service-icon.purple{
    background: rgba(166,0,255,0.15);
    color: #b347ff;
}

.service-icon.green{
    background: rgba(0,255,140,0.15);
    color: #00e68a;
}

.service-icon.red{
    background: rgba(255,0,76,0.15);
    color: #ff3366;
}

.service-card h4{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.service-card p{
    color: #bfc9d8;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-btn{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.service-btn i{
    margin-left: 8px;
    transition: 0.3s;
}

.service-btn:hover{
    color: #2d8cff;
}

.service-btn:hover i{
    transform: translateX(5px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .section-title{
        font-size: 38px;
    }
}

@media(max-width:576px){

    .services-section{
        padding: 70px 0;
    }

    .section-title{
        font-size: 30px;
    }

    .section-text{
        font-size: 15px;
    }

    .service-card{
        padding: 30px 25px;
    }
}
       /* =========================
   ABOUT SECTION
========================= */

.about-section{
    padding: 100px 0;
    background: #061526;
    position: relative;
    overflow: hidden;
}

/* IMAGE */

.about-image{
    position: relative;
}

.about-image img{
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* EXPERIENCE BOX */

.experience-box{
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg,#0066ff,#00a2ff);
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,102,255,0.4);
}

.experience-box h2{
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
}

.experience-box p{
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

/* CONTENT */

.about-content{
    color: #fff;
}

.about-subtitle{
    color: #2d8cff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 18px;
}

.about-title{
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-text{
    color: #b7c3d3;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* FEATURES */

.about-features{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-feature-box{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,0.04);
    padding: 22px;
    border-radius: 20px;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.05);
}

.about-feature-box:hover{
    transform: translateX(10px);
    border-color: rgba(0,153,255,0.4);
}

.feature-icon{
    min-width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(0,102,255,0.15);
    color: #2d8cff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.feature-icon.orange{
    background: rgba(255,138,0,0.15);
    color: #ff8a00;
}

.feature-icon.blue{
    background: rgba(0,200,255,0.15);
    color: #00c8ff;
}

.about-feature-box h5{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-feature-box p{
    margin: 0;
    color: #b7c3d3;
    line-height: 1.7;
}

/* BUTTONS */

.about-buttons{
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-about-primary{
    background: linear-gradient(45deg,#0066ff,#00a2ff);
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.4s;
}

.btn-about-primary:hover{
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,123,255,0.4);
}

.btn-about-outline{
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.4s;
}

.btn-about-outline:hover{
    background: #fff;
    color: #000;
}

/* RESPONSIVE */

@media(max-width:991px){

    .about-section{
        padding: 80px 0;
    }

    .about-title{
        font-size: 40px;
    }

    .about-content{
        text-align: center;
    }

    .about-feature-box{
        text-align: left;
    }

    .about-buttons{
        justify-content: center;
    }
}

@media(max-width:576px){

    .about-title{
        font-size: 32px;
    }

    .about-text{
        font-size: 15px;
    }

    .experience-box{
        padding: 18px 25px;
    }

    .experience-box h2{
        font-size: 30px;
    }

    .about-feature-box{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-buttons a{
        width: 100%;
        text-align: center;
    }
}

       
        /* FOOTER */

        footer{
            background:var(--dark);
            color:#bbb;
            padding:70px 0 20px;
        }

        .footer-title{
            color:#fff;
            font-weight:700;
            margin-bottom:20px;
        }

        .footer-links a{
            display:block;
            color:#bbb;
            text-decoration:none;
            margin-bottom:10px;
            transition:0.3s;
        }

        .footer-links a:hover{
            color:#fff;
            padding-left:5px;
        }

        .social-icons a{
            width:42px;
            height:42px;
            background:#13213c;
            display:inline-flex;
            align-items:center;
            justify-content:center;
            border-radius:50%;
            color:#fff;
            text-decoration:none;
            margin-right:10px;
            transition:0.3s;
        }

        .social-icons a:hover{
            background:var(--primary);
            transform:translateY(-4px);
        }

        .copyright{
            border-top:1px solid rgba(255,255,255,0.08);
            margin-top:50px;
            padding-top:20px;
            text-align:center;
        }

        /* RESPONSIVE */

        @media(max-width:991px){

            .hero{
                text-align:center;
                padding:120px 0;
            }

            .hero h1{
                font-size:45px;
            }

            .about-content{
                margin-top:40px;
            }
        }

        @media(max-width:576px){

            .hero h1{
                font-size:35px;
            }

            .section-title h2{
                font-size:30px;
            }

            .about-content h2{
                font-size:32px;
            }

            .contact-section{
                padding:30px 20px;
            }
        }
        /* =========================
   WHY CHOOSE US SECTION
========================= */

.why-choose-section{
    padding: 110px 0;
    background: #081b33;
    position: relative;
    overflow: hidden;
}

/* BACKGROUND EFFECT */

.why-choose-section::before{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(0,123,255,0.08);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    filter: blur(100px);
}

/* LEFT CONTENT */

.why-content{
    position: relative;
    z-index: 2;
}

.section-subtitle{
    color: #1ea0ff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 18px;
}

.section-title{
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-text{
    color: #c2d1e3;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* FEATURE BOX */

.why-features{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-box{
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.04);
    padding: 25px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
    backdrop-filter: blur(8px);
}

.why-box:hover{
    transform: translateX(10px);
    border-color: rgba(0,153,255,0.4);
}

.why-icon{
    width: 75px;
    height: 75px;
    min-width: 75px;
    border-radius: 20px;
    background: rgba(0,102,255,0.15);
    color: #2d8cff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.why-icon.orange{
    background: rgba(255,138,0,0.15);
    color: #ff9b2f;
}

.why-icon.blue{
    background: rgba(0,200,255,0.15);
    color: #00c8ff;
}

.why-box h5{
    color: #fff;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-box p{
    color: #c2d1e3;
    margin: 0;
    line-height: 1.8;
}

/* RIGHT IMAGE */

.why-image{
    position: relative;
    text-align: center;
    z-index: 2;
}

.why-image img{
    width: 100%;
    max-width: 550px;
    animation: float 4s ease-in-out infinite;
}

/* FLOATING CARDS */

.floating-card{
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 18px 22px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.floating-card i{
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(45deg,#0066ff,#00a2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.floating-card h4{
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 3px;
}

.floating-card p{
    margin: 0;
    color: #d2dceb;
    font-size: 14px;
}

.card-one{
    top: 60px;
    left: -20px;
}

.card-two{
    bottom: 70px;
    right: -10px;
}

/* FLOAT ANIMATION */

@keyframes float{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-15px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* RESPONSIVE */

@media(max-width:991px){

    .why-choose-section{
        padding: 80px 0;
    }

    .section-title{
        font-size: 40px;
    }

    .why-content{
        text-align: center;
    }

    .why-image{
        margin-top: 50px;
    }

    .card-one{
        left: 0;
    }

    .card-two{
        right: 0;
    }
}

@media(max-width:576px){

    .section-title{
        font-size: 32px;
    }

    .section-text{
        font-size: 15px;
    }

    .why-box{
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .floating-card{
        position: relative;
        margin-top: 20px;
        justify-content: center;
    }

    .card-one,
    .card-two{
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
    }
}
/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section{
    padding: 110px 0;
    background: linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,123,255,0.08);
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(100px);
}

/* SECTION TITLE */

.testimonial-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.testimonial-title{
    color:#fff;
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.testimonial-text{
    color:#c2d1e3;
    font-size:17px;
    line-height:1.9;
}

/* CARD */

.testimonial-card{
    max-width:850px;
    margin:auto;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:50px;
    position:relative;
    backdrop-filter:blur(10px);
    text-align:center;
}

.quote-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:30px;
    border-radius:50%;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:35px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-bottom:30px;
}

.testimonial-user img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid rgba(255,255,255,0.1);
}

.testimonial-user h4{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:5px;
}

.testimonial-user span{
    color:#9fb5d1;
    font-size:15px;
}

.testimonial-card p{
    color:#d1dceb;
    font-size:18px;
    line-height:1.9;
    margin-bottom:30px;
}

/* STARS */

.stars{
    color:#ffb400;
    font-size:20px;
    display:flex;
    justify-content:center;
    gap:6px;
}

/* SLIDER BUTTON */

.slider-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    transition:0.4s;
}

.slider-btn:hover{
    background:linear-gradient(45deg,#0066ff,#00a2ff);
}

/* RESPONSIVE */

@media(max-width:991px){

    .testimonial-section{
        padding:80px 0;
    }

    .testimonial-title{
        font-size:40px;
    }
}

@media(max-width:576px){

    .testimonial-title{
        font-size:32px;
    }

    .testimonial-text{
        font-size:15px;
    }

    .testimonial-card{
        padding:35px 25px;
    }

    .testimonial-user{
        flex-direction:column;
    }

    .testimonial-card p{
        font-size:16px;
    }

    .slider-btn{
        width:50px;
        height:50px;
        font-size:18px;
    }
}
/* =========================
   FAQ SECTION
========================= */

.faq-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position:relative;
    overflow:hidden;
}

.faq-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,123,255,0.08);
    border-radius:50%;
    bottom:-150px;
    left:-150px;
    filter:blur(100px);
}

/* SECTION TITLE */

.faq-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.faq-title{
    color:#fff;
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.faq-text{
    color:#c2d1e3;
    font-size:17px;
    line-height:1.9;
}

/* ACCORDION */

.custom-accordion .accordion-item{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px !important;
    overflow:hidden;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
}

.custom-accordion .accordion-button{
    background:transparent;
    color:#fff;
    font-size:20px;
    font-weight:600;
    padding:25px 30px;
    box-shadow:none;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:rgba(0,102,255,0.08);
    color:#2d8cff;
}

.custom-accordion .accordion-button::after{
    filter:brightness(0) invert(1);
}

.custom-accordion .accordion-body{
    color:#c2d1e3;
    font-size:16px;
    line-height:1.9;
    padding:0 30px 30px;
}

/* REMOVE DEFAULT BORDER */

.accordion-button:focus{
    box-shadow:none;
}

/* RESPONSIVE */

@media(max-width:991px){

    .faq-section{
        padding:80px 0;
    }

    .faq-title{
        font-size:40px;
    }
}

@media(max-width:576px){

    .faq-title{
        font-size:32px;
    }

    .faq-text{
        font-size:15px;
    }

    .custom-accordion .accordion-button{
        font-size:17px;
        padding:22px 20px;
    }

    .custom-accordion .accordion-body{
        padding:0 20px 25px;
        font-size:15px;
    }
}
/* =========================
   NEWSLETTER SECTION
========================= */

.newsletter-section{
    padding:100px 0;
    background:#07182f;
    position:relative;
    overflow:hidden;
}

/* BACKGROUND EFFECT */

.newsletter-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,123,255,0.08);
    border-radius:50%;
    top:-200px;
    right:-150px;
    filter:blur(100px);
}

/* MAIN BOX */

.newsletter-box{
    background:linear-gradient(135deg,#0a2545,#0d3261);
    border-radius:35px;
    padding:60px;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

/* CONTENT */

.newsletter-content{
    position:relative;
    z-index:2;
}

.newsletter-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.newsletter-title{
    color:#fff;
    font-size:46px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.newsletter-text{
    color:#c2d1e3;
    font-size:17px;
    line-height:1.9;
}

/* FORM */

.newsletter-form{
    position:relative;
    z-index:2;
}

.newsletter-form .input-group{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    overflow:hidden;
    padding:8px;
    backdrop-filter:blur(8px);
}

.newsletter-form .form-control{
    background:transparent;
    border:none;
    color:#fff;
    height:65px;
    padding-left:20px;
    font-size:16px;
    box-shadow:none;
}

.newsletter-form .form-control::placeholder{
    color:#b7c3d3;
}

.newsletter-btn{
    border:none;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    padding:0 30px;
    border-radius:14px;
    font-weight:600;
    transition:0.4s;
}

.newsletter-btn i{
    margin-left:8px;
}

.newsletter-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,123,255,0.35);
}

/* RESPONSIVE */

@media(max-width:991px){

    .newsletter-box{
        padding:45px 35px;
        text-align:center;
    }

    .newsletter-title{
        font-size:38px;
    }

    .newsletter-form{
        margin-top:35px;
    }
}

@media(max-width:576px){

    .newsletter-section{
        padding:70px 0;
    }

    .newsletter-box{
        padding:35px 20px;
    }

    .newsletter-title{
        font-size:30px;
    }

    .newsletter-text{
        font-size:15px;
    }

    .newsletter-form .input-group{
        flex-direction:column;
        gap:15px;
        padding:15px;
    }

    .newsletter-form .form-control{
        width:100%;
        border-radius:12px !important;
        background:rgba(255,255,255,0.05);
    }

    .newsletter-btn{
        width:100%;
        height:55px;
    }
}
/* login section */
/* =========================
   LOGIN SECTION
========================= */

.login-section{
    padding:120px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.login-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(0,123,255,0.1);
    border-radius:50%;
    top:-120px;
    left:-120px;
    filter:blur(100px);
}

.login-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(0,200,255,0.08);
    border-radius:50%;
    bottom:-100px;
    right:-100px;
    filter:blur(100px);
}

/* CARD */

.login-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:45px;
    backdrop-filter:blur(12px);
    position:relative;
    z-index:2;
    box-shadow:0 20px 50px rgba(0,0,0,0.3);
}

/* HEADER */

.login-header{
    text-align:center;
    margin-bottom:35px;
}

.login-header h2{
    color:#fff;
    font-size:38px;
    font-weight:800;
    margin-bottom:12px;
}

.login-header p{
    color:#b7c3d3;
    font-size:15px;
}

/* INPUT */

.input-box{
    margin-bottom:25px;
}

.input-box label{
    color:#fff;
    font-size:15px;
    font-weight:500;
    margin-bottom:10px;
    display:block;
}

.input-field{
    position:relative;
}

.input-field i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#1ea0ff;
    font-size:18px;
}

.input-field input{
    width:100%;
    height:60px;
    border:none;
    outline:none;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:15px;
    padding:0 20px 0 55px;
    color:#fff;
    transition:0.3s;
}

.input-field input:focus{
    border-color:#1ea0ff;
    box-shadow:0 0 15px rgba(0,123,255,0.2);
}

.input-field input::placeholder{
    color:#b7c3d3;
}

/* OPTIONS */

.login-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
    flex-wrap:wrap;
    gap:10px;
}

.form-check-label{
    color:#c2d1e3;
    font-size:14px;
}

.forgot-link{
    color:#1ea0ff;
    text-decoration:none;
    font-size:14px;
}

.forgot-link:hover{
    color:#fff;
}

/* BUTTON */

.login-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:15px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:0.4s;
}

.login-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,123,255,0.35);
}

/* DIVIDER */

.divider{
    text-align:center;
    margin:35px 0;
    position:relative;
}

.divider span{
    color:#b7c3d3;
    font-size:14px;
    background:#0a2344;
    padding:0 15px;
    position:relative;
    z-index:2;
}

.divider::before{
    content:'';
    position:absolute;
    width:100%;
    height:1px;
    background:rgba(255,255,255,0.08);
    left:0;
    top:50%;
}

/* SOCIAL */

.social-login{
    display:flex;
    gap:15px;
}

.social-btn{
    flex:1;
    height:55px;
    border-radius:14px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    text-decoration:none;
    transition:0.4s;
}

.social-btn:hover{
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    transform:translateY(-3px);
    color:#fff;
}

/* REGISTER */

.register-link{
    text-align:center;
    margin-top:30px;
    color:#c2d1e3;
    font-size:15px;
}

.register-link a{
    color:#1ea0ff;
    text-decoration:none;
    font-weight:600;
}

.register-link a:hover{
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:576px){

    .login-section{
        padding:80px 0;
    }

    .login-card{
        padding:35px 25px;
    }

    .login-header h2{
        font-size:30px;
    }

    .social-login{
        flex-direction:column;
    }
}
/* register page */
/* =========================
   REGISTRATION SECTION
========================= */

.register-section{
    padding:120px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.register-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,123,255,0.1);
    border-radius:50%;
    top:-150px;
    left:-150px;
    filter:blur(100px);
}

.register-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(0,200,255,0.08);
    border-radius:50%;
    bottom:-120px;
    right:-120px;
    filter:blur(100px);
}

/* CARD */

.register-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:45px;
    backdrop-filter:blur(12px);
    position:relative;
    z-index:2;
    box-shadow:0 20px 50px rgba(0,0,0,0.3);
}

/* HEADER */

.register-header{
    text-align:center;
    margin-bottom:35px;
}

.register-header h2{
    color:#fff;
    font-size:40px;
    font-weight:800;
    margin-bottom:10px;
}

.register-header p{
    color:#b7c3d3;
    font-size:15px;
}

/* INPUT */

.input-box{
    margin-bottom:22px;
}

.input-box label{
    color:#fff;
    font-size:15px;
    font-weight:500;
    margin-bottom:10px;
    display:block;
}

.input-field{
    position:relative;
}

.input-field i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#1ea0ff;
    font-size:18px;
}

.input-field input{
    width:100%;
    height:60px;
    border:none;
    outline:none;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:15px;
    padding:0 20px 0 55px;
    color:#fff;
    transition:0.3s;
}

.input-field input:focus{
    border-color:#1ea0ff;
    box-shadow:0 0 15px rgba(0,123,255,0.2);
}

.input-field input::placeholder{
    color:#b7c3d3;
}

/* CHECKBOX */

.custom-check{
    margin-bottom:30px;
}

.custom-check label{
    color:#c2d1e3;
    font-size:14px;
}

.custom-check a{
    color:#1ea0ff;
    text-decoration:none;
}

.custom-check a:hover{
    color:#fff;
}

/* BUTTON */

.register-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:15px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:0.4s;
}

.register-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,123,255,0.35);
}

/* DIVIDER */

.divider{
    text-align:center;
    margin:35px 0;
    position:relative;
}

.divider span{
    color:#b7c3d3;
    font-size:14px;
    background:#0a2344;
    padding:0 15px;
    position:relative;
    z-index:2;
}

.divider::before{
    content:'';
    position:absolute;
    width:100%;
    height:1px;
    background:rgba(255,255,255,0.08);
    left:0;
    top:50%;
}

/* SOCIAL */

.social-login{
    display:flex;
    gap:15px;
}

.social-btn{
    flex:1;
    height:55px;
    border-radius:14px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    text-decoration:none;
    transition:0.4s;
}

.social-btn:hover{
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    transform:translateY(-3px);
    color:#fff;
}

/* LOGIN LINK */

.login-link{
    text-align:center;
    margin-top:30px;
    color:#c2d1e3;
    font-size:15px;
}

.login-link a{
    color:#1ea0ff;
    text-decoration:none;
    font-weight:600;
}

.login-link a:hover{
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:576px){

    .register-section{
        padding:80px 0;
    }

    .register-card{
        padding:35px 25px;
    }

    .register-header h2{
        font-size:32px;
    }

    .social-login{
        flex-direction:column;
    }
}
/* =========================
   PRICING SECTION
========================= */

.pricing-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position:relative;
    overflow:hidden;
}

/* BACKGROUND EFFECT */

.pricing-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,123,255,0.08);
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(100px);
}

/* SECTION TITLE */

.pricing-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.pricing-title{
    color:#fff;
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.pricing-text{
    color:#c2d1e3;
    font-size:17px;
    line-height:1.9;
}

/* CARD */

.pricing-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:45px 35px;
    position:relative;
    overflow:hidden;
    transition:0.4s;
    backdrop-filter:blur(10px);
    height:100%;
}

.pricing-card:hover{
    transform:translateY(-10px);
    border-color:rgba(0,153,255,0.4);
}

/* ACTIVE PLAN */

.active-plan{
    border:2px solid #1ea0ff;
    transform:scale(1.03);
    box-shadow:0 15px 40px rgba(0,123,255,0.15);
}

.popular-badge{
    position:absolute;
    top:20px;
    right:-40px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    padding:10px 50px;
    transform:rotate(45deg);
    font-size:13px;
    font-weight:600;
}

/* HEADER */

.pricing-header{
    text-align:center;
    margin-bottom:35px;
}

.pricing-header h3{
    color:#fff;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.price{
    color:#1ea0ff;
    font-size:55px;
    font-weight:800;
    margin-bottom:15px;
}

.price span{
    color:#b7c3d3;
    font-size:16px;
    font-weight:400;
}

.pricing-header p{
    color:#c2d1e3;
    font-size:15px;
}

/* FEATURES */

.pricing-features{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.pricing-features li{
    color:#d1dceb;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,0.06);
    font-size:16px;
    display:flex;
    align-items:center;
    gap:12px;
}

.pricing-features li i{
    color:#1ea0ff;
    font-size:15px;
}

/* BUTTON */

.pricing-btn{
    width:100%;
    height:58px;
    border-radius:15px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:0.4s;
}

.pricing-btn:hover{
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    transform:translateY(-3px);
}

.active-btn{
    background:linear-gradient(45deg,#0066ff,#00a2ff);
}

/* RESPONSIVE */

@media(max-width:991px){

    .pricing-section{
        padding:80px 0;
    }

    .pricing-title{
        font-size:40px;
    }

    .active-plan{
        transform:none;
    }
}

@media(max-width:576px){

    .pricing-title{
        font-size:32px;
    }

    .pricing-text{
        font-size:15px;
    }

    .pricing-card{
        padding:35px 25px;
    }

    .price{
        font-size:45px;
    }
}
/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position:relative;
    overflow:hidden;
}

/* BACKGROUND EFFECT */

.contact-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,123,255,0.08);
    border-radius:50%;
    top:-150px;
    left:-150px;
    filter:blur(100px);
}

/* SECTION TITLE */

.contact-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.contact-title{
    color:#fff;
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.contact-text{
    color:#c2d1e3;
    font-size:17px;
    line-height:1.9;
}

/* CONTACT INFO */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    padding:28px;
    backdrop-filter:blur(10px);
    transition:0.4s;
}

.contact-box:hover{
    transform:translateY(-5px);
    border-color:rgba(0,153,255,0.4);
}

.contact-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:18px;
    background:rgba(255,138,0,0.15);
    color:#ff9b2f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.contact-icon.blue{
    background:rgba(0,123,255,0.15);
    color:#1ea0ff;
}

.contact-icon.orange{
    background:rgba(255,138,0,0.15);
    color:#ff9b2f;
}

.contact-icon.green{
    background:rgba(0,255,140,0.15);
    color:#00d47e;
}

.contact-box h5{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
}

.contact-box p{
    color:#c2d1e3;
    margin:0;
    line-height:1.7;
}

/* FORM BOX */

.contact-form-box{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:40px;
    backdrop-filter:blur(10px);
}

/* INPUT */

.input-box{
    margin-bottom:22px;
}

.input-box label{
    color:#fff;
    font-size:15px;
    font-weight:500;
    margin-bottom:10px;
    display:block;
}

.input-field,
.textarea-field{
    position:relative;
}

.input-field i,
.textarea-field i{
    position:absolute;
    left:18px;
    top:22px;
    color:#1ea0ff;
    font-size:18px;
}

.input-field input,
.textarea-field textarea{
    width:100%;
    border:none;
    outline:none;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:15px;
    padding:0 20px 0 55px;
    color:#fff;
    transition:0.3s;
}

.input-field input{
    height:60px;
}

.textarea-field textarea{
    padding-top:18px;
    resize:none;
}

.input-field input:focus,
.textarea-field textarea:focus{
    border-color:#1ea0ff;
    box-shadow:0 0 15px rgba(0,123,255,0.2);
}

.input-field input::placeholder,
.textarea-field textarea::placeholder{
    color:#b7c3d3;
}

/* BUTTON */

.contact-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:15px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:0.4s;
}

.contact-btn i{
    margin-left:10px;
}

.contact-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,123,255,0.35);
}

/* RESPONSIVE */

@media(max-width:991px){

    .contact-section{
        padding:80px 0;
    }

    .contact-title{
        font-size:40px;
    }
}

@media(max-width:576px){

    .contact-title{
        font-size:32px;
    }

    .contact-text{
        font-size:15px;
    }

    .contact-form-box{
        padding:30px 20px;
    }

    .contact-box{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }
}
/* =========================
   PRICING SECTION
========================= */

.pricing-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position:relative;
    overflow:hidden;
}

.pricing-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,123,255,0.08);
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(100px);
}

/* SECTION TITLE */

.pricing-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.pricing-title{
    color:#fff;
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.pricing-text{
    color:#c2d1e3;
    font-size:17px;
    line-height:1.9;
}

/* CARD */

.pricing-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:45px 35px;
    position:relative;
    overflow:hidden;
    transition:0.4s;
    backdrop-filter:blur(10px);
    height:100%;
}

.pricing-card:hover{
    transform:translateY(-10px);
    border-color:rgba(0,153,255,0.4);
}

/* ACTIVE CARD */

.active-plan{
    border:2px solid #1ea0ff;
    transform:scale(1.03);
    box-shadow:0 15px 40px rgba(0,123,255,0.15);
}

/* BADGE */

.popular-badge{
    position:absolute;
    top:22px;
    right:-45px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    padding:10px 50px;
    transform:rotate(45deg);
    font-size:13px;
    font-weight:600;
}

/* HEADER */

.pricing-header{
    text-align:center;
    margin-bottom:35px;
}

.pricing-header h3{
    color:#fff;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.price{
    color:#1ea0ff;
    font-size:55px;
    font-weight:800;
    margin-bottom:15px;
}

.price span{
    color:#b7c3d3;
    font-size:16px;
    font-weight:400;
}

.pricing-header p{
    color:#c2d1e3;
    font-size:15px;
}

/* FEATURES */

.pricing-features{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.pricing-features li{
    color:#d1dceb;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,0.06);
    font-size:16px;
    display:flex;
    align-items:center;
    gap:12px;
}

.pricing-features li i{
    color:#1ea0ff;
    font-size:15px;
}

/* BUTTON */

.pricing-btn{
    width:100%;
    height:58px;
    border-radius:15px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:0.4s;
}

.pricing-btn:hover{
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    transform:translateY(-3px);
}

.active-btn{
    background:linear-gradient(45deg,#0066ff,#00a2ff);
}

/* RESPONSIVE */

@media(max-width:991px){

    .pricing-section{
        padding:80px 0;
    }

    .pricing-title{
        font-size:40px;
    }

    .active-plan{
        transform:none;
    }
}

@media(max-width:576px){

    .pricing-title{
        font-size:32px;
    }

    .pricing-text{
        font-size:15px;
    }

    .pricing-card{
        padding:35px 25px;
    }

    .price{
        font-size:45px;
    }
}
/* =========================
   TECHNOLOGY SECTION
========================= */

.technology-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position:relative;
    overflow:hidden;
}

/* BACKGROUND EFFECT */

.technology-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,123,255,0.08);
    border-radius:50%;
    top:-150px;
    left:-150px;
    filter:blur(100px);
}

/* SECTION TITLE */

.tech-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.tech-title{
    color:#fff;
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.tech-text{
    color:#c2d1e3;
    font-size:17px;
    line-height:1.9;
}

/* TECH CARD */

.tech-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    padding:35px 25px;
    text-align:center;
    transition:0.4s;
    backdrop-filter:blur(10px);
    height:100%;
}

.tech-card:hover{
    transform:translateY(-10px);
    border-color:rgba(0,153,255,0.4);
    box-shadow:0 15px 35px rgba(0,123,255,0.15);
}

/* IMAGE */

.tech-card img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:20px;
    transition:0.4s;
}

.tech-card:hover img{
    transform:scale(1.1);
}

/* TITLE */

.tech-card h5{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin:0;
}

/* RESPONSIVE */

@media(max-width:991px){

    .technology-section{
        padding:80px 0;
    }

    .tech-title{
        font-size:40px;
    }
}

@media(max-width:576px){

    .tech-title{
        font-size:32px;
    }

    .tech-text{
        font-size:15px;
    }

    .tech-card{
        padding:25px 15px;
    }

    .tech-card img{
        width:55px;
        height:55px;
    }

    .tech-card h5{
        font-size:17px;
    }
}
/* =========================
   PORTFOLIO SECTION
========================= */

.portfolio-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position:relative;
    overflow:hidden;
}

/* BACKGROUND EFFECT */

.portfolio-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,123,255,0.08);
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(100px);
}

/* SECTION TITLE */

.portfolio-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.portfolio-title{
    color:#fff;
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.portfolio-text{
    color:#c2d1e3;
    font-size:17px;
    line-height:1.9;
}

/* CARD */

.portfolio-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    overflow:hidden;
    transition:0.4s;
    backdrop-filter:blur(10px);
    height:100%;
}

.portfolio-card:hover{
    transform:translateY(-10px);
    border-color:rgba(0,153,255,0.4);
    box-shadow:0 15px 35px rgba(0,123,255,0.15);
}

/* IMAGE */

.portfolio-image{
    position:relative;
    overflow:hidden;
}

.portfolio-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.5s;
}

.portfolio-card:hover img{
    transform:scale(1.1);
}

/* OVERLAY */

.portfolio-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(3,18,36,0.7);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.4s;
}

.portfolio-card:hover .portfolio-overlay{
    opacity:1;
}

/* BUTTON */

.portfolio-btn{
    width:65px;
    height:65px;
    border-radius:50%;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    text-decoration:none;
    transition:0.4s;
}

.portfolio-btn:hover{
    transform:rotate(360deg);
    color:#fff;
}

/* CONTENT */

.portfolio-content{
    padding:30px;
}

.portfolio-content span{
    color:#1ea0ff;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    display:inline-block;
    margin-bottom:12px;
}

.portfolio-content h4{
    color:#fff;
    font-size:26px;
    font-weight:700;
    margin-bottom:15px;
}

.portfolio-content p{
    color:#c2d1e3;
    line-height:1.8;
    margin:0;
}

/* RESPONSIVE */

@media(max-width:991px){

    .portfolio-section{
        padding:80px 0;
    }

    .portfolio-title{
        font-size:40px;
    }
}

@media(max-width:576px){

    .portfolio-title{
        font-size:32px;
    }

    .portfolio-text{
        font-size:15px;
    }

    .portfolio-content{
        padding:25px 20px;
    }

    .portfolio-content h4{
        font-size:22px;
    }

    .portfolio-image img{
        height:220px;
    }
}
/* =========================
   TOUR PACKAGE SECTION
========================= */

.tour-package-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position:relative;
    overflow:hidden;
}

.tour-package-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,123,255,0.08);
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(100px);
}

/* SECTION TITLE */

.tour-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.tour-title{
    color:#fff;
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.tour-text{
    color:#c2d1e3;
    font-size:17px;
    line-height:1.9;
}

/* TOUR CARD */

.tour-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    overflow:hidden;
    transition:0.4s;
    backdrop-filter:blur(10px);
    height:100%;
}

.tour-card:hover{
    transform:translateY(-10px);
    border-color:rgba(0,153,255,0.4);
    box-shadow:0 15px 35px rgba(0,123,255,0.15);
}

/* IMAGE */

.tour-image{
    position:relative;
    overflow:hidden;
}

.tour-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.5s;
}

.tour-card:hover .tour-image img{
    transform:scale(1.1);
}

/* PRICE */

.tour-price{
    position:absolute;
    top:20px;
    right:20px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    padding:10px 18px;
    border-radius:12px;
    font-size:18px;
    font-weight:700;
}

/* CONTENT */

.tour-content{
    padding:30px;
}

.tour-content span{
    color:#1ea0ff;
    font-size:14px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:15px;
}

.tour-content h4{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
}

.tour-content p{
    color:#c2d1e3;
    line-height:1.8;
    margin-bottom:25px;
}

/* FOOTER */

.tour-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.tour-days{
    color:#c2d1e3;
    display:flex;
    align-items:center;
    gap:8px;
}

.tour-days i{
    color:#1ea0ff;
}

/* BUTTON */

.explore-btn{
    padding:12px 22px;
    border-radius:12px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.explore-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

/* VIEW ALL */

.view-all-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:16px 35px;
    border-radius:15px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.view-all-btn:hover{
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    transform:translateY(-3px);
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:991px){

    .tour-package-section{
        padding:80px 0;
    }

    .tour-title{
        font-size:40px;
    }
}

@media(max-width:576px){

    .tour-title{
        font-size:32px;
    }

    .tour-text{
        font-size:15px;
    }

    .tour-content{
        padding:25px 20px;
    }

    .tour-content h4{
        font-size:24px;
    }

    .tour-image img{
        height:220px;
    }

    .tour-footer{
        flex-direction:column;
        align-items:flex-start;
    }

    .explore-btn{
        width:100%;
        text-align:center;
    }
}
/* =========================
   EXTRA CSS FOR TOUR PAGE
========================= */

/* FILTER */

.tour-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.tour-filter button{
    padding:12px 25px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    font-weight:600;
    transition:0.4s;
}

.tour-filter button:hover,
.tour-filter button.active{
    background:linear-gradient(45deg,#0066ff,#00a2ff);
}

/* PAGINATION */

.pagination-box{
    margin-top:60px;
    display:flex;
    justify-content:center;
    gap:15px;
}

.pagination-box a{
    width:50px;
    height:50px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.pagination-box a:hover,
.pagination-box a.active{
    background:linear-gradient(45deg,#0066ff,#00a2ff);
}

/* RESPONSIVE */

@media(max-width:576px){

    .tour-filter{
        gap:10px;
    }

    .tour-filter button{
        padding:10px 18px;
        font-size:14px;
    }

    .pagination-box{
        gap:10px;
    }

    .pagination-box a{
        width:45px;
        height:45px;
    }
}
/* =========================
   TOUR DETAILS PAGE
========================= */

.tour-details-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position:relative;
    overflow:hidden;
}

/* IMAGE */

.tour-details-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:30px;
}

/* CONTENT */

.tour-details-content{
    margin-top:40px;
}

.tour-location{
    color:#1ea0ff;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:20px;
}

.tour-details-content h2{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin-bottom:35px;
}

/* TOUR INFO */

.tour-info{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:40px;
}

.tour-info-box{
    flex:1;
    min-width:220px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:25px;
    display:flex;
    gap:15px;
    align-items:center;
}

.tour-info-box i{
    width:60px;
    height:60px;
    border-radius:15px;
    background:rgba(0,123,255,0.15);
    color:#1ea0ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.tour-info-box span{
    color:#b7c3d3;
    font-size:14px;
}

.tour-info-box h6{
    color:#fff;
    margin-top:5px;
    font-size:18px;
}

/* DESCRIPTION */

.tour-description h4,
.tour-included h4{
    color:#fff;
    font-size:30px;
    margin-bottom:20px;
}

.tour-description p{
    color:#c2d1e3;
    line-height:1.9;
    margin-bottom:20px;
}

/* INCLUDED */

.tour-included{
    margin-top:50px;
}

.tour-included ul{
    list-style:none;
    padding:0;
}

.tour-included ul li{
    color:#d1dceb;
    margin-bottom:18px;
    display:flex;
    gap:12px;
    align-items:center;
}

.tour-included ul li i{
    color:#1ea0ff;
}

/* BOOKING CARD */

.booking-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:35px;
    position:sticky;
    top:120px;
    backdrop-filter:blur(10px);
}

/* PRICE */

.booking-price{
    color:#1ea0ff;
    font-size:48px;
    font-weight:800;
    margin-bottom:30px;
}

.booking-price span{
    color:#b7c3d3;
    font-size:16px;
    font-weight:400;
}

/* FORM */

.input-box{
    margin-bottom:22px;
}

.input-box label{
    color:#fff;
    margin-bottom:10px;
    display:block;
    font-size:15px;
}

.input-box input,
.input-box select{
    width:100%;
    height:58px;
    border:none;
    outline:none;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:15px;
    padding:0 18px;
    color:#fff;
}

.input-box input::placeholder{
    color:#b7c3d3;
}

.input-box select option{
    color:#000;
}

/* BUTTON */

.book-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:15px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:0.4s;
}

.book-btn i{
    margin-left:10px;
}

.book-btn:hover{
    transform:translateY(-3px);
}

/* CONTACT */

.booking-contact{
    margin-top:35px;
    text-align:center;
}

.booking-contact h5{
    color:#fff;
    margin-bottom:15px;
}

.booking-contact a{
    color:#1ea0ff;
    text-decoration:none;
    font-weight:600;
}

/* RESPONSIVE */

@media(max-width:991px){

    .tour-details-section{
        padding:80px 0;
    }

    .tour-details-content h2{
        font-size:40px;
    }

    .booking-card{
        position:relative;
        top:0;
    }
}

@media(max-width:576px){

    .tour-details-content h2{
        font-size:32px;
    }

    .tour-details-image img{
        height:300px;
    }

    .tour-info-box{
        min-width:100%;
    }

    .booking-price{
        font-size:38px;
    }
}
/* =========================
   VISA ASSISTANCE SECTION
========================= */

.visa-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position:relative;
    overflow:hidden;
}

/* BACKGROUND EFFECT */

.visa-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,123,255,0.08);
    border-radius:50%;
    top:-150px;
    left:-150px;
    filter:blur(100px);
}

/* CONTENT */

.visa-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.visa-title{
    color:#fff;
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:22px;
}

.visa-text{
    color:#c2d1e3;
    font-size:17px;
    line-height:1.9;
    margin-bottom:40px;
}

/* FEATURES */

.visa-features{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.visa-box{
    display:flex;
    gap:18px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    padding:25px;
    backdrop-filter:blur(10px);
    transition:0.4s;
}

.visa-box:hover{
    transform:translateX(10px);
    border-color:rgba(0,153,255,0.4);
}

.visa-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:18px;
    background:rgba(0,123,255,0.15);
    color:#1ea0ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.visa-icon.blue{
    background:rgba(0,200,255,0.15);
    color:#00c8ff;
}

.visa-icon.orange{
    background:rgba(255,138,0,0.15);
    color:#ff9b2f;
}

.visa-box h5{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
}

.visa-box p{
    color:#c2d1e3;
    line-height:1.7;
    margin:0;
}

/* BUTTON */

.visa-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:40px;
    padding:16px 35px;
    border-radius:15px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.visa-btn:hover{
    transform:translateY(-4px);
    color:#fff;
}

/* IMAGE */

.visa-image{
    position:relative;
    text-align:center;
}

.visa-image img{
    width:100%;
    max-width:550px;
    animation:float 4s ease-in-out infinite;
}

/* FLOAT CARD */

.visa-card{
    position:absolute;
    bottom:30px;
    left:0;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:20px 25px;
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.visa-card i{
    width:65px;
    height:65px;
    border-radius:18px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.visa-card h4{
    font-size:30px;
    font-weight:800;
    margin-bottom:5px;
}

.visa-card p{
    margin:0;
    color:#d1dceb;
}

/* ANIMATION */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* RESPONSIVE */

@media(max-width:991px){

    .visa-section{
        padding:80px 0;
    }

    .visa-title{
        font-size:40px;
    }

    .visa-image{
        margin-top:50px;
    }
}

@media(max-width:576px){

    .visa-title{
        font-size:32px;
    }

    .visa-text{
        font-size:15px;
    }

    .visa-box{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .visa-card{
        position:relative;
        margin-top:25px;
        justify-content:center;
    }
}
/* =========================
   EXTRA CSS FOR VISA PAGE
========================= */

/* SERVICE CARD */

.visa-service-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:40px 30px;
    position:relative;
    overflow:hidden;
    transition:0.4s;
    backdrop-filter:blur(10px);
    height:100%;
}

.visa-service-card:hover{
    transform:translateY(-10px);
    border-color:rgba(0,153,255,0.4);
}

.active-card{
    border:2px solid #1ea0ff;
}

/* BADGE */

.popular-badge{
    position:absolute;
    top:20px;
    right:-40px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    padding:10px 50px;
    transform:rotate(45deg);
    font-size:13px;
    font-weight:600;
}

/* ICON */

.visa-service-icon{
    width:85px;
    height:85px;
    border-radius:22px;
    background:rgba(0,123,255,0.15);
    color:#1ea0ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    margin-bottom:30px;
}

.visa-service-icon.blue{
    background:rgba(0,200,255,0.15);
    color:#00c8ff;
}

.visa-service-icon.orange{
    background:rgba(255,138,0,0.15);
    color:#ff9b2f;
}

/* CONTENT */

.visa-service-card h4{
    color:#fff;
    font-size:30px;
    font-weight:700;
    margin-bottom:18px;
}

.visa-service-card p{
    color:#c2d1e3;
    line-height:1.8;
    margin-bottom:25px;
}

/* LIST */

.visa-service-card ul{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.visa-service-card ul li{
    color:#d1dceb;
    margin-bottom:16px;
    display:flex;
    align-items:center;
    gap:10px;
}

.visa-service-card ul li i{
    color:#1ea0ff;
}

/* BUTTON */

.active-btn{
    background:linear-gradient(45deg,#0066ff,#00a2ff);
}

/* PROCESS SECTION */

.visa-process{
    margin-top:110px;
}

/* PROCESS CARD */

.process-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    padding:35px 25px;
    text-align:center;
    backdrop-filter:blur(10px);
    transition:0.4s;
    height:100%;
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:rgba(0,153,255,0.4);
}

/* NUMBER */

.process-number{
    width:80px;
    height:80px;
    border-radius:50%;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:800;
    margin:auto;
    margin-bottom:25px;
}

/* TITLE */

.process-card h5{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

/* TEXT */

.process-card p{
    color:#c2d1e3;
    line-height:1.8;
    margin:0;
}

/* RESPONSIVE */

@media(max-width:576px){

    .visa-service-card{
        padding:35px 25px;
    }

    .visa-service-card h4{
        font-size:26px;
    }

    .process-card h5{
        font-size:22px;
    }

    .visa-process{
        margin-top:80px;
    }
}
/* =========================
   VISA DETAILS PAGE
========================= */

.visa-details-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position:relative;
    overflow:hidden;
}

/* IMAGE */

.visa-details-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:30px;
}

/* CONTENT */

.visa-details-content{
    margin-top:40px;
}

.visa-country{
    color:#1ea0ff;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.visa-details-content h2{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin-bottom:35px;
}

/* INFO BOX */

.visa-info-wrapper{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:45px;
}

.visa-info-box{
    flex:1;
    min-width:220px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:15px;
}

.visa-info-box i{
    width:60px;
    height:60px;
    border-radius:15px;
    background:rgba(0,123,255,0.15);
    color:#1ea0ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.visa-info-box span{
    color:#b7c3d3;
    font-size:14px;
}

.visa-info-box h6{
    color:#fff;
    margin-top:5px;
    font-size:18px;
}

/* DESCRIPTION */

.visa-description h4,
.visa-included h4{
    color:#fff;
    font-size:30px;
    margin-bottom:20px;
}

.visa-description p{
    color:#c2d1e3;
    line-height:1.9;
    margin-bottom:20px;
}

/* INCLUDED */

.visa-included{
    margin-top:50px;
}

.visa-included ul{
    list-style:none;
    padding:0;
}

.visa-included ul li{
    color:#d1dceb;
    margin-bottom:18px;
    display:flex;
    align-items:center;
    gap:12px;
}

.visa-included ul li i{
    color:#1ea0ff;
}

/* PRICING CARD */

.pricing-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:35px;
    position:sticky;
    top:120px;
    backdrop-filter:blur(10px);
}

/* PRICE */

.visa-price{
    color:#1ea0ff;
    font-size:48px;
    font-weight:800;
    margin-bottom:30px;
}

.visa-price span{
    color:#b7c3d3;
    font-size:16px;
    font-weight:400;
}

/* FORM */

.input-box{
    margin-bottom:22px;
}

.input-box label{
    color:#fff;
    margin-bottom:10px;
    display:block;
    font-size:15px;
}

.input-box input,
.input-box select{
    width:100%;
    height:58px;
    border:none;
    outline:none;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:15px;
    padding:0 18px;
    color:#fff;
}

.input-box input::placeholder{
    color:#b7c3d3;
}

.input-box select option{
    color:#000;
}

/* BUTTON */

.visa-apply-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:15px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:0.4s;
}

.visa-apply-btn i{
    margin-left:10px;
}

.visa-apply-btn:hover{
    transform:translateY(-3px);
}

/* CONTACT */

.visa-contact{
    margin-top:35px;
    text-align:center;
}

.visa-contact h5{
    color:#fff;
    margin-bottom:15px;
}

.visa-contact a{
    color:#1ea0ff;
    text-decoration:none;
    font-weight:600;
}

/* RESPONSIVE */

@media(max-width:991px){

    .visa-details-section{
        padding:80px 0;
    }

    .visa-details-content h2{
        font-size:40px;
    }

    .pricing-card{
        position:relative;
        top:0;
    }
}

@media(max-width:576px){

    .visa-details-content h2{
        font-size:32px;
    }

    .visa-details-image img{
        height:300px;
    }

    .visa-info-box{
        min-width:100%;
    }

    .visa-price{
        font-size:38px;
    }
}
/* =========================
   ABOUT PAGE
========================= */

.about-hero-section,
.company-section,
.counter-section,
.team-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position:relative;
    overflow:hidden;
}

/* TITLE */

.about-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.about-title{
    color:#fff;
    font-size:58px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.about-text{
    color:#c2d1e3;
    line-height:1.9;
    font-size:17px;
    margin-bottom:35px;
}

/* BUTTON */

.about-btn-group{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.about-btn,
.about-btn-outline{
    padding:16px 32px;
    border-radius:15px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.about-btn{
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
}

.about-btn-outline{
    border:1px solid rgba(255,255,255,0.15);
    color:#fff;
}

.about-btn:hover,
.about-btn-outline:hover{
    transform:translateY(-4px);
    color:#fff;
}

/* IMAGE */

.about-hero-image,
.company-image{
    position:relative;
}

.about-hero-image img,
.company-image img{
    width:100%;
    border-radius:30px;
}

/* EXPERIENCE CARD */

.experience-card{
    position:absolute;
    bottom:30px;
    left:30px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    padding:25px 30px;
    border-radius:20px;
    text-align:center;
}

.experience-card h3{
    color:#1ea0ff;
    font-size:42px;
    font-weight:800;
}

.experience-card p{
    color:#fff;
    margin:0;
}

/* COMPANY */

.company-content h2,
.team-title{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin-bottom:25px;
}

.company-content p,
.team-text{
    color:#c2d1e3;
    line-height:1.9;
}

/* FEATURES */

.company-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-weight:500;
}

.feature-box i{
    width:35px;
    height:35px;
    border-radius:10px;
    background:rgba(0,123,255,0.15);
    color:#1ea0ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* COUNTER */

.counter-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    text-align:center;
    padding:45px 25px;
    transition:0.4s;
}

.counter-card:hover{
    transform:translateY(-10px);
}

.counter-card h2{
    color:#1ea0ff;
    font-size:55px;
    font-weight:800;
    margin-bottom:15px;
}

.counter-card p{
    color:#fff;
    margin:0;
}

/* TEAM */

.team-card{
    background:rgba(255,255,255,0.05);
    border-radius:25px;
    overflow:hidden;
    transition:0.4s;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-image img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.team-content{
    padding:30px;
    text-align:center;
}

.team-content h4{
    color:#fff;
    font-size:26px;
    margin-bottom:10px;
}

.team-content span{
    color:#1ea0ff;
}

/* RESPONSIVE */

@media(max-width:991px){

    .about-title{
        font-size:46px;
    }

    .company-content h2,
    .team-title{
        font-size:40px;
    }
}

@media(max-width:576px){

    .about-hero-section,
    .company-section,
    .counter-section,
    .team-section{
        padding:80px 0;
    }

    .about-title{
        font-size:34px;
    }

    .company-content h2,
    .team-title{
        font-size:32px;
    }

    .company-features{
        grid-template-columns:1fr;
    }

    .team-image img{
        height:280px;
    }
}
/* =========================
   WHY CHOOSE US PAGE
========================= */

.why-hero-section,
.why-service-section,
.why-counter-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position:relative;
    overflow:hidden;
}

/* TITLE */

.why-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.why-title,
.section-title{
    color:#fff;
    font-size:55px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.why-text,
.section-text{
    color:#c2d1e3;
    line-height:1.9;
    font-size:17px;
}

/* FEATURES */

.why-feature-list{
    margin-top:35px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.why-feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
    font-weight:500;
}

.why-feature-item i{
    width:40px;
    height:40px;
    border-radius:12px;
    background:rgba(0,123,255,0.15);
    color:#1ea0ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* BUTTON */

.why-btn{
    display:inline-block;
    margin-top:40px;
    padding:16px 35px;
    border-radius:15px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.why-btn:hover{
    transform:translateY(-4px);
    color:#fff;
}

/* IMAGE */

.why-image{
    position:relative;
}

.why-image img{
    width:100%;
    border-radius:30px;
}

/* FLOAT CARD */

.why-card{
    position:absolute;
    bottom:30px;
    left:30px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:25px 30px;
    text-align:center;
}

.why-card h3{
    color:#1ea0ff;
    font-size:42px;
    font-weight:800;
}

.why-card p{
    color:#fff;
    margin:0;
}

/* BOX */

.why-box{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    transition:0.4s;
    height:100%;
}

.why-box:hover{
    transform:translateY(-10px);
    border-color:rgba(0,153,255,0.4);
}

/* ICON */

.why-icon{
    width:85px;
    height:85px;
    border-radius:22px;
    background:rgba(0,123,255,0.15);
    color:#1ea0ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    margin:auto;
    margin-bottom:30px;
}

.why-icon.blue{
    background:rgba(0,200,255,0.15);
    color:#00c8ff;
}

.why-icon.orange{
    background:rgba(255,138,0,0.15);
    color:#ff9b2f;
}

.why-icon.green{
    background:rgba(0,255,140,0.15);
    color:#00d47e;
}

.why-icon.purple{
    background:rgba(170,0,255,0.15);
    color:#c06bff;
}

.why-icon.red{
    background:rgba(255,0,80,0.15);
    color:#ff4f7b;
}

/* TEXT */

.why-box h4{
    color:#fff;
    font-size:28px;
    margin-bottom:18px;
}

.why-box p{
    color:#c2d1e3;
    line-height:1.8;
}

/* COUNTER */

.counter-box{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    text-align:center;
    padding:45px 25px;
    transition:0.4s;
}

.counter-box:hover{
    transform:translateY(-10px);
}

.counter-box h2{
    color:#1ea0ff;
    font-size:55px;
    font-weight:800;
    margin-bottom:15px;
}

.counter-box p{
    color:#fff;
    margin:0;
}

/* RESPONSIVE */

@media(max-width:991px){

    .why-title,
    .section-title{
        font-size:42px;
    }
}

@media(max-width:576px){

    .why-hero-section,
    .why-service-section,
    .why-counter-section{
        padding:80px 0;
    }

    .why-title,
    .section-title{
        font-size:32px;
    }

    .why-text,
    .section-text{
        font-size:15px;
    }

    .why-box{
        padding:35px 25px;
    }

    .counter-box h2{
        font-size:42px;
    }
}
/* =========================
   JOIN OUR TEAM PAGE
========================= */

.career-hero-section,
.job-section,
.apply-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position:relative;
    overflow:hidden;
}

/* SUBTITLE */

.career-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

/* TITLE */

.career-title,
.section-title{
    color:#fff;
    font-size:55px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

/* TEXT */

.career-text,
.section-text{
    color:#c2d1e3;
    line-height:1.9;
    font-size:17px;
}

/* FEATURE */

.career-feature-list{
    margin-top:35px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.career-feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
}

.career-feature-item i{
    width:40px;
    height:40px;
    border-radius:12px;
    background:rgba(0,123,255,0.15);
    color:#1ea0ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* IMAGE */

.career-image img{
    width:100%;
    border-radius:30px;
}

/* JOB CARD */

.job-wrapper{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.job-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    padding:35px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    transition:0.4s;
    flex-wrap:wrap;
}

.job-card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,153,255,0.4);
}

.job-left h4{
    color:#fff;
    font-size:30px;
    margin-bottom:15px;
}

/* INFO */

.job-info{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.job-info span{
    color:#c2d1e3;
    display:flex;
    align-items:center;
    gap:8px;
}

.job-info i{
    color:#1ea0ff;
}

/* BUTTON */

.apply-btn,
.submit-btn{
    padding:15px 30px;
    border:none;
    border-radius:15px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.apply-btn:hover,
.submit-btn:hover{
    transform:translateY(-4px);
    color:#fff;
}

/* FORM */

.apply-form-box{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:45px;
}

/* INPUT */

.input-box{
    margin-bottom:25px;
}

.input-box label{
    color:#fff;
    margin-bottom:10px;
    display:block;
}

.input-box input,
.input-box select,
.input-box textarea{
    width:100%;
    border:none;
    outline:none;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:15px;
    padding:15px 20px;
    color:#fff;
}

.input-box input,
.input-box select{
    height:58px;
}

.input-box textarea{
    resize:none;
}

.input-box input::placeholder,
.input-box textarea::placeholder{
    color:#b7c3d3;
}

.input-box select option{
    color:#000;
}

/* RESPONSIVE */

@media(max-width:991px){

    .career-title,
    .section-title{
        font-size:42px;
    }

    .job-card{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:576px){

    .career-hero-section,
    .job-section,
    .apply-section{
        padding:80px 0;
    }

    .career-title,
    .section-title{
        font-size:32px;
    }

    .career-text,
    .section-text{
        font-size:15px;
    }

    .apply-form-box{
        padding:30px 20px;
    }

    .job-left h4{
        font-size:24px;
    }
}
/* =========================
   LIFE AT COMPANY PAGE
========================= */

.life-hero-section,
.culture-section,
.gallery-section,
.benefit-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
    position:relative;
    overflow:hidden;
}

/* SUBTITLE */

.life-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

/* TITLE */

.life-title,
.section-title{
    color:#fff;
    font-size:55px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

/* TEXT */

.life-text,
.section-text{
    color:#c2d1e3;
    line-height:1.9;
    font-size:17px;
}

/* IMAGE */

.life-image img,
.benefit-image img{
    width:100%;
    border-radius:30px;
}

/* FEATURES */

.life-feature-list,
.benefit-list{
    margin-top:35px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.life-feature-item,
.benefit-item{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
}

.life-feature-item i,
.benefit-item i{
    width:40px;
    height:40px;
    border-radius:12px;
    background:rgba(0,123,255,0.15);
    color:#1ea0ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* BUTTON */

.life-btn{
    display:inline-block;
    margin-top:40px;
    padding:16px 35px;
    border-radius:15px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.life-btn:hover{
    transform:translateY(-4px);
    color:#fff;
}

/* CULTURE CARD */

.culture-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    transition:0.4s;
    height:100%;
}

.culture-card:hover{
    transform:translateY(-10px);
    border-color:rgba(0,153,255,0.4);
}

/* ICON */

.culture-icon{
    width:85px;
    height:85px;
    border-radius:22px;
    background:rgba(0,123,255,0.15);
    color:#1ea0ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    margin:auto;
    margin-bottom:30px;
}

.culture-icon.blue{
    background:rgba(0,200,255,0.15);
    color:#00c8ff;
}

.culture-icon.orange{
    background:rgba(255,138,0,0.15);
    color:#ff9b2f;
}

/* TEXT */

.culture-card h4{
    color:#fff;
    font-size:28px;
    margin-bottom:18px;
}

.culture-card p{
    color:#c2d1e3;
    line-height:1.8;
}

/* GALLERY */

.gallery-card{
    overflow:hidden;
    border-radius:25px;
}

.gallery-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.5s;
}

.gallery-card:hover img{
    transform:scale(1.1);
}

/* RESPONSIVE */

@media(max-width:991px){

    .life-title,
    .section-title{
        font-size:42px;
    }
}

@media(max-width:576px){

    .life-hero-section,
    .culture-section,
    .gallery-section,
    .benefit-section{
        padding:80px 0;
    }

    .life-title,
    .section-title{
        font-size:32px;
    }

    .life-text,
    .section-text{
        font-size:15px;
    }

    .culture-card{
        padding:35px 25px;
    }

    .gallery-card img{
        height:240px;
    }
}
/* =========================
   CHECKOUT PAGE
========================= */

.checkout-section{
    padding:110px 0;
    background:linear-gradient(135deg,#031224,#071c3a,#0a2f63);
}

/* TITLE */

.checkout-subtitle{
    color:#1ea0ff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.checkout-title{
    color:#fff;
    font-size:55px;
    font-weight:800;
    margin-bottom:20px;
}

.checkout-text{
    color:#c2d1e3;
    font-size:17px;
    line-height:1.8;
}

/* FORM BOX */

.checkout-form-box,
.order-summary{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:40px;
    backdrop-filter:blur(10px);
}

/* FORM TITLE */

.form-title{
    color:#fff;
    font-size:28px;
    margin-bottom:30px;
}

/* INPUT */

.input-box{
    margin-bottom:22px;
}

.input-box label{
    color:#fff;
    display:block;
    margin-bottom:10px;
}

.input-box input{
    width:100%;
    height:58px;
    border:none;
    outline:none;
    border-radius:15px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    padding:0 18px;
    color:#fff;
}

.input-box input::placeholder{
    color:#b7c3d3;
}

/* PAYMENT */

.payment-method{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.payment-option{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:16px;
    padding:18px 20px;
    color:#fff;
    cursor:pointer;
    transition:0.4s;
}

.payment-option:hover{
    border-color:#1ea0ff;
}

.payment-option span{
    display:flex;
    align-items:center;
    gap:12px;
}

.payment-option i{
    color:#1ea0ff;
}

/* BUTTON */

.checkout-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:15px;
    margin-top:20px;
    background:linear-gradient(45deg,#0066ff,#00a2ff);
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:0.4s;
}

.checkout-btn:hover{
    transform:translateY(-4px);
}

/* ORDER SUMMARY */

.order-summary h4{
    color:#fff;
    font-size:30px;
    margin-bottom:30px;
}

/* PACKAGE */

.summary-package{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:35px;
}

.summary-package img{
    width:110px;
    height:90px;
    object-fit:cover;
    border-radius:18px;
}

.summary-package h5{
    color:#fff;
    margin-bottom:8px;
}

.summary-package p{
    color:#c2d1e3;
    margin:0;
}

/* SUMMARY */

.summary-list{
    border-top:1px solid rgba(255,255,255,0.08);
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:25px 0;
}

.summary-item{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
    color:#c2d1e3;
}

.discount{
    color:#00d47e;
}

/* TOTAL */

.summary-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:25px;
}

.summary-total span{
    color:#fff;
    font-size:18px;
}

.summary-total h3{
    color:#1ea0ff;
    font-size:38px;
    font-weight:800;
}

/* SECURE */

.secure-box{
    margin-top:35px;
    background:rgba(0,123,255,0.12);
    border-radius:18px;
    padding:18px 20px;
    display:flex;
    align-items:center;
    gap:15px;
}

.secure-box i{
    color:#1ea0ff;
    font-size:28px;
}

.secure-box p{
    color:#fff;
    margin:0;
}

/* RESPONSIVE */

@media(max-width:991px){

    .checkout-title{
        font-size:42px;
    }
}

@media(max-width:576px){

    .checkout-section{
        padding:80px 0;
    }

    .checkout-title{
        font-size:32px;
    }

    .checkout-text{
        font-size:15px;
    }

    .checkout-form-box,
    .order-summary{
        padding:30px 20px;
    }

    .summary-total{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }
}