:root {
    --primary: #0D404E !important;
    --light: #F0FBFC;
    --dark: #181d38;
}

/* Font Weights */
.fw-medium { font-weight: 600 !important; }
.fw-semi-bold { font-weight: 700 !important; }

/* Back to Top */
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/* Spinner */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}
#spinner.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
}

/* Buttons */
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: 0.5s;
}
.btn.btn-primary,
.btn.btn-secondary {
    color: #fff;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0;
}
.btn-square { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }

/* Reveal Animation */
.hidden-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.visible-section {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #0c0b0b;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #0c0c0c;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/* Dropdown Menu */
.nav-item .dropdown-menu {
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background: #0d404e;
}
.dropdown-menu .dropdown-item {
    color: #fff;
    padding: 10px 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-item.dropdown:hover .dropdown-item {
    opacity: 1;
    transform: translateX(0);
}
.dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffeb3b;
    transform: translateX(5px);
}
.slide-carousel-wrapper {
        width: 100%;
    }

    .slide-carousel-wrapper img {
        width: 100%;
        height: 100vh;
 	    transition: opacity 1s ease-in-out;
    }

    /* Mobile View */
    @media (max-width: 767px) {
        .slide-carousel-wrapper img {
            height: 25vh; 
        }
    }

    /* Tablet View */
    @media (min-width: 768px) and (max-width: 1024px) {
        .slide-carousel-wrapper img {
            height: 75vh;
        }
    }
/* Animated Dropdown Items */
.dropdown-menu .dropdown-item:nth-child(odd) {
    animation: slideInRight 0.4s ease forwards;
}
.dropdown-menu .dropdown-item:nth-child(even) {
    animation: slideInLeft 0.4s ease forwards;
}
.dropdown-menu .dropdown-item:nth-child(1) { animation-delay: 0.1s; }
.dropdown-menu .dropdown-item:nth-child(2) { animation-delay: 0.2s; }
.dropdown-menu .dropdown-item:nth-child(3) { animation-delay: 0.3s; }
.dropdown-menu .dropdown-item:nth-child(4) { animation-delay: 0.4s; }
.dropdown-menu .dropdown-item:nth-child(5) { animation-delay: 0.5s; }
.dropdown-menu .dropdown-item:nth-child(6) { animation-delay: 0.6s; }

/* Animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Custom Quote Button */
.custom-quote-btn {
        margin: 9px;
    padding: 12px 10px;
    color: #fff;
    border-radius: 50px;
    letter-spacing: -1.5px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}
.custom-quote-btn:hover {
    transform: translateY(-2px);
    color: #131313;
}

/* Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar-light .navbar-nav {
        border-top: 1px solid #060505;
    }
}

.navbar-light.sticky-top {
    top: -100px;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }
    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
        background: #0d404e;
    }
}

/* Feature Card */
.feature-card {
  background-color: #3d5e65;
  text-align: center;
  padding: 3rem;
  color: #fff;

}

.feature-card:hover {
  background-color: #2f4a50;
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: #ffffff;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
    color: #ffffff;
}

.feature-desc {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.5;
}

/*** Header Carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/*** Page Headers ***/
.page-header,
.blogs-header {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)), url(../img/banner_about.png);
}

.blogs-header {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)), url(../img/banner_news.jpg);
}

.blogs-details-header {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner,
.blogs-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    height: 2px;
    background: var(--primary);
    z-index: -1;
}

.section-title::before {
    top: 4px;
    left: -40px;
    width: calc(100% + 80px);
}

.section-title::after {
    bottom: 5px;
    left: -60px;
    width: calc(100% + 120px);
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

/*** Tabs ***/
.nav-tabs .nav-link.active {
    font-weight: bold;
    border: none;
    border-bottom: 3px solid #1a73e8;
}

/*** Services Footer ***/
.services-footer h2 {
    font-size: 24px;
    font-style: normal;
}

/*** Portfolio Cards ***/
.portfolio-card-wrapper {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-bottom: 1px solid #eee;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .overlay {
    opacity: 1;
}

.view-btn {
    border-radius: 50%;
    font-size: 1.25rem;
    padding: 10px 12px;
}

.portfolio-title {
    padding: 15px;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    background: #fff;
    border-top: 1px solid #eee;
}

.portfolio-card {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

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


/*** Service ***/
.service-item {
    background: var(--light);
    transition: 0.5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item *,
.service-item:hover * {
    transition: 0.5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img,
.team-item img {
    transition: 0.5s;
}

.category a:hover img,
.course-item:hover img,
.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before,
.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    width: 0;
    z-index: 1;
}

.testimonial-carousel::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-carousel::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #fff !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #ccc;
    transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
   margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: var(--light); */
    font-weight: normal;
    /* border: 1px solid #fff; */
    border-radius: 50%;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #000;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    position: relative;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer p {
    color: #000;
}

.footer .copyright {
    padding: 50px;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright p {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

/* Footer underline hover effect */
.footer-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease-in-out;
}

.footer-underline:hover::after {
    width: 100%;
}

/* Back to left button */
.back-to-left {
    position: fixed;
    display: none;
    left: 45px;
    bottom: 45px;
    z-index: 99;
}

/* Square button */
.btn-lg-square4 {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    background: #43c554;
    color: #fff;
}

/* Vibrate animation */
@keyframes vibrate {
    0%, 100% { transform: translate(2px, 2px); }
    25% { transform: translate(-2px, 2px); }
    50% { transform: translate(2px, -2px); }
    75% { transform: translate(-2px, -2px); }
}

.vibrate {
    animation: vibrate 0.3s linear infinite;
}

/* Equal height service columns */
.equal-height {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Carousel wrapper positioning */
.service-carousel-wrapper,
.digital-carousel-wrapper,
.industries-carousel-wrapper {
    position: relative;
}

/* Shared carousel nav styles */
#service-carousel .owl-nav,
#digital-carousel .owl-nav,
#industries-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 10px;
}

#service-carousel .owl-nav button,
#digital-carousel .owl-nav button,
#industries-carousel .owl-nav button {
    background-color: #0d404e;
    color: white;
    border: none;
    padding: 5px 12px;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

#service-carousel .owl-nav button:hover,
#digital-carousel .owl-nav button:hover,
#industries-carousel .owl-nav button:hover {
    background-color: #0b3540;
}

#service-carousel .owl-nav button span,
#digital-carousel .owl-nav button span,
#industries-carousel .owl-nav button span {
    font-weight: bold;
}

/* Carousel item structure */
.owl-carousel .item {
    width: 100%;
}

.text-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-item .position-relative {
    height: 60%;
    overflow: hidden;
}

.text-item .text-center {
    height: 40%;
    padding: 1rem;
    background-color: #0d404e;
}
  .pb_90 {
        padding-bottom: 90px !important;
    }

    .pt_60 {
        padding-top: 60px !important;
    }

    .booking-area {
        position: relative;
        overflow: hidden;
    }

    .booking-area .background-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        height: 150%;
        width: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
        transform: translateY(0);
        transition: transform 0.1s ease-out;
    }

    .booking-area .content {
        position: relative;
        z-index: 1;
    }

    .form-control {
         background-color: #06bbcc;
       color: #0f0e0e !important;
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .custom-btn {
        background-color: #3367c1;
        color: white;
        border: none;
        transition: background-color 0.3s ease;
    }

    .custom-btn:hover {
        background-color: #264d9c;
    }

    /* Custom input style ending in 002 */
    .input-style-002 {
        border: 2px solid rgba(255, 255, 255, 0.4);
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border-radius: 8px;
        padding: 12px 15px;
        transition: border-color 0.3s ease, background-color 0.3s ease;
    }

    .input-style-002:focus {
        border-color: #ffffff;
        background-color: rgba(255, 255, 255, 0.2);
        outline: none;
    }
    .bg-booking {
    position: absolute;
    background-color: #3367c1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
}
/* Plane cards */
.plane-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.plane-item:hover {
    transform: translateY(-5px);
}

 .plane-item .custom-icon {
    font-size: 40px;
    border-radius: 50%;
    background: #0d404e;
    padding: 18px;
    width: 26%;
    color: #fff;            
}

.plane-item h5 {
    font-weight: 600;
}

.plane-item hr {
    margin: 0.5rem 0;
}

.plane-item button {
    width: 100%;
}

/*plane end*/
/* Brand Bar */
.barnd {
    width: 100%;
    height: 60px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.barnd .position-relative {
    height: 100%;
    overflow: hidden;
}

/* Call Us Section */
.call-us {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.call-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.call-us .container {
    position: relative;
    z-index: 2;
}

.call-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.call-us .button {
    text-align: left;
}

.call-us .button a {
    background-color: #ff6600;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.call-us .button a:hover {
    background-color: #e65c00;
}

@media (max-width: 768px) {
    .call-us .button {
        text-align: center;
        margin-top: 20px;
    }
    .call-text h3 {
        font-size: 22px;
    }
}

/* Service Card */
.our-service {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.our-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

/* Link Styles */
.list-unstyled a {
    color: #000;
    font-size: 16px;
    font-weight: 100;
    font-style: normal;
}

/* Button Hover */
.btn:hover {
    transition: all 0.3s ease;
    transform: translateX(5px);
    color: #0d6efd;
}

/* Read More Style */
.fw-semibold-read a {
    font-weight: 800 !important;
    font-size: 20px !important;
}

/* Cart Border Box */
.cart-border {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cart-border::before,
.cart-border::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    transition: all 0.4s ease;
}

.cart-border::before {
    top: 0;
}

.cart-border::after {
    bottom: 0;
}

.cart-border:hover::before,
.cart-border:hover::after {
    width: 100%;
}

.cart-border:hover {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Blog & Sidebar Animations */
.animate-hover,
.animate-list-hover,
.sidebar-recent-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animate-hover:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.animate-list-hover:hover {
    transform: scale(1.02);
    background-color: #f9f9f9;
}

/* Blog Image Hover */
.blog-image-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-image-wrapper img {
    transition: transform 0.4s ease;
}

.blog-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    z-index: 1;
}

.blog-image-wrapper:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.blog-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Sidebar Recent Post */
.sidebar-recent-item {
    display: flex;
    margin-bottom: 15px;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar-recent-item:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.recent-photo img {
    width: 80px;
    border-radius: 5px;
}

/* sub blogs css sidebar end*/
/* blogs css end */

