/*******************************/
/********* General CSS *********/
/*******************************/
html {
    background: #0b1324;
}

body {
       color: #d0d6dc;
    background: #0b1324;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
     color: #ffffff;
}

a {
    color: #cfd8dc;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #4ee5ea;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
   
    margin: 0 auto;
    background: transparent;
}

.back-to-top {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #19cbd7;
    color: #121518;
    width: 44px;
    height: 44px;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease,
        background 0.5s ease,
        color 0.5s ease;
    z-index: 9;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    color: #72e1dc;
    background: #121518;
    outline: none;
}

.back-to-top i {
    padding-top: 0;
}

.btn {
    transition: .3s;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/


.sub-logo {
    display: block;
    font-size: 14px;
    color: #cfd8dc;
    margin-top: -4px;
    margin-left: 240px;
    transition: color 0.4s ease;
}

/* Logo kapsayıcı */
.top-bar .logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

/* H1 ana yazı */
.top-bar .logo h1 {
    margin: 0;
    font-size: 32px;
    line-height: 60px;
    font-weight: 700;

    /* Başlangıç rengi */
    background: linear-gradient(90deg, #ffffff, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    transition: background 0.6s ease, transform 0.4s ease;
    
}

/* Logo görseli */
.top-bar .logo img {
    max-height: 60px;
    width: auto;
    margin-top: 50px;

    transform: translateX(-350px) translateY(100px);
    transition: transform 0.5s ease;
}

/* 🔥 HOVER EFEKTLERİ */
.top-bar .logo a:hover h1 {
    background: linear-gradient(
        90deg,
        #ffffff,
        #4ee5ea,
        #19cbd7
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    transform: translateY(-2px);
}

.top-bar .logo a:hover img {
    transform: translateX(-340px) translateY(90px) scale(1.05);
}

.top-bar .logo a:hover .sub-logo {
    color: #4ee5ea;
}




.top-bar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 80px;
    background: transparent;
    z-index: 100;
}
@keyframes softGlowIdle {
    0% {
        opacity: 1;
        text-shadow: 0 0 6px rgba(78,229,234,0.25);
        filter: brightness(1);
    }
    50% {
        opacity: 0.85;
        text-shadow: 0 0 16px rgba(78,229,234,0.6);
        filter: brightness(1.15);
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 6px rgba(78,229,234,0.25);
        filter: brightness(1);
    }
}






.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar .top-bar-icon [class^="flaticon-"]::before {
    margin: 0;
    color: #ffffff;
    font-size: 40px;
}

.top-bar .top-bar-text {
    padding-left: 15px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.top-bar .top-bar-text p {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
/**********************************/
/************ NAV BAR *************/
/**********************************/

.nav-bar {
    position: absolute;
    top: 100px;
    width: 100%;
    background: transparent;
    z-index: 101;
    left: 50px;

    display: flex;
    justify-content: center; /* SAYFA ORTASI */
    transition:
        background 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-bar .container-fluid {
    padding: 0;
    max-width: 1300px;
}

/* Sticky navbar */
.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: center;

    background: rgba(3, 15, 39, 0.85);
    backdrop-filter: blur(10px);
    z-index: 999;
}

/* Navbar içi */
.nav-bar .navbar {
    background: transparent !important;
    padding: 15px 30px;

    display: flex;
    justify-content: center;
}

/* NAV ITEM KUTUCUKLARI */
.navbar-dark .navbar-nav {
    display: flex;
    gap: 10px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;

    padding: 10px 16px;
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);

    border: 1px solid rgba(78, 229, 234, 0.15);

    box-shadow:
        inset 0 0 10px rgba(78, 229, 234, 0.08),
        0 0 15px rgba(29, 187, 181, 0.15);

    transition: all 0.4s ease;
}

/* Hover neon cam efekti */
.navbar-dark .navbar-nav .nav-link:hover {
    color: #030f27;

    background: linear-gradient(
        135deg,
        rgba(78, 229, 234, 0.9),
        rgba(25, 203, 215, 0.9)
    );

    box-shadow:
        0 0 20px rgba(78, 229, 234, 0.8),
        0 0 45px rgba(29, 187, 181, 0.6);

    transform: translateY(-3px);
}

/* Aktif menü */
.navbar-dark .navbar-nav .nav-link.active {
    background: rgba(78, 229, 234, 0.25);
    color: #4ee5ea;
}

/* Dropdown */
.nav-bar .dropdown-menu {
    margin-top: 10px;
    border: none;
    border-radius: 10px;
    background: rgba(3, 15, 39, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(78, 229, 234, 0.4);
}

/* Button pdf katalog*/
/* =========================
   NAVBAR NEON BUTON
   Auto Glow + Hover
   ========================= */

.nav-bar .btn {
    display: inline-flex;              /* YAZI YATAY */
    align-items: center;
    justify-content: center;
    white-space: nowrap;               /* ALT ALTA ENGEL */
    
    padding: 10px 26px;
    border-radius: 12px;

    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;

    background: rgba(255, 255, 255, 0.06);   /* cam efekti */
    backdrop-filter: blur(6px);

    border: 2px solid rgba(78, 229, 234, 0.45);

    box-shadow:
        0 0 8px rgba(78, 229, 234, 0.25),
        0 0 18px rgba(78, 229, 234, 0.15);

    animation: neonIdle 2.6s ease-in-out infinite;

    transition:
        transform 0.35s cubic-bezier(.4,0,.2,1),
        box-shadow 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

/* Yazı hafif glow */
.nav-bar .btn span {
    text-shadow: 0 0 6px rgba(78, 229, 234, 0.6);
}

/* HOVER — daha güçlü neon + yatay genişleme */
.nav-bar .btn:hover {
    background: linear-gradient(
        135deg,
        rgba(78, 229, 234, 0.95),
        rgba(25, 203, 215, 0.95)
    );

    color: #030f27;
    border-color: rgba(25, 203, 215, 1);

    box-shadow:
        0 0 20px rgba(78, 229, 234, 0.9),
        0 0 46px rgba(29, 187, 181, 0.7);

    transform: scaleX(1.07); /* YATAY GENİŞLEME */
}

/* Otomatik neon pulse (idle) */
@keyframes neonIdle {
    0% {
        box-shadow:
            0 0 8px rgba(78, 229, 234, 0.25),
            0 0 18px rgba(78, 229, 234, 0.15);
    }
    50% {
        box-shadow:
            0 0 16px rgba(78, 229, 234, 0.65),
            0 0 34px rgba(78, 229, 234, 0.45);
    }
    100% {
        box-shadow:
            0 0 8px rgba(78, 229, 234, 0.25),
            0 0 18px rgba(78, 229, 234, 0.15);
    }
}


/* LOGO */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand h1 {
    font-size: 32px;
    margin: 0;
    color: #ffffff;
}

.navbar-brand img {
    height: 40px;
    margin-left: 10px;
    transform: translateY(5px);
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: translateY(0);
}

/* RESPONSIVE */
/* ================================
   RESPONSIVE DÜZELTME
================================ */
@media (max-width: 991.98px) {

    /* NAVBAR CAM */
    .nav-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;

        display: flex;
        justify-content: center;

        background: rgba(3, 15, 39, 0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        box-shadow:
            0 10px 35px rgba(0,0,0,0.6),
            inset 0 0 25px rgba(78,229,234,0.12);

        z-index: 1200;
    }

    .nav-bar .container-fluid {
        max-width: 100%;
        padding: 0 16px;
    }

    .nav-bar .navbar {
        width: 100%;
        padding: 12px 16px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* 🔥 LOGO ZORLA GÖRÜNÜR */
    .navbar-brand {
        display: flex !important;
        align-items: center;

        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;

        z-index: 1300;
    }

    .navbar-brand h1 {
        display: none; /* Mobilde H1 kapalı */
    }

    .navbar-brand img {
        height: 38px;
        margin: 0;
        filter: drop-shadow(0 0 10px rgba(78,229,234,0.7));
    }

    /* Desktop menüyü kapat */
    .navbar-nav {
        display: none;
    }
}



/**********************************/
/*********** LOGO + H1 *************/
/**********************************/

/* Başlangıçta H1 tamamen gizli */
.navbar-brand h1 {
    font-size: 32px;
    margin: 0;
    color: #ffffff;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Sticky olunca görünür */
.nav-bar.nav-sticky .navbar-brand h1 {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Logo görsel */
.navbar-brand img {
    height: 40px;
    margin-left: 10px;
    transform: translateY(5px);
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: translateY(0);
}

/**********************************/
/*********** RESPONSIVE ************/
/**********************************/

@media (max-width: 991.98px) {
    .nav-bar .navbar {
        padding: 14px 18px;
        background: rgba(3, 15, 39, 0.96) !important;
        backdrop-filter: blur(6px);
    }

    .navbar-dark .navbar-nav {
        gap: 8px;
    }

    .nav-bar .btn {
        display: none;
    }
}

/**********************************/
/******** LOGO + H1 GİZLE **********/
/**********************************/

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);

    transition:
        opacity 0.45s ease,
        transform 0.45s cubic-bezier(.4,0,.2,1);
}

.nav-bar.nav-sticky .navbar-brand {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/**********************************/
/*********** H1 STİL ***************/
/**********************************/

.navbar-brand h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.4px;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #7be9ec 50%,
        #2fcdd6 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 2px 8px rgba(47,205,214,0.35);
}

/**********************************/
/*********** LOGO IMG **************/
/**********************************/

.navbar-brand img {
    height: 38px;

    filter: drop-shadow(0 2px 6px rgba(47,205,214,0.35));
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.navbar-brand:hover img {
    transform: translateY(-1px) scale(1.04);
    filter: drop-shadow(0 4px 10px rgba(47,205,214,0.55));
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
   width: 100%;
    height: 100%;
}

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

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.carousel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.carousel .carousel-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20%;
    z-index: 2;
}


.carousel .carousel-caption p {
    color: #35d9d9;
    font-size: 25px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 150px;
    
    
}

.carousel .carousel-caption h1 {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 35px;
}

.carousel .carousel-caption .btn {
    padding: 14px 42px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
}

.carousel .carousel-caption .btn:hover {
    background: #4ee5ea;
    color: #030f27;
}

.home-page #carousel .carousel-item {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .carousel .carousel-caption p {
        font-size: 20px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }
    
    .carousel .carousel-caption p {
        font-size: 16px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}
video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button {
    display: none !important;
    opacity: 0 !important;
}

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 140px 0;
    text-align: center;
    background: #0a645e;
}

.page-header h2 {
    position: relative;
    color: #39a081;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #030f27;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #39a081;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #39a081;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.section-header p {
    color: #21c1a9;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
/* ===============================
   FEATURE – CAM + NEON TASARIM
   =============================== */

.feature {
    position: relative;
    margin-bottom: 45px;
}

/* =============================== */
/* EŞİT YÜKSEKLİK ALTYAPISI */
/* =============================== */

.feature .row {
    display: flex;
    flex-wrap: wrap;
}

.feature .col-md-12 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Cam arka plan */
.feature .col-md-12 {
    background: rgba(4, 21, 30, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 0 30px rgba(29, 187, 181, 0.08),
        0 0 40px rgba(29, 187, 181, 0.15);
}

/* Alternatif renkli cam blok */
.feature .col-md-12:nth-child(2n) {
    background: rgba(20, 163, 151, 0.55);
    box-shadow:
        inset 0 0 35px rgba(255, 255, 255, 0.15),
        0 0 45px rgba(20, 163, 151, 0.4);
}

/* Feature item – TÜM KUTULAR EŞİT */
.feature .feature-item {
    flex: 1;
    min-height: 280px; /* BURASI EŞİTLİĞİ SAĞLAR */
    padding: 30px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    transition: all 0.5s ease;
}

/* Hover canlanma */
.feature .feature-item:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 35px rgba(78, 229, 234, 0.5),
        0 0 80px rgba(29, 187, 181, 0.3);
}

/* İkon kapsayıcı */
.feature .feature-icon {
    position: relative;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Neon halka */
.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -20px;
    left: -10px;
    border: 2px dotted rgba(255, 255, 255, 0.6);
    border-radius: 60px;
    z-index: 1;
    box-shadow:
        0 0 10px rgba(29, 187, 181, 0.8),
        0 0 25px rgba(29, 187, 181, 0.6),
        0 0 45px rgba(29, 187, 181, 0.4);
}

/* Cam ikon arka planı */
.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 79px;
    height: 79px;
    top: -18px;
    left: -9px;
    background: rgba(3, 15, 39, 0.85);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    z-index: 2;
    box-shadow:
        inset 0 0 15px rgba(255, 255, 255, 0.15),
        0 0 20px rgba(29, 187, 181, 0.6);
}

/* Alternatif ikon arka plan */
.feature .col-md-12:nth-child(2n) .feature-icon::after {
    background: rgba(29, 187, 181, 0.85);
}

/* Neon ikon */
.feature .feature-icon [class^="flaticon-"]::before {
    position: relative;
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    z-index: 3;
    color: #4ee5ea;
    text-shadow:
        0 0 8px rgba(78, 229, 234, 0.9),
        0 0 18px rgba(78, 229, 234, 0.7),
        0 0 30px rgba(78, 229, 234, 0.4);
}

/* Metin alanı – dikey merkezleme */
.feature .feature-text {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Başlık */
.feature .feature-text h3 {
    margin: 0 0 10px 0;
    min-height: 34px; /* başlık hizası */
    font-size: 25px;
    font-weight: 600;
    color: #e8feff;
    text-shadow:
        0 0 10px rgba(78, 229, 234, 0.6),
        0 0 25px rgba(29, 187, 181, 0.4);
}

/* Açıklama */
.feature .feature-text p {
    margin: 0;
    flex-grow: 1;
    font-size: 18px;
    font-weight: 400;
    color: rgba(232, 254, 255, 0.85);
    text-shadow: 0 0 8px rgba(48, 175, 194, 0.3);
}

/* Alternatif blok yazıları */
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: #030f27;
    text-shadow: none;
}

/* Mobil uyum */
@media (max-width: 767px) {
    .feature .feature-item {
        min-height: auto;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
}

.about .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;                                     
    letter-spacing: 1px;
    color: #030f27;
    border-radius: 0;
    background: #119fa6;
    transition: .3s;
    border: 2px solid #33e2fd;
}

.about .about-text a.btn:hover {
    color: #4ee5ea;
    background: #235353
;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.fact .col-6 {
    display: flex;
    align-items: flex-start;
}

.fact .fact-icon {
    position: relative;
    margin: 7px 15px 0 15px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#ffffff, #4ee5ea);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(#ffffff, #030f27);
}

.fact .fact-left,
.fact .fact-right {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fact .fact-text h2 {
    font-size: 35px;
    font-weight: 700;
}

.fact .fact-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.fact .fact-left {
    color: #4ee5ea;
    background: #030f27;
}

.fact .fact-right {
    color: #030f27;
    background: #155c67;
}

.fact .fact-left h2 {
    color: #2ea9bc;
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    margin: 0;
    color: #ffffff;
}

.service .service-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #46ced3;                              
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #1a8989;
    border-radius: 0;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #ffffff;
}


/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    margin: 45px 0;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/demiryolu.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #2deeee;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #2de2e2;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play:hover:after {
    background-color: darken(#1a8989, 10%);
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #030f27;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    background: #030f27;
    transition: .5s;
}

.team .team-text h2 {
    font-size: 20px;
    font-weight: 600;
    color: #46ced3;
    transition: .5s;
}

.team .team-text p {
    margin: 0;
    color: #ffffff;
}

.team .team-item:hover .team-text {
    background: #4ee5ea;
}

.team .team-item:hover .team-text h2 {
    color: #030f27;
    letter-spacing: 1px;
}

.team .team-social {
    position: absolute;
    width: 100px;
    top: 0;
    left: -50px;
    display: flex;
    flex-direction: column;
    font-size: 0;
}

.team .team-social a {
    position: relative;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
}

.team .team-item:hover .team-social a:first-child {
    background: #00acee;
    left: 50px;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    background: #3b5998;
    left: 50px;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    background: #0e76a8;
    left: 50px;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    background: #3f729b;
    left: 50px;
    transition: .3s .3s;
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .row {
    position: relative;
}

.faqs .row::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: #33e2fd;                    
}

.faqs #accordion-1 {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }
    
    .faqs #accordion-1,
    .faqs #accordion-2 {
        padding: 0;
    }
    
    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    padding: 10px 25px;
    width: 100%;
    color: #121518;
    font-size: 16px;
    line-height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: #10a096;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #1ad6ca;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #030f27;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-body {
    padding: 20px 25px;
    font-size: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 45px 0;
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(rgba(7, 52, 79, 0.9), rgba(3, 15, 39, .9)), url(../img/demiryolu.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .container {
    max-width: 760px;
}

@media (max-width: 991.98px), (hover: none), (pointer: coarse) {
    .video,
    .testimonial {
        background-attachment: scroll;
    }
}

.about-page .testimonial {
    padding-bottom: 90px;
}

.testimonial .testimonial-slider-nav {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.testimonial .testimonial-slider-nav .slick-slide {
    position: relative;
    opacity: 0;
    transition: .5s;
}

.testimonial .testimonial-slider-nav .slick-active {
    opacity: 1;
    transform: scale(1.3);
}

.testimonial .testimonial-slider-nav .slick-center {
    transform: scale(1.8);
    z-index: 1;
}

.testimonial .testimonial-slider-nav .slick-slide img {
    position: relative;
    display: block;
    margin-top: 37px;
    width: 100%;
    height: auto;
    border-radius: 100px;
}

.testimonial .testimonial-slider {
    position: relative;
    margin-top: 15px;
    padding-top: 50px;
}

.testimonial .testimonial-slider::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 50px;
    top: 0;
    left: calc(50% - 30px);
    background: url(../img/quote.png) top center no-repeat;
}

.testimonial .testimonial-slider h3 {
    color: #10a096;
    font-size: 22px;
    font-weight: 700;
}

.testimonial .testimonial-slider h4 {
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .testimonial-slider p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-title {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 18px;
    font-weight: 700;
    color: #46ced3;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #1a8989;
    border-radius: 0;
    transition: .3s;
}

.blog .blog-item:hover a.btn {
    color: #ffffff;
}

.blog .blog-meta {
    position: relative;
    padding: 25px 0 10px 0;
    background: #f3f6ff;
}

.blog .blog-meta::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #1a8989;
}

.blog .blog-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #666666;
}

.blog .blog-meta p a {
    margin-left: 5px;
    font-style: normal;
}

.blog .blog-text {
    padding: 10px 25px 25px 25px;
    background: #f3f6ff;
}

.blog .blog-text p {
    margin: 0;
    font-size: 16px;
}

.blog .pagination .page-link {
    color: #030f27;
    border-radius: 0;
    border-color: #1a8989;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #1a8989;
    background: #030f27;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .single-tags a:hover {
    color: #1a8989;
    background: #030f27;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 400;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #030f27;
    background: #1a8989;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #1a8989;
    background: #030f27;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    color: #030f27;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #1a8989;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form .btn {
    padding: 15px 30px;
    color: #030f27;
    background: #1a8989;
}

.single .comment-form .btn:hover {
    color: #1a8989;
    background: #030f27;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #1a8989;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #1a8989;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #030f27;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #1a8989;
    background: #030f27;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #030f27;
    background: #1a8989;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #1a8989;
    left: 1px;
}

.sidebar .category-widget ul li span {
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .tag-widget a:hover {
    color: #1a8989;
    background: #030f27;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #030f27;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    background: #1a8989;
    border: none;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #030f27;
    color: #46ced3;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #46ced3;
    background: #030f27;
}

.portfolio .portfolio-warp {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-img img {
    width: 100%;
    transition: .3s;
}

.portfolio .portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.portfolio .portfolio-warp:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio .portfolio-overlay p {
    margin: 0;
    color: #ffffff;
}

.portfolio .portfolio-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #146e77;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #46ced3;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-warp a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #ffffff;
    border-radius: 0;
    transition: .3s;
}

.portfolio .portfolio-warp:hover a.btn {
    color: #ffffff;
    background: #46ced3;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .col-md-6 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact .col-md-6:first-child {
    background: #030f27;
}

.contact .col-md-6:last-child {
    background: #116262;
}

.contact .contact-info {
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.contact .contact-item {
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    border: 1px solid rgba(256, 256, 256, .2);
}

.contact .contact-item [class^="flaticon-"]::before {
    margin: 0;
    color: #116262;
    font-size: 40px;
}

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 20px;
}

.contact .contact-text h2 {
    color: #116262;
    font-size: 20px;
    font-weight: 600;
}

.contact .contact-text p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
    padding: 0 15px;
}

.contact .contact-form input {
    color: #ffffff;
    height: 40px;
    border-radius: 0;
    border-width: 1px;
    border-color: rgba(256, 256, 256, .4);
    background: transparent;
}

.contact .contact-form textarea {
    color: #ffffff;
    height: 185px;
    border-radius: 0;
    border-width: 1px;
    border-color: rgba(256, 256, 256, .4);
    background: transparent;
}

.contact .contact-form input:focus,
.contact .contact-form textarea {
    box-shadow: none;
}

.contact .contact-form .form-control::placeholder {
  color: #ffffff;
  opacity: 1;
}

.contact .contact-form .form-control::-ms-input-placeholder {
  color: #ffffff;
}

.contact .contact-form .form-control::-ms-input-placeholder {
  color: #ffffff;
}

.contact .contact-form .btn {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #116262;
    background: #030f27;
    border: none;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #030f27;
    background: #ffffff;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}





/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #116262;
    color: #ffffff;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 45px;
    
}

.footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #1dbbb5;
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #33e2fd;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

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

.footer .footer-link a:hover {
    color: #33e2fd;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    border: 1px solid rgba(256, 256, 256, .3);
    border-radius: 60px;
    transition: .3s;
}

.footer .footer-social a i {
    font-size: 15px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: #33e2fd;
    border-color: #33e2fd;
}

.footer .footer-social a:hover i {
    color: #030f27;
}

.footer .newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.footer .newsletter input {
    height: 50px;
    border: 2px solid #121518;
    border-radius: 0;
}

.footer .newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #33e2fd;
    background: #121518;
    border-radius: 0;
    border: 2px solid #33e2fd;
    transition: .3s;
}

.footer .newsletter .btn:hover {
    color: #121518;
    background: #33e2fd;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(256, 256, 256, .1);
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu a:hover {
    color: #33e2fd;
}

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


.footer .copyright {
    padding: 30px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #33e2fd;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

/* =========================
   FOOTER RESPONSIVE
   ========================= */
@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

/* =========================
/* =========================
   TOP-BAR & NAVBAR RESPONSIVE
   ========================= */
/* =========================
   TOP-BAR & NAVBAR RESPONSIVE
   ========================= */
@media (max-width: 991.98px) {
    
    /* --- Top-bar düzenlemeleri --- */
    .top-bar {
        height: 60px;
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(12px);
        background: rgba(11, 19, 36, 0.5);
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease-in-out;
    }

    /* Top-bar içindeki tüm logo ve yazıları gizle */
    .top-bar .logo h1,
    .top-bar .logo .sub-logo,
    .top-bar .logo img {
        display: none !important;
    }

    /* --- Navbar düzenlemeleri --- */
    .nav-bar {
        backdrop-filter: blur(15px);
        background: linear-gradient(90deg, rgba(11,19,36,0.7), rgba(20,30,50,0.6));
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        transition: all 0.4s ease;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 8px 0;
    }

    /* --- Mobil logo yazısı (zarif & büyüleyici) --- */
.navbar-brand.d-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;

    font-family: 'Poppins', sans-serif;
    text-align: center;
    letter-spacing: 0.6px;

    color: #ffffff;

    gap: 4px;

    /* Daha yumuşak, premium ışık */
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.35),
        0 0 18px rgba(0, 207, 255, 0.15);
}

/* Ana logo metni */
.navbar-brand.d-mobile .mobile-logo-main {
    font-size: 26px;
    font-weight: 700;

    /* Zarif vurgu */
    background: linear-gradient(135deg, #ffffff, #cfefff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: 1.4px;
}

/* Alt slogan */
.navbar-brand.d-mobile .mobile-logo-sub {
    font-size: 12px;
    font-weight: 400;
    font-style: normal;

    color: rgba(255, 255, 255, 0.72);

    letter-spacing: 0.9px;

    /* İnce, zarif ayrım */
    position: relative;
}

.navbar-brand.d-mobile .mobile-logo-sub::before {
    content: "";
    display: block;
    width: 36px;
    height: 1px;
    margin: 0 auto 6px;
    

    background: linear-gradient(
        to right,
        transparent,
        rgba(0, 207, 255, 0.7),
        transparent
    );
}


    /* --- Hamburger --- */
    .navbar-toggler {
        display: block !important;
        font-size: 28px;
        background: none;
        border: none;
        color: #ffffff;
        cursor: pointer;
        margin-top: 6px;
        transition: color 0.2s ease; /* sade hover */
    }

    .navbar-toggler:hover {
        color: rgba(255, 255, 255, 0.7); /* sadece hafif ton değişimi */
    }

    /* --- Navbar collapse (menü) --- */
    .navbar-collapse {
        display: none;
        flex-direction: column;
        gap: 12px;
        background: rgba(11, 19, 36, 0.85);
        backdrop-filter: blur(12px);
        padding: 16px;
        border-radius: 12px;
        margin-top: 6px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1500;
        align-items: center;
        text-align: center;
        animation: fadeIn 0.4s ease forwards;
    }

    .navbar-collapse.show {
        display: flex;
    }

    /* Nav-link dikey ve düzgün hizalı */
    .navbar-nav {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
    }

    .navbar-nav .nav-link {
        color: #ffffff;
        font-weight: 500;
        font-size: 16px;
        padding: 8px 16px;
        border-radius: 8px;
        width: 90%;
        text-align: center;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(0); /* sade hover, kayma yok */
    }

    /* Navbar buton ortalı ve mavimsi neon */
    .nav-bar .btn {
        display: block !important;
        width: 90%;
        margin: 12px auto 0;
        text-align: center;
        background: #0ff; /* neon mavi ana renk */
        color: #000;
        font-weight: 700;
        border-radius: 10px;
        box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff;
        transition: all 0.3s ease;
       
    }

    .nav-bar .btn:hover {
        color: #fff;
        box-shadow: 0 0 20px #0ff, 0 0 40px #0ff, 0 0 60px #0ff;
        transform: translateY(-2px);
    }
}

/* =========================
   MASAÜSTÜ
   ========================= */
@media (min-width: 992px) {
    .navbar-brand.d-mobile {
        display: none;
    }
}

/* --- Menü açılır animasyon --- */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* Sayfanın sağa taşmasını engelle */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar ve container için ek önlem */
.nav-bar .container-fluid {
    max-width: 100%;
    padding: 0 16px; /* Gerektiğinde değiştirebilirsin */
    box-sizing: border-box;
}

/* Mobil menü absolute olduğu için overflow taşmasın */
.navbar-collapse {
    width: 100%;
    left: 0;
    box-sizing: border-box;
}
/* Buton kapsayıcı sola kaydırma */
.ml-auto {
    margin-left: auto; /* Bootstrap’in sağ boşluk otomatik ayarı */
    transform: translateX(-100px); /* Sola kaydırma miktarı, px ile ayarla */
}

/* Gerekirse responsive küçültme */
@media (max-width: 991.98px) {
    .ml-auto {
        transform: translateX(0); /* Mobilde tam ortada */
    }
}
/* ===============================
   MOBILE VIDEO FIX – CAROUSEL
================================ */

/* Video container */
.carousel-item {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Video */
.carousel-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* EN KRİTİK SATIR */
    transform: translate(-50%, -50%);
}

/* Mobil özel ayar */
@media (max-width: 768px) {
    .carousel-item {
        height: 70vh;
    }

    .carousel-caption {
        bottom: 15%;
        padding: 0 15px;
        text-align: center;
    }

    .carousel-caption h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .carousel-caption .btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}









/* === Language Dropdown === */
.lang-dropdown {
    position: relative;
    font-family: 'Poppins', sans-serif;
    z-index: 12;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 7px 14px;
    background: linear-gradient(135deg, rgba(8, 19, 31, 0.9), rgba(13, 31, 48, 0.72));
    border: 1px solid rgba(114, 225, 220, 0.16);
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 24px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: 0.3s;
}

.lang-current:hover {
    background: linear-gradient(135deg, rgba(10, 24, 38, 0.96), rgba(15, 36, 56, 0.8));
    border-color: rgba(114, 225, 220, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 16px 28px rgba(0, 0, 0, 0.24),
        0 0 24px rgba(67, 201, 223, 0.1);
}

.lang-current .arrow {
    font-size: 11px;
    opacity: 0.8;
    color: #8cecea;
}

.lang-current .code {
    min-width: 24px;
    text-align: center;
}

.flag-badge {
    position: relative;
    display: inline-flex;
    flex: 0 0 24px;
    width: 24px;
    height: 16px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.16);
}

.flag-badge.flag-tr {
    background: #e30a17 url("../img/flags/tr.svg") center/cover no-repeat;
}

.flag-badge.flag-en {
    background:
        linear-gradient(90deg, transparent 42%, #ffffff 42% 58%, transparent 58%),
        linear-gradient(transparent 38%, #ffffff 38% 62%, transparent 62%),
        linear-gradient(90deg, transparent 45%, #cf1f2e 45% 55%, transparent 55%),
        linear-gradient(transparent 42%, #cf1f2e 42% 58%, transparent 58%),
        #21468b;
}

.flag-badge.flag-de {
    background: linear-gradient(180deg, #1f2937 0 33.33%, #c42828 33.33% 66.66%, #f4c542 66.66% 100%);
}

.flag-badge.flag-fr {
    background: linear-gradient(90deg, #1d4ed8 0 33.33%, #f8fafc 33.33% 66.66%, #dc2626 66.66% 100%);
}

/* Dropdown menu */
.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    list-style: none;
    margin: 0;
    padding: 8px;
    background: linear-gradient(180deg, rgba(10, 20, 32, 0.96), rgba(13, 25, 39, 0.94));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(114, 225, 220, 0.14);
    border-radius: 16px;
    min-width: 128px;
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(114, 225, 220, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: 0.25s ease;
    z-index: 999;
}

.lang-menu li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #ecfbff;
    cursor: pointer;
    transition: 0.25s;
}

.lang-menu li:hover {
    background: linear-gradient(135deg, rgba(114, 225, 220, 0.18), rgba(44, 151, 255, 0.12));
}

.lang-option-code {
    letter-spacing: 0.08em;
}

/* Açılma */
.lang-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Carousel ve video tam yükseklik */
#carousel,
#carousel .carousel-inner,
#carousel .carousel-item,
.video-slide {
    height: 100vh;
}

/* Video arka plan */
.video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

/* YouTube iframe TAM KAPLAMA */
.video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100vw, 177.78vh);
    height: max(100vh, 56.25vw);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item iframe {
    min-height: 100vh;
}

/* =========================
   RESPONSIVE POLISH
   ========================= */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .top-bar {
        padding: 0 24px;
    }

    .top-bar .logo h1 {
        font-size: 46px !important;
        padding: 8px 14px !important;
    }

    .sub-logo {
        margin-left: 170px;
    }

    .top-bar .logo img {
        max-height: 96px;
        margin-top: 0;
        transform: translateX(-215px) translateY(58px);
    }

    .nav-bar {
        left: 0;
    }

    .nav-bar .container-fluid {
        padding: 0 20px;
    }

    .nav-bar .navbar {
        padding: 12px 18px;
    }

    .navbar-dark .navbar-nav {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 8px 12px;
        font-size: 13px;
        letter-spacing: 0.4px;
    }

    .ml-auto {
        transform: none;
    }

    .nav-bar .btn {
        padding: 10px 18px;
    }

    .carousel .carousel-caption {
        padding: 0 12%;
    }

    .carousel .carousel-caption p {
        margin-top: 110px;
        font-size: 18px;
        letter-spacing: 2px;
    }
}

@media (max-width: 991.98px) {
    .top-bar {
        display: none !important;
    }

    .nav-bar,
    .nav-bar.nav-sticky {
        left: 0 !important;
        top: 0;
        padding: 0;
        background: rgba(3, 15, 39, 0.94);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-bar .container-fluid {
        max-width: 100%;
        padding: 12px 14px;
    }

    .nav-bar .navbar {
        width: 100%;
        min-height: 72px;
        padding: 0;
        align-items: center;
    }

    .nav-bar .logo-nav {
        display: none !important;
    }

    .navbar-brand.d-mobile {
        display: flex !important;
        flex: 1 1 auto;
        align-items: flex-start;
        justify-content: center;
        gap: 2px;
        margin: 0;
        padding: 0;
        max-width: calc(100% - 60px);
        text-align: left;
    }

    .navbar-brand.d-mobile h3 {
        display: none !important;
    }

    .navbar-brand.d-mobile .mobile-logo-main {
        font-size: clamp(22px, 5.6vw, 28px);
        letter-spacing: 0.8px;
    }

    .navbar-brand.d-mobile .mobile-logo-sub {
        font-size: 11px;
        letter-spacing: 0.6px;
    }

    .navbar-brand.d-mobile .mobile-logo-sub::before {
        margin: 0 0 4px;
        width: 32px;
    }

    .navbar-toggler {
        margin: 0;
        padding: 0;
        font-size: 24px;
    }

    .navbar-collapse {
        position: absolute;
        top: calc(100% + 8px);
        left: 14px;
        right: 14px;
        width: auto;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
    }

    .navbar-dark .navbar-nav,
    .navbar-collapse.show .navbar-nav,
    .navbar-collapse.collapsing .navbar-nav {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .navbar-dark .navbar-nav .nav-link {
        width: 100%;
        font-size: 14px;
        letter-spacing: 0.4px;
        padding: 12px 14px;
    }

    .lang-dropdown {
        width: 100%;
    }

    .lang-current {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
        border-radius: 12px;
    }

    .lang-menu {
        left: 0;
        right: 0;
        top: calc(100% + 6px);
        min-width: 100%;
    }

    .ml-auto {
        width: 100%;
        margin-top: 12px;
        transform: none !important;
    }

    .nav-bar .btn {
        width: 100%;
        margin: 0;
        padding: 12px 18px;
    }

    .carousel,
    #carousel,
    #carousel .carousel-inner,
    #carousel .carousel-item,
    .video-slide {
        height: calc(100vh - 72px);
        min-height: 560px;
    }

    #carousel .carousel-item iframe {
        min-height: 100%;
        height: 100%;
    }

    .carousel .carousel-caption {
        inset: 0;
        justify-content: flex-end;
        padding: 0 24px 12vh;
    }

    .carousel .carousel-caption p {
        margin-top: 0;
        margin-bottom: 12px;
        font-size: 16px;
        letter-spacing: 1.5px;
        line-height: 1.6;
    }

    .carousel .carousel-caption h1 {
        font-size: clamp(30px, 7vw, 48px);
        margin-bottom: 20px;
        line-height: 1.18;
    }

    .carousel .carousel-caption .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .page-header {
        padding: 120px 0 56px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header p {
        font-size: 16px;
        line-height: 1.6;
    }

    .section-header h2 {
        font-size: clamp(30px, 5.8vw, 42px);
        line-height: 1.2;
    }

    .feature .feature-item {
        min-height: auto;
        padding: 26px 22px;
        gap: 20px;
        align-items: flex-start;
    }

    .feature .feature-text {
        padding-left: 20px;
    }

    .feature .feature-text h3 {
        min-height: auto;
        font-size: 22px;
    }

    .feature .feature-text p,
    .about .about-text p,
    .service .service-overlay p,
    .portfolio .portfolio-overlay p,
    .contact .contact-text p {
        font-size: 16px;
        line-height: 1.7;
    }

    .portfolio #portfolio-flters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin: 0 0 24px;
    }

    .portfolio #portfolio-flters li {
        margin: 0;
    }

    .portfolio .portfolio-text {
        min-height: 72px;
        height: auto;
    }

    .portfolio .portfolio-text h3 {
        width: calc(100% - 52px);
        padding: 14px 12px 14px 18px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        font-size: 17px;
        line-height: 1.4;
        text-align: left;
    }

    .portfolio .portfolio-warp a.btn {
        width: 52px;
        height: 52px;
        font-size: 42px;
        line-height: 1;
    }

    .contact .contact-item {
        padding: 22px 18px;
        gap: 14px;
    }

    .contact .contact-text {
        padding-left: 0;
    }

    .footer {
        padding-top: 72px;
    }

    .footer .footer-contact,
    .footer .footer-link,
    .footer .newsletter {
        text-align: center;
    }

    .footer h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer .footer-social {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer .footer-menu .f-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 18px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .nav-bar .container-fluid {
        padding: 10px 12px;
    }

    .navbar-collapse {
        left: 12px;
        right: 12px;
    }

    .carousel,
    #carousel,
    #carousel .carousel-inner,
    #carousel .carousel-item,
    .video-slide {
        min-height: 500px;
        height: calc(100svh - 68px);
    }

    .video-bg iframe {
        width: max(180vw, 177.78svh);
        height: max(100svh, 56.25vw);
    }

    .carousel .carousel-caption {
        padding: 0 16px 10vh;
    }

    .carousel .carousel-caption p {
        font-size: 14px;
    }

    .carousel .carousel-caption h1 {
        font-size: clamp(28px, 9vw, 38px);
    }

    .page-header {
        padding: 108px 0 46px;
    }

    .page-header h2 {
        font-size: clamp(28px, 9vw, 38px);
    }

    .page-header a {
        display: inline-block;
        font-size: 16px;
        line-height: 1.6;
        padding: 0 6px;
    }

    .feature .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature .feature-icon {
        width: 100%;
        min-height: 68px;
    }

    .feature .feature-icon::before,
    .feature .feature-icon::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .feature .feature-text {
        padding-left: 0;
    }

    .section-header {
        text-align: center;
    }

    .portfolio #portfolio-flters li {
        width: 100%;
        max-width: 320px;
    }

    .portfolio .portfolio-text h3 {
        font-size: 16px;
    }

    .contact .contact-item {
        flex-direction: column;
    }

    .footer .newsletter input,
    .footer .newsletter .btn {
        width: 100%;
        max-width: none;
    }
}

/* =========================
   HOME PAGE THEME
   ========================= */
.home-page {
    --rail-cyan: #72e1dc;
    --rail-aqua: #43c9df;
    --rail-blue: #2c97ff;
    --rail-steel: #455466;
    --rail-ink: #08101b;
    --rail-panel: #0d1826;
    --rail-panel-2: #111f31;
    --rail-line: rgba(114, 225, 220, 0.22);
    background:
        radial-gradient(circle at 15% 0%, rgba(114, 225, 220, 0.18), transparent 28%),
        radial-gradient(circle at 85% 8%, rgba(44, 151, 255, 0.18), transparent 26%),
        linear-gradient(180deg, #07101b 0%, #09111d 32%, #0b1324 100%);
    color: #dfe7f2;
}

.home-page .wrapper {
    background: transparent;
}

.home-page .nav-bar {
    border-bottom: 1px solid transparent;
}

.home-page .nav-bar .container-fluid {
    position: relative;
    z-index: 1;
}

.home-page .nav-bar.nav-sticky {
    background: rgba(8, 16, 28, 0.84);
    border-bottom: 1px solid rgba(114, 225, 220, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

@media (min-width: 992px) {
    .home-page .nav-bar::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(8, 16, 28, 0.92), rgba(8, 16, 28, 0.78));
        border-bottom: 1px solid rgba(114, 225, 220, 0.1);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        opacity: 0;
        transition:
            opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
            border-color 0.34s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity;
        transform: translateZ(0);
        backface-visibility: hidden;
        pointer-events: none;
    }

    .home-page .nav-bar.nav-sticky {
        background: transparent;
        border-bottom-color: transparent;
        box-shadow: none;
    }

    .home-page .nav-bar.nav-sticky::before {
        opacity: 1;
    }
}

.home-page .navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(114, 225, 220, 0.38), rgba(44, 151, 255, 0.24));
    border-color: rgba(114, 225, 220, 0.32);
}

.home-page .carousel {
    background: #050b12;
}

.home-page .carousel .carousel-item::after {
    background: linear-gradient(180deg, rgba(5, 11, 18, 0.12) 0%, rgba(6, 15, 26, 0.58) 58%, rgba(5, 11, 18, 0.88) 100%);
}

.home-page .carousel .carousel-caption {
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    gap: 10px;
    padding: clamp(92px, 14vh, 142px) min(8vw, 88px) clamp(96px, 14vh, 126px);
}

.home-page .carousel .carousel-caption p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: min(100%, 720px);
    margin: 0 0 10px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(114, 225, 220, 0.18);
    background: rgba(9, 18, 29, 0.62);
    color: #e9feff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.home-page .carousel .carousel-caption p::before {
    content: "";
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, var(--rail-cyan), transparent);
}

.home-page .carousel .carousel-caption h1 {
    width: min(100%, 860px);
    max-width: 860px;
    margin: 0 0 14px;
    color: #f6fbff;
    font-size: clamp(28px, 3.9vw, 58px);
    line-height: 1.14;
    text-wrap: balance;
    text-shadow: 0 12px 35px rgba(0, 0, 0, 0.42);
}

.home-page .carousel .carousel-caption .btn {
    padding: 15px 34px;
    margin-top: 4px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    color: #05111b;
    font-weight: 700;
    letter-spacing: 0.18em;
    box-shadow: 0 18px 30px rgba(44, 151, 255, 0.28);
}

.home-page .carousel .carousel-caption .btn:hover {
    color: #05111b;
    transform: translateY(-2px);
    box-shadow: 0 22px 34px rgba(44, 151, 255, 0.36);
}

.home-page .carousel .carousel-caption.caption-center {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(92px, 14vh, 142px) min(8vw, 88px) clamp(96px, 14vh, 126px);
}

.home-page .carousel .carousel-caption.caption-center p::before {
    display: none;
}

.home-page .carousel .carousel-caption.caption-center p,
.home-page .carousel .carousel-caption.caption-center h1,
.home-page .carousel .carousel-caption.caption-center .btn {
    margin-left: auto;
    margin-right: auto;
}

.home-page .carousel .carousel-caption.caption-center .btn {
    align-self: center;
}

.home-page #carousel .carousel-inner .carousel-item:nth-child(5) .carousel-caption.caption-center {
    align-items: flex-start;
    text-align: left;
    padding: clamp(92px, 14vh, 142px) min(8vw, 88px) clamp(96px, 14vh, 126px);
}

.home-page #carousel .carousel-inner .carousel-item:nth-child(5) .carousel-caption.caption-center p::before {
    display: block;
}

.home-page #carousel .carousel-inner .carousel-item:nth-child(5) .carousel-caption.caption-center p,
.home-page #carousel .carousel-inner .carousel-item:nth-child(5) .carousel-caption.caption-center h1,
.home-page #carousel .carousel-inner .carousel-item:nth-child(5) .carousel-caption.caption-center .btn {
    margin-left: 0;
    margin-right: 0;
}

.home-page #carousel .carousel-inner .carousel-item:nth-child(5) .carousel-caption.caption-center .btn {
    align-self: flex-start;
}

.home-page #carousel .carousel-inner .carousel-item:last-child .carousel-caption {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(92px, 14vh, 142px) min(8vw, 88px) clamp(96px, 14vh, 126px);
}

.home-page #carousel .carousel-inner .carousel-item:last-child .carousel-caption p::before {
    display: none;
}

.home-page #carousel .carousel-inner .carousel-item:last-child .carousel-caption p,
.home-page #carousel .carousel-inner .carousel-item:last-child .carousel-caption h1,
.home-page #carousel .carousel-inner .carousel-item:last-child .carousel-caption .btn {
    margin-left: auto;
    margin-right: auto;
}

.home-page #carousel .carousel-inner .carousel-item:last-child .carousel-caption .btn {
    align-self: center;
}

.home-page .carousel .carousel-caption.caption-force-center {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: clamp(92px, 14vh, 142px) min(8vw, 88px) clamp(96px, 14vh, 126px) !important;
}

.home-page .carousel .carousel-caption.caption-force-center p::before {
    display: none !important;
}

.home-page .carousel .carousel-caption.caption-force-center p,
.home-page .carousel .carousel-caption.caption-force-center h1,
.home-page .carousel .carousel-caption.caption-force-center .btn {
    margin-left: auto !important;
    margin-right: auto !important;
}

.home-page .carousel .carousel-caption.caption-force-center .btn {
    align-self: center !important;
}

.home-page .carousel-control-prev,
.home-page .carousel-control-next {
    top: auto;
    bottom: 34px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(10, 21, 34, 0.72);
    border: 1px solid rgba(114, 225, 220, 0.18);
    opacity: 1;
}

.home-page .carousel-control-prev {
    left: auto;
    right: 108px;
}

.home-page .carousel-control-next {
    right: 34px;
}

.home-page .carousel-control-prev-icon,
.home-page .carousel-control-next-icon {
    filter: brightness(2);
}

.home-page .home-signal-band {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding: 44px 0 32px;
}

.home-page .signal-band-panel {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.45fr) minmax(460px, 1fr);
    gap: 32px;
    padding: 28px 32px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(11, 23, 38, 0.96), rgba(16, 30, 48, 0.92));
    border: 1px solid rgba(131, 222, 255, 0.18);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.home-page .signal-band-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0 42%, rgba(114, 225, 220, 0.08) 42% 46%, transparent 46% 100%);
    pointer-events: none;
}

.home-page .signal-band-panel::after {
    display: none;
}

.home-page .signal-band-copy {
    position: relative;
    z-index: 1;
    padding-right: 0;
}

.home-page .signal-band-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(114, 225, 220, 0.18);
    background: linear-gradient(135deg, rgba(10, 24, 38, 0.86), rgba(8, 19, 32, 0.62));
    color: #9ef6f2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(114, 225, 220, 0.08),
        0 0 26px rgba(67, 201, 223, 0.16);
}

.home-page .signal-band-kicker::before {
    content: "";
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--rail-cyan), transparent);
}

.home-page .signal-band-copy h2 {
    margin: 16px 0 12px;
    color: #f6fbff;
    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.18;
    max-width: 18ch;
    display: block;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.home-page .signal-band-title-lead {
    display: inline;
    color: rgba(246, 251, 255, 0.94);
}

.home-page .signal-band-title-accent {
    position: relative;
    display: inline-flex;
    margin-top: 6px;
    padding: 8px 14px 10px;
    border-radius: 16px;
    border: 1px solid rgba(114, 225, 220, 0.34);
    background:
        linear-gradient(135deg, rgba(114, 225, 220, 0.14), rgba(44, 151, 255, 0.08)),
        rgba(7, 18, 29, 0.68);
    color: #b9ffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(114, 225, 220, 0.08),
        0 14px 34px rgba(0, 0, 0, 0.28),
        0 0 30px rgba(67, 201, 223, 0.22);
    overflow: hidden;
}

.home-page .signal-band-title-accent::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 34%, transparent 66%, rgba(114, 225, 220, 0.12));
    pointer-events: none;
}

.home-page .signal-band-title-accent::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 9px;
    height: 1px;
    background: linear-gradient(90deg, rgba(114, 225, 220, 0.06), rgba(114, 225, 220, 0.9), rgba(44, 151, 255, 0.12));
    box-shadow: 0 0 14px rgba(67, 201, 223, 0.45);
    opacity: 0.9;
}

.home-page .signal-band-copy p {
    max-width: 60ch;
    margin: 0;
    color: rgba(223, 231, 242, 0.82);
    font-size: 15px;
    line-height: 1.75;
}

.home-page .signal-band-note {
    padding: 0;
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.home-page .signal-band-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.home-page .signal-band-card {
    position: relative;
    min-height: 0;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(114, 225, 220, 0.12);
}

.home-page .signal-band-card::before {
    display: none;
}

.home-page .signal-band-card strong {
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}

.home-page .signal-band-card span {
    color: rgba(223, 231, 242, 0.74);
    font-size: 13px;
    line-height: 1.5;
}

.home-page .section-header {
    margin-bottom: 52px;
}

.home-page .section-header p {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(10, 28, 41, 0.68);
    border: 1px solid rgba(109, 216, 239, 0.16);
    color: #9aecf2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.home-page .section-header p::before {
    content: "";
    width: 38px;
    height: 2px;
    background: linear-gradient(90deg, var(--rail-cyan), transparent);
}

.home-page .section-header.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.home-page .section-header h2 {
    color: #f6fbff;
    font-size: clamp(36px, 4.2vw, 56px);
    line-height: 1.08;
    text-shadow: none;
}

.home-page .section-header.text-center h2 {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
}

.home-page .section-header.text-left h2 {
    max-width: 13ch;
}

.home-page .section-header.text-left p {
    display: block;
    padding: 0;
    border: none;
    background: transparent;
    color: #90e9ee;
    letter-spacing: 0.08em;
    text-transform: none;
    line-height: 1.8;
}

.home-page .section-header.text-left p::before {
    display: none;
}

.home-page .feature {
    padding: 14px 0 34px;
}

.home-page .feature .container-fluid {
    max-width: 1240px;
    padding: 0 18px;
}

.home-page .feature .col-lg-4,
.home-page .feature .col-md-12 {
    display: flex;
}

.home-page .feature .col-md-12 {
    background: transparent;
    border: none;
    box-shadow: none;
}

.home-page .feature .feature-item {
    position: relative;
    width: 100%;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(13, 24, 38, 0.95), rgba(9, 17, 28, 0.95));
    border: 1px solid rgba(104, 205, 229, 0.16);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.home-page .feature .feature-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--rail-cyan), var(--rail-blue));
    box-shadow: 0 0 22px rgba(95, 223, 255, 0.45);
}

.home-page .feature .feature-item::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 18px;
    height: 8px;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, rgba(98, 214, 215, 0.28) 0 18px, transparent 18px 28px);
}

.home-page .feature-mark {
    min-width: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.home-page .feature-mark-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(121, 230, 228, 0.2), rgba(44, 151, 255, 0.12));
    border: 1px solid rgba(115, 223, 235, 0.28);
    box-shadow: inset 0 0 25px rgba(127, 230, 255, 0.08), 0 0 20px rgba(44, 151, 255, 0.12);
}

.home-page .feature-mark-icon i {
    font-size: 30px;
    color: #e7feff;
}

.home-page .feature-mark-code {
    color: #74dfe4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.home-page .feature .feature-text {
    padding-left: 0;
}

.home-page .feature .feature-text h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 24px;
    text-shadow: none;
}

.home-page .feature .feature-text p {
    color: rgba(228, 240, 248, 0.86);
    font-size: 16px;
    line-height: 1.75;
    text-shadow: none;
}

.home-page .about {
    position: relative;
    padding: 80px 0;
}

.home-page .about::before {
    content: "";
    position: absolute;
    inset: 40px 0 0;
    background: linear-gradient(180deg, rgba(18, 31, 48, 0.2), transparent 65%);
    z-index: 0;
}

.home-page .about .container,
.home-page .about .row,
.home-page .about .col-lg-5,
.home-page .about .col-lg-7 {
    position: relative;
    z-index: 1;
}

.home-page .about .about-img {
    overflow: hidden;
    height: 100%;
    border-radius: 30px;
    border: 1px solid rgba(114, 225, 220, 0.16);
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.3);
    background: #0b1422;
}

.home-page .about .about-img img {
    transition: transform 1s ease, filter 0.6s ease;
    filter: saturate(0.92) contrast(1.06);
}

.home-page .about:hover .about-img img {
    transform: scale(1.04);
}

.home-page .about .about-text {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 28px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(12, 23, 36, 0.95), rgba(17, 30, 46, 0.92));
    border: 1px solid rgba(109, 212, 236, 0.18);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.home-page .about .about-text::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(114, 225, 220, 0.15), transparent 34%);
}

.home-page .about .about-text p {
    position: relative;
    color: rgba(225, 236, 245, 0.86);
    font-size: 16px;
    line-height: 1.9;
}

.home-page .about .about-brand-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
}

.home-page .about .about-brand-logo {
    width: min(68%, 290px);
    max-height: 290px;
}

.home-page .about .about-brand-heading {
    width: 100%;
    margin-bottom: 2px;
    text-align: center;
}

.home-page .about .about-brand-heading p {
    max-width: 32ch;
    margin: 0 auto 8px;
    padding: 0;
    border: none;
    background: transparent;
    color: #90e9ee;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.55;
    text-transform: uppercase;
}

.home-page .about .about-brand-heading p::before {
    display: none;
}

.home-page .about .about-brand-heading h2 {
    max-width: 12ch;
    margin: 0 auto;
    color: #f6fbff;
    font-size: clamp(22px, 2.3vw, 30px);
    line-height: 1.08;
}

.home-page .about .about-section-heading-secondary {
    display: none;
}

.home-page .about .about-section-heading {
    margin-bottom: 16px;
}

.home-page .about .about-section-heading p {
    max-width: 54ch;
    margin-bottom: 8px;
    color: #8fe8ee;
    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

.home-page .about .about-section-heading h2 {
    max-width: 18ch;
    font-size: clamp(26px, 2.7vw, 36px);
    line-height: 1.08;
}

.home-page .about-copy-shell {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
}

.home-page .about-story-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.home-page .about-story-card {
    position: relative;
    min-height: 100%;
    padding: 14px 16px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(114, 225, 220, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.home-page .about-story-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(114, 225, 220, 0.12), transparent 48%);
    pointer-events: none;
}

.home-page .about-story-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(114, 225, 220, 0.1);
    color: #98f0ef;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-page .about-story-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.62;
}

.home-page .about .about-text a.btn {
    position: relative;
    align-self: flex-end;
    margin-left: auto;
    margin-top: 0;
    padding: 13px 28px;
    font-size: 14px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    color: #07101a;
    font-weight: 700;
    box-shadow: 0 18px 28px rgba(44, 151, 255, 0.28);
}

.home-page .about .about-text a.btn:hover {
    color: #07101a;
    background: linear-gradient(135deg, #8cf2ec, #59b6ff);
    transform: translateY(-2px);
}

.home-page .fact {
    padding: 0 0 72px;
}

.home-page .fact .container-fluid {
    max-width: 1240px;
    padding: 0 18px;
}

.home-page .fact .counters {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(114, 225, 220, 0.14);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.28);
    background: linear-gradient(135deg, rgba(10, 20, 32, 0.96), rgba(13, 27, 42, 0.92));
}

.home-page .fact .fact-left,
.home-page .fact .fact-right {
    position: relative;
    background: transparent;
    padding: 42px 32px;
}

.home-page .fact .fact-left::after {
    content: "";
    position: absolute;
    top: 26px;
    right: 0;
    bottom: 26px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(114, 225, 220, 0.35), transparent);
}

.home-page .fact .fact-icon {
    margin: 0 18px 0 0;
}

.home-page .fact .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(180deg, #f0feff, var(--rail-blue));
}

.home-page .fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(180deg, #f0feff, var(--rail-cyan));
}

.home-page .fact .fact-text h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 46px;
}

.home-page .fact .fact-text p {
    color: rgba(220, 233, 244, 0.74);
    font-size: 13px;
    letter-spacing: 0.16em;
}

.home-page .service {
    position: relative;
    padding: 20px 0 40px;
}

.home-page .service::before {
    content: "";
    position: absolute;
    inset: 80px 0 0;
    background: linear-gradient(180deg, rgba(16, 31, 48, 0.16), transparent 75%);
}

.home-page .service .container {
    position: relative;
    z-index: 1;
}

.home-page .service .service-item {
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(12, 21, 34, 0.96), rgba(8, 15, 24, 0.98));
    border: 1px solid rgba(114, 225, 220, 0.14);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.26);
}

.home-page .service .service-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.home-page .service .service-img {
    aspect-ratio: 4 / 3;
    background: #070c14;
}

.home-page .service .service-img img {
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease, filter 0.5s ease;
    filter: saturate(0.92) contrast(1.06);
}

.home-page .service .service-item:hover .service-img img {
    transform: scale(1.07);
    filter: saturate(1.02);
}

.home-page .service .service-overlay {
    padding: 28px;
    background: linear-gradient(180deg, rgba(6, 16, 26, 0.26), rgba(5, 14, 22, 0.92));
    backdrop-filter: blur(4px);
}

.home-page .service .service-overlay p {
    color: #e5f1f7;
    font-size: 15px;
    line-height: 1.75;
}

.home-page .service .service-text {
    min-height: 96px;
    height: auto;
    padding: 18px 18px 18px 24px;
    background: linear-gradient(180deg, rgba(16, 31, 49, 0.98), rgba(10, 19, 30, 0.98));
}

.home-page .service .service-text h3 {
    width: calc(100% - 56px);
    color: #efffff;
    white-space: normal;
    font-size: 18px;
    line-height: 1.45;
}

.home-page .service .service-item a.btn {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 18px 0 22px 0;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    color: #081019;
    font-size: 38px;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(44, 151, 255, 0.26);
}

.home-page .service .service-item:hover a.btn {
    color: #081019;
    transform: translateY(-2px);
}

.home-page .video {
    max-width: 1240px;
    margin: 70px auto;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(114, 225, 220, 0.16);
    box-shadow: 0 34px 72px rgba(0, 0, 0, 0.32);
    background:
        linear-gradient(90deg, rgba(7, 16, 27, 0.94) 0%, rgba(7, 16, 27, 0.8) 46%, rgba(7, 16, 27, 0.28) 100%),
        linear-gradient(180deg, rgba(49, 157, 255, 0.14), rgba(114, 225, 220, 0.05)),
        url(../img/demiryolu.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.home-page .video .container {
    position: relative;
    min-height: 520px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 56px 44px;
}

.home-page .video .container::after {
    content: "";
    position: absolute;
    left: 44px;
    right: 44px;
    bottom: 24px;
    height: 10px;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, rgba(114, 225, 220, 0.55) 0 22px, transparent 22px 34px);
    opacity: 0.38;
}

.home-page .video-story {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.home-page .video-story-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(114, 225, 220, 0.16);
    background: rgba(9, 18, 29, 0.62);
    color: #9ef6f2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.home-page .video-story-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, var(--rail-cyan), transparent);
}

.home-page .video-story h2 {
    margin: 16px 0 18px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
}

.home-page .video-story p {
    max-width: 46ch;
    margin: 0;
    color: rgba(222, 234, 244, 0.82);
    font-size: 18px;
    line-height: 1.7;
}

.home-page .video .btn-play {
    top: auto;
    left: auto;
    right: 72px;
    bottom: 74px;
    transform: none;
}

.home-page .video .btn-play:before {
    background: rgba(114, 225, 220, 0.48);
}

.home-page .video .btn-play:after {
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
}

.home-page .video .btn-play span {
    border-left-color: #07101a;
}

.home-page .faqs {
    position: relative;
    padding: 30px 0 90px;
}

.home-page .faqs::before {
    content: "";
    position: absolute;
    inset: 120px 0 0;
    background: linear-gradient(180deg, rgba(16, 31, 48, 0.16), transparent 75%);
}

.home-page .faqs .container {
    position: relative;
    z-index: 1;
}

.home-page .faqs .section-header h2 {
    max-width: 16ch;
}

.home-page .faqs .row::after {
    background: linear-gradient(180deg, transparent, rgba(114, 225, 220, 0.36), transparent);
    opacity: 0.55;
}

.home-page .faqs .card {
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.home-page .faqs .card-header {
    background: transparent;
}

.home-page .faqs .card-header a {
    padding: 16px 22px;
    border-radius: 18px;
    border: 1px solid rgba(114, 225, 220, 0.12);
    background: linear-gradient(180deg, rgba(12, 22, 35, 0.96), rgba(14, 26, 40, 0.94));
    color: #edfaff;
    font-weight: 600;
    line-height: 1.6;
}

.home-page .faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(76, 221, 229, 0.96), rgba(44, 151, 255, 0.86));
    color: #07101a;
}

.home-page .faqs .card-header [data-toggle="collapse"]:after {
    color: #73e5e3;
}

.home-page .faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    color: #07101a;
}

.home-page .faqs .card-body {
    border: 1px solid rgba(114, 225, 220, 0.12);
    border-top: none;
    background: rgba(12, 22, 35, 0.9);
    color: rgba(230, 239, 247, 0.86);
    line-height: 1.8;
}

.home-page .testimonial {
    margin: 0;
    padding: 74px 0 82px;
    background:
        linear-gradient(135deg, rgba(8, 18, 30, 0.95), rgba(5, 11, 18, 0.94)),
        url(../img/demiryolu.jpg);
    background-position: center;
    background-size: cover;
    border-top: 1px solid rgba(114, 225, 220, 0.12);
    border-bottom: 1px solid rgba(114, 225, 220, 0.12);
}

.home-page .testimonial .container {
    max-width: 1120px;
}

.home-page .testimonial .section-header {
    max-width: 940px;
    margin: 0 auto 12px;
    text-align: center !important;
}

.home-page .testimonial .section-header p,
.home-page .testimonial .section-header h2 {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.home-page .testimonial .section-header p {
    margin-bottom: 10px;
}

.home-page .testimonial .section-header h2 {
    max-width: 34ch;
    font-size: clamp(20px, 2vw, 29px);
    line-height: 1.14;
    text-wrap: balance;
}

.home-page .testimonial .testimonial-slider-nav {
    width: min(100%, 440px);
    margin: 16px auto 14px;
    padding-top: 18px;
}

.home-page .testimonial .testimonial-slider-nav .slick-list {
    padding: 12px 0 20px !important;
    overflow: visible;
}

.home-page .testimonial .testimonial-slider-nav .slick-slide {
    padding: 0 8px;
}

.home-page .testimonial .testimonial-slider-nav .slick-track {
    display: flex;
    align-items: center;
}

.home-page .testimonial .testimonial-slider-nav .slick-slide img {
    display: block;
    width: 104px;
    min-width: 104px;
    max-width: 104px;
    height: 104px;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 50% !important;
    border: 3px solid rgba(114, 225, 220, 0.18);
    object-position: center;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.home-page .testimonial .testimonial-slider {
    max-width: 860px;
    margin: 12px auto 0;
    padding: 50px 38px 30px;
    border-radius: 26px;
    border: 1px solid rgba(114, 225, 220, 0.14);
    background: linear-gradient(180deg, rgba(13, 24, 38, 0.92), rgba(9, 16, 27, 0.96));
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.26);
}

.home-page .testimonial .testimonial-slider::before {
    top: 14px;
    opacity: 0.65;
}

.home-page .testimonial .testimonial-slider h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 24px;
}

.home-page .testimonial .testimonial-slider h4 {
    color: var(--rail-cyan);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.home-page .testimonial .testimonial-slider p {
    color: rgba(230, 239, 247, 0.86);
    max-width: 62ch;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.72;
}

.home-page .footer {
    margin-top: 0;
    padding-top: 90px;
    background: linear-gradient(180deg, #0c1726 0%, #09101c 100%);
}

.home-page .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 14px;
    background: repeating-linear-gradient(90deg, rgba(114, 225, 220, 0.6) 0 24px, transparent 24px 38px);
    opacity: 0.42;
}

.home-page .footer .row > div {
    margin-bottom: 30px;
}

.home-page .footer .footer-contact,
.home-page .footer .footer-link,
.home-page .footer .newsletter {
    height: 100%;
    padding: 28px 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(14, 25, 39, 0.94), rgba(8, 15, 24, 0.96));
    border: 1px solid rgba(114, 225, 220, 0.14);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.home-page .footer .footer-link a {
    color: rgba(232, 240, 247, 0.86);
}

.home-page .footer .footer-link a:hover {
    color: #ffffff;
    letter-spacing: 0.04em;
}

.home-page .footer .footer-link a[href=""],
.home-page .footer .footer-menu .f-menu a[href=""] {
    pointer-events: none;
    opacity: 0.6;
}

.home-page .footer .footer-social a {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(114, 225, 220, 0.16);
}

.home-page .footer .footer-social a:hover {
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    border-color: transparent;
}

.home-page .footer .footer-social a:hover i {
    color: #061019;
}

.home-page .footer .newsletter .form {
    max-width: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-page .footer .newsletter input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0 14px;
    font-size: 14px;
    color: #efffff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(114, 225, 220, 0.14);
}

.home-page .footer .newsletter input[readonly] {
    font-size: 13px;
    letter-spacing: 0;
}

.home-page .footer .newsletter .btn {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    height: 50px;
    padding: 0 18px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    color: #061019;
    text-transform: uppercase;
}

.home-page .footer .newsletter .btn:hover {
    color: #061019;
    background: linear-gradient(135deg, #8cf2ec, #59b6ff);
}

@media (max-width: 991.98px) {
    .home-page .carousel .carousel-caption {
        align-items: center;
        text-align: center;
        padding: 108px 22px 104px;
    }

    .home-page .carousel .carousel-caption p::before {
        display: none;
    }

    .home-page .carousel .carousel-caption p {
        max-width: min(100%, 560px);
        font-size: 12px;
        letter-spacing: 0.16em;
    }

    .home-page .carousel .carousel-caption h1 {
        width: min(100%, 700px);
        max-width: 700px;
        font-size: clamp(24px, 5vw, 42px);
        line-height: 1.2;
    }

    .home-page .carousel-control-prev,
    .home-page .carousel-control-next {
        width: 52px;
        height: 52px;
        bottom: 18px;
    }

    .home-page .carousel-control-prev {
        right: 82px;
    }

    .home-page .carousel-control-next {
        right: 18px;
    }

    .home-page .home-signal-band {
        margin-top: 0;
        padding-top: 40px;
    }

    .home-page .signal-band-panel {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 24px;
    }

    .home-page .signal-band-copy {
        padding-right: 0;
    }

    .home-page .signal-band-copy h2 {
        max-width: none;
    }

    .home-page .signal-band-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .feature .feature-item {
        padding: 28px 24px;
    }

    .home-page .fact .fact-left::after {
        display: none;
    }

    .home-page .video {
        margin: 56px 18px;
    }

    .home-page .video .container {
        min-height: 460px;
        padding: 36px 24px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 28px;
    }

    .home-page .video .btn-play {
        right: 24px;
        bottom: 36px;
    }

    .home-page .footer .newsletter .form {
        flex-direction: column;
    }

    .home-page .footer .newsletter .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .home-page .section-header p {
        padding: 8px 14px;
        font-size: 11px;
        letter-spacing: 0.18em;
    }

    .home-page .section-header p::before {
        width: 26px;
    }

    .home-page .carousel .carousel-caption {
        align-items: center;
        text-align: center;
        padding: 98px 16px 92px;
    }

    .home-page .carousel .carousel-caption p {
        max-width: min(100%, 92vw);
        font-size: 11px;
        letter-spacing: 0.12em;
        line-height: 1.45;
    }

    .home-page .carousel .carousel-caption h1 {
        width: min(100%, 92vw);
        max-width: 92vw;
        font-size: clamp(22px, 7vw, 34px);
        line-height: 1.22;
    }

    .home-page .carousel-control-prev,
    .home-page .carousel-control-next {
        display: none;
    }

    .home-page .home-signal-band {
        margin-top: 0;
        padding: 28px 0 20px;
    }

    .home-page .signal-band-panel {
        padding: 20px;
    }

    .home-page .signal-band-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-page .signal-band-copy h2 {
        gap: 8px;
        max-width: none;
        font-size: clamp(26px, 8vw, 38px);
        line-height: 1.22;
    }

    .home-page .signal-band-note {
        font-size: 15px;
        line-height: 1.72;
    }

    .home-page .signal-band-card {
        padding: 14px 12px;
        border-radius: 16px;
    }

    .home-page .signal-band-card strong {
        font-size: 26px;
    }

    .home-page .signal-band-card span {
        font-size: 12px;
        line-height: 1.45;
    }

    .home-page .signal-band-title-accent {
        padding: 10px 14px 12px;
        border-radius: 18px;
    }

    .home-page .signal-band-note {
        padding: 12px 14px;
        font-size: 15px;
        line-height: 1.75;
    }

    .home-page .about .about-brand-wrap {
        padding: 16px;
    }

    .home-page .about .about-brand-logo {
        width: min(68%, 250px);
        max-height: 250px;
    }

    .home-page .about .about-brand-heading p {
        max-width: 34ch;
        font-size: 9px;
        letter-spacing: 0.1em;
        line-height: 1.5;
    }

    .home-page .about .about-brand-heading h2 {
        max-width: 14ch;
        font-size: clamp(20px, 4vw, 26px);
    }

    .home-page .about .about-section-heading p {
        max-width: none;
        font-size: 11px;
        letter-spacing: 0.08em;
        line-height: 1.55;
    }

    .home-page .about .about-section-heading h2 {
        max-width: none;
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.18;
    }

    .home-page .about-story-card {
        padding: 16px 16px 18px;
        border-radius: 18px;
    }

    .home-page .about-story-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .home-page .feature .container-fluid,
    .home-page .fact .container-fluid {
        padding: 0 12px;
    }

    .home-page .feature .feature-item {
        padding: 24px 22px;
        flex-direction: column;
    }

    .home-page .feature .feature-item::after {
        left: 22px;
        right: 22px;
    }

    .home-page .feature-mark {
        min-width: auto;
        width: 100%;
        align-items: flex-start;
    }

    .home-page .about {
        padding: 60px 0;
    }

    .home-page .about .about-text {
        padding: 28px 22px;
    }

    .home-page .about .about-brand-heading p {
        max-width: 30ch;
        margin-bottom: 6px;
        font-size: 8.5px;
        letter-spacing: 0.08em;
        line-height: 1.45;
    }

    .home-page .about .about-brand-heading h2 {
        max-width: 12ch;
        font-size: clamp(18px, 6vw, 24px);
        line-height: 1.12;
    }

    .home-page .about .about-section-heading {
        margin-bottom: 18px;
    }

    .home-page .about .about-section-heading h2 {
        max-width: none;
        font-size: clamp(28px, 4vw, 38px);
    }

    .home-page .about-story-grid {
        grid-template-columns: 1fr;
    }

    .home-page .fact .fact-left,
    .home-page .fact .fact-right {
        padding: 30px 22px;
    }

    .home-page .service .service-text {
        min-height: 88px;
        padding: 16px 14px 16px 18px;
    }

    .home-page .service .service-text h3 {
        font-size: 16px;
    }

    .home-page .video {
        margin: 40px 12px;
    }

    .home-page .video .container {
        min-height: 420px;
        padding: 28px 18px;
    }

    .home-page .video .container::after {
        left: 18px;
        right: 18px;
    }

    .home-page .video-story p {
        font-size: 16px;
    }

    .home-page .video .btn-play {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 8px;
    }

    .home-page .testimonial {
        padding: 56px 0 64px;
    }

    .home-page .testimonial .section-header {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .home-page .testimonial .section-header h2 {
        max-width: 30ch;
        font-size: clamp(17px, 3.3vw, 24px);
        line-height: 1.16;
    }

    .home-page .testimonial .testimonial-slider-nav {
        width: min(100%, 280px);
        margin-top: 12px;
        padding-top: 10px;
    }

    .home-page .testimonial .testimonial-slider-nav .slick-list {
        padding: 10px 0 18px !important;
    }

    .home-page .testimonial .testimonial-slider-nav .slick-slide {
        padding: 0 6px;
    }

    .home-page .testimonial .testimonial-slider-nav .slick-slide img {
        width: 84px;
        min-width: 84px;
        max-width: 84px;
        height: 84px;
        margin: 0 auto;
        border-radius: 50% !important;
    }

    .home-page .testimonial .testimonial-slider {
        padding: 42px 18px 22px;
        border-radius: 22px;
    }

    .home-page .testimonial .testimonial-slider h3 {
        font-size: 20px;
    }

    .home-page .testimonial .testimonial-slider h4 {
        font-size: 11px;
        letter-spacing: 0.14em;
        margin-bottom: 10px;
    }

    .home-page .testimonial .testimonial-slider p {
        font-size: 14px;
        line-height: 1.64;
    }

    .home-page .footer {
        padding-top: 70px;
    }

    .home-page .footer .footer-contact,
    .home-page .footer .footer-link,
    .home-page .footer .newsletter {
        padding: 24px 20px;
    }
}

/* Final carousel alignment fix: keep every slide centered */
.home-page #carousel .carousel-inner .carousel-item .carousel-caption,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center {
    justify-content: flex-end !important;
    align-items: center !important;
    text-align: center !important;
    padding: clamp(98px, 14vh, 148px) min(8vw, 88px) clamp(88px, 12vh, 124px) !important;
    transform: translateY(-24px);
}

.home-page #carousel .carousel-inner .carousel-item .carousel-caption p::before,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center p::before,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center p::before {
    display: none !important;
}

.home-page #carousel .carousel-inner .carousel-item .carousel-caption p,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption h1,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption .btn,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center p,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center h1,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center .btn,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center p,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center h1,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center .btn {
    margin-left: auto !important;
    margin-right: auto !important;
}

.home-page #carousel .carousel-inner .carousel-item .carousel-caption p,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center p,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center p {
    max-width: min(100%, 520px) !important;
    padding: 8px 16px !important;
    background: rgba(8, 18, 30, 0.5) !important;
}

.home-page #carousel .carousel-inner .carousel-item .carousel-caption h1,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center h1,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center h1 {
    width: min(100%, 700px) !important;
    max-width: 700px !important;
    font-size: clamp(26px, 3.5vw, 50px) !important;
    line-height: 1.18 !important;
}

.home-page #carousel .carousel-inner .carousel-item .carousel-caption .btn,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center .btn,
.home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center .btn {
    align-self: center !important;
}

@media (max-width: 991.98px) {
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center {
        padding: 108px 22px 82px !important;
        transform: translateY(-16px);
    }
}

@media (max-width: 767.98px) {
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center {
        padding: 100px 16px 68px !important;
        transform: translateY(-10px);
    }

    .home-page #carousel .carousel-inner .carousel-item .carousel-caption h1,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center h1,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center h1 {
        width: min(100%, 92vw) !important;
        max-width: 92vw !important;
        font-size: clamp(21px, 6.4vw, 32px) !important;
    }
}

/* Final carousel controls fix: place arrows under text and keep them clickable */
.home-page #carousel .carousel-caption {
    pointer-events: none;
}

.home-page #carousel .carousel-caption .btn {
    pointer-events: auto;
}

.home-page #carousel .carousel-control-prev,
.home-page #carousel .carousel-control-next {
    top: auto !important;
    bottom: clamp(28px, 5.5vh, 52px) !important;
    left: 50% !important;
    right: auto !important;
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: rgba(8, 19, 31, 0.86) !important;
    border: 1px solid rgba(114, 225, 220, 0.2) !important;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28) !important;
    opacity: 1 !important;
    z-index: 8 !important;
    pointer-events: auto !important;
}

.home-page #carousel .carousel-control-prev {
    transform: translateX(calc(-100% - 12px)) !important;
}

.home-page #carousel .carousel-control-next {
    transform: translateX(12px) !important;
}

.home-page #carousel .carousel-control-prev:hover,
.home-page #carousel .carousel-control-next:hover {
    background: linear-gradient(135deg, rgba(114, 225, 220, 0.95), rgba(44, 151, 255, 0.92)) !important;
    border-color: transparent !important;
}

.home-page #carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.home-page #carousel .carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0.2) !important;
}

@media (max-width: 991.98px) {
    .home-page #carousel .carousel-control-prev,
    .home-page #carousel .carousel-control-next {
        bottom: 22px !important;
        width: 52px !important;
        height: 52px !important;
    }
}

@media (max-width: 767.98px) {
    .home-page #carousel .carousel-control-prev,
    .home-page #carousel .carousel-control-next {
        display: flex !important;
        bottom: 18px !important;
        width: 48px !important;
        height: 48px !important;
    }

    .home-page #carousel .carousel-control-prev {
        transform: translateX(calc(-100% - 8px)) !important;
    }

    .home-page #carousel .carousel-control-next {
        transform: translateX(8px) !important;
    }
}

/* Final mobile responsive fix: keep contact info visible and show video more fully */
.mobile-contact-strip {
    display: none;
}

@media (max-width: 991.98px) {
    .nav-bar,
    .nav-bar.nav-sticky {
        align-items: stretch !important;
        padding: 10px 0 12px !important;
    }

    .navbar-brand.d-mobile {
        display: flex !important;
        flex: none !important;
        width: 100% !important;
        max-width: none !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        margin: 0 !important;
        padding: 0 16px 6px !important;
        text-align: center !important;
    }

    .navbar-brand.d-mobile .mobile-logo-main {
        font-size: clamp(22px, 6.2vw, 30px) !important;
        letter-spacing: 1px !important;
    }

    .navbar-brand.d-mobile .mobile-logo-sub {
        font-size: 11px !important;
        letter-spacing: 0.72px !important;
    }

    .navbar-brand.d-mobile .mobile-logo-sub::before {
        margin: 0 auto 4px !important;
    }

    .mobile-contact-strip {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        width: 100%;
        padding: 0 14px 10px;
    }

    .mobile-contact-strip .mobile-contact-chip:first-child {
        display: none;
    }

    .mobile-contact-chip {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 42px;
        padding: 10px 12px;
        border-radius: 14px;
        border: 1px solid rgba(114, 225, 220, 0.16);
        background: linear-gradient(135deg, rgba(7, 22, 40, 0.92), rgba(10, 30, 50, 0.78));
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.04),
            0 12px 26px rgba(0, 0, 0, 0.18);
        color: #effcff;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.01em;
        white-space: nowrap;
        overflow: hidden;
    }

    .mobile-contact-chip i {
        flex: 0 0 auto;
        color: #72e1dc;
        font-size: 12px;
    }

    .mobile-contact-chip span {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-contact-chip:hover {
        color: #ffffff;
        border-color: rgba(114, 225, 220, 0.28);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.06),
            0 16px 28px rgba(0, 0, 0, 0.22),
            0 0 24px rgba(67, 201, 223, 0.14);
        transform: translateY(-1px);
    }

    .nav-bar .container-fluid {
        padding: 0 14px !important;
    }

    .nav-bar .navbar {
        min-height: 56px !important;
        justify-content: flex-end !important;
    }

    .navbar-toggler {
        margin-left: auto !important;
    }

    .navbar-collapse {
        top: calc(100% + 10px) !important;
    }

    .carousel,
    #carousel,
    #carousel .carousel-inner,
    #carousel .carousel-item,
    .video-slide {
        height: calc(100svh - var(--nav-offset, 118px)) !important;
        min-height: 500px !important;
    }

    .video-bg {
        background:
            radial-gradient(circle at 50% 18%, rgba(67, 201, 223, 0.18), transparent 48%),
            linear-gradient(180deg, rgba(5, 11, 18, 0.72), rgba(5, 11, 18, 0.92));
    }

    #carousel .video-bg iframe {
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        transform: none !important;
    }

    .home-page #carousel .carousel-inner .carousel-item .carousel-caption,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center {
        padding: 88px 18px 92px !important;
    }

    .home-page #carousel .carousel-inner .carousel-item .carousel-caption p,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center p,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center p {
        max-width: min(100%, 420px) !important;
        padding: 7px 14px !important;
        background: rgba(8, 18, 30, 0.42) !important;
        font-size: 12px !important;
        letter-spacing: 0.14em !important;
    }

    .home-page #carousel .carousel-inner .carousel-item .carousel-caption h1,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center h1,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center h1 {
        width: min(100%, 84vw) !important;
        max-width: 84vw !important;
        font-size: clamp(20px, 6.1vw, 30px) !important;
        line-height: 1.22 !important;
    }

    .home-page #carousel .carousel-inner .carousel-item .carousel-caption .btn,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center .btn,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center .btn {
        padding: 12px 22px !important;
        font-size: 12px !important;
        letter-spacing: 0.12em !important;
    }

    .home-page #carousel .carousel-control-prev,
    .home-page #carousel .carousel-control-next {
        bottom: 14px !important;
    }
}

@media (max-width: 575.98px) {
    .mobile-contact-strip {
        grid-template-columns: 1fr;
        padding-bottom: 8px;
    }

    .mobile-contact-chip {
        min-height: 40px;
        font-size: 11.5px;
    }

    .carousel,
    #carousel,
    #carousel .carousel-inner,
    #carousel .carousel-item,
    .video-slide {
        min-height: 460px !important;
    }

    .home-page #carousel .carousel-inner .carousel-item .carousel-caption,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center {
        padding: 80px 14px 84px !important;
    }

    .home-page #carousel .carousel-inner .carousel-item .carousel-caption p,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center p,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center p {
        max-width: min(100%, 320px) !important;
        font-size: 11px !important;
    }
}

/* Final logo reset: keep text original, preserve only the rail line animation */
@keyframes railLineSweep {
    0% {
        background-position: 0% 50%;
        opacity: 0.55;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
    100% {
        background-position: 200% 50%;
        opacity: 0.55;
    }
}

.sub-logo {
    display: block;
    width: max-content;
    margin-top: -4px !important;
    margin-left: 232px !important;
    color: #cfd8dc !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    text-shadow: none !important;
    animation: none !important;
}

.navbar-brand.d-mobile .mobile-logo-sub {
    display: block;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.72) !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    text-shadow: none !important;
    animation: none !important;
}

.sub-logo::after,
.navbar-brand.d-mobile .mobile-logo-sub::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 5px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(149, 159, 170, 0.16) 16%,
        rgba(167, 176, 186, 0.88) 46%,
        rgba(108, 120, 132, 0.22) 76%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: railLineSweep 3.8s linear infinite;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .sub-logo {
        margin-left: 194px !important;
    }
}

@media (min-width: 992px) {
    .nav-bar .navbar-nav {
        margin-top: 8px;
    }

    .nav-bar .lang-dropdown {
        margin-top: 8px;
    }

    .nav-bar .ml-auto {
        margin-top: 8px;
    }
}

/* Final video upgrade: wider, more cinematic, more premium */
.home-page #carousel {
    background:
        radial-gradient(circle at 18% 12%, rgba(114, 225, 220, 0.14), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(44, 151, 255, 0.16), transparent 26%),
        #030a12;
}

.home-page #carousel .video-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(114, 225, 220, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(4, 10, 16, 0.18) 0%, rgba(4, 10, 16, 0.06) 24%, rgba(4, 10, 16, 0.2) 58%, rgba(4, 10, 16, 0.72) 100%);
    pointer-events: none;
    z-index: 1;
}

.home-page #carousel .video-bg iframe {
    width: max(112vw, 186vh);
    height: max(112vh, 63vw);
    filter: saturate(1.08) contrast(1.06) brightness(0.92);
}

.home-page .carousel .carousel-item::after {
    background:
        linear-gradient(180deg, rgba(5, 11, 18, 0.08) 0%, rgba(6, 15, 26, 0.26) 36%, rgba(5, 11, 18, 0.7) 100%);
}

.home-page .video {
    position: relative;
    width: min(calc(100% - 30px), 1180px);
    max-width: 1180px;
    margin: 62px auto;
    min-height: clamp(420px, 54vh, 520px);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(114, 225, 220, 0.18);
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(114, 225, 220, 0.05);
    background:
        radial-gradient(circle at 74% 24%, rgba(114, 225, 220, 0.18), transparent 22%),
        radial-gradient(circle at 92% 68%, rgba(44, 151, 255, 0.16), transparent 26%),
        linear-gradient(94deg, rgba(6, 14, 24, 0.94) 0%, rgba(6, 14, 24, 0.8) 34%, rgba(6, 14, 24, 0.2) 100%),
        url(../img/demiryolu.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-page .video::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 16%),
        linear-gradient(90deg, rgba(8, 18, 30, 0.1) 0%, transparent 24%, transparent 68%, rgba(8, 18, 30, 0.2) 100%);
    pointer-events: none;
}

.home-page .video .container {
    min-height: inherit;
    padding: clamp(26px, 3.4vw, 40px);
    gap: 20px;
}

.home-page .video .container::after {
    left: clamp(22px, 3.4vw, 38px);
    right: clamp(22px, 3.4vw, 38px);
    bottom: 20px;
    height: 8px;
    background: repeating-linear-gradient(90deg, rgba(114, 225, 220, 0.52) 0 18px, transparent 18px 30px);
    opacity: 0.32;
}

.home-page .video-story {
    max-width: 520px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(8, 18, 30, 0.48), rgba(9, 24, 40, 0.18));
    border: 1px solid rgba(114, 225, 220, 0.06);
    backdrop-filter: blur(12px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 8px 18px rgba(0, 0, 0, 0.12);
}

.home-page .video-story h2 {
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.1;
    text-wrap: balance;
}

.home-page .video-story p {
    max-width: 44ch;
    font-size: 16px;
    line-height: 1.62;
}

.home-page .video .btn-play {
    right: clamp(30px, 4.5vw, 60px);
    bottom: clamp(34px, 6vh, 60px);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.24),
        0 0 22px rgba(67, 201, 223, 0.12);
}

.home-page .video .btn-play:before {
    width: 92px;
    height: 92px;
    opacity: 0.22;
}

.home-page .video .btn-play:after {
    width: 76px;
    height: 76px;
}

.home-page .video .btn-play span {
    border-left-width: 22px;
    border-top-width: 14px;
    border-bottom-width: 14px;
}

@media (max-width: 1199.98px) {
    .home-page .video {
        width: min(calc(100% - 24px), 1120px);
        min-height: 460px;
    }

    .home-page .video .btn-play {
        width: 72px;
        height: 72px;
    }

    .home-page .video .btn-play:before {
        width: 86px;
        height: 86px;
    }

    .home-page .video .btn-play:after {
        width: 72px;
        height: 72px;
    }

    .home-page .video .btn-play span {
        border-left-width: 20px;
        border-top-width: 13px;
        border-bottom-width: 13px;
    }
}

@media (max-width: 991.98px) {
    .home-page #carousel .video-bg iframe {
        width: 100% !important;
        height: 100% !important;
        filter: saturate(1.06) contrast(1.02) brightness(0.92);
    }

    .home-page .video {
        width: calc(100% - 16px);
        margin: 50px auto;
        min-height: 400px;
        border-radius: 24px;
    }

    .home-page .video .container {
        min-height: 400px;
        padding: 24px 18px 26px;
    }

    .home-page .video-story {
        max-width: 100%;
        padding: 16px 16px 18px;
        border-radius: 18px;
    }

    .home-page .video-story h2 {
        font-size: clamp(24px, 4.6vw, 34px);
    }

    .home-page .video-story p {
        font-size: 15px;
        line-height: 1.58;
    }

    .home-page .video .btn-play {
        right: 26px;
        bottom: 28px;
        width: 64px;
        height: 64px;
    }

    .home-page .video .btn-play:before {
        width: 76px;
        height: 76px;
    }

    .home-page .video .btn-play:after {
        width: 64px;
        height: 64px;
    }

    .home-page .video .btn-play span {
        border-left-width: 18px;
        border-top-width: 12px;
        border-bottom-width: 12px;
    }
}

@media (max-width: 767.98px) {
    .home-page .video {
        width: calc(100% - 10px);
        margin: 42px auto;
        min-height: 340px;
        border-radius: 20px;
    }

    .home-page .video .container {
        min-height: 340px;
        padding: 18px 12px 20px;
    }

    .home-page .video-story {
        padding: 14px 12px 16px;
        border-radius: 16px;
    }

    .home-page .video-story h2 {
        font-size: clamp(20px, 5.6vw, 28px);
    }

    .home-page .video-story p {
        font-size: 14px;
        line-height: 1.54;
    }

    .home-page .video .btn-play {
        right: 18px;
        bottom: 18px;
        width: 58px;
        height: 58px;
    }

    .home-page .video .btn-play:before {
        width: 68px;
        height: 68px;
    }

    .home-page .video .btn-play:after {
        width: 58px;
        height: 58px;
    }

    .home-page .video .btn-play span {
        border-left-width: 16px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
}

/* =========================
   INNER PAGE RAIL THEME
   ========================= */
.site-page {
    --rail-cyan: #72e1dc;
    --rail-aqua: #43c9df;
    --rail-blue: #2c97ff;
    --rail-steel: #455466;
    --rail-ink: #08101b;
    --rail-panel: #0d1826;
    --rail-panel-2: #111f31;
    --rail-line: rgba(114, 225, 220, 0.18);
    background:
        radial-gradient(circle at 12% 2%, rgba(114, 225, 220, 0.12), transparent 24%),
        radial-gradient(circle at 88% 4%, rgba(44, 151, 255, 0.14), transparent 22%),
        linear-gradient(180deg, #09111d 0%, #07101a 100%);
}

.site-page .wrapper {
    background: transparent;
}

.site-page .top-bar {
    background: linear-gradient(180deg, rgba(9, 18, 29, 0.86), rgba(9, 18, 29, 0.52));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(114, 225, 220, 0.1);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.site-page .top-bar .top-bar-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(114, 225, 220, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 24px rgba(0, 0, 0, 0.12);
}

.site-page .top-bar .top-bar-icon [class^="flaticon-"]::before {
    color: #a5f6f1;
    font-size: 28px;
}

.site-page .top-bar .top-bar-text {
    padding-left: 12px;
}

.site-page .top-bar .top-bar-text h3 {
    margin: 0 0 2px;
    color: rgba(225, 241, 248, 0.72);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-page .top-bar .top-bar-text p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.site-page .nav-bar {
    backdrop-filter: blur(16px);
    background: rgba(7, 14, 24, 0.66);
    border-bottom: 1px solid rgba(114, 225, 220, 0.08);
}

.site-page .nav-bar.nav-sticky {
    background: linear-gradient(180deg, rgba(7, 14, 24, 0.94), rgba(8, 16, 28, 0.88));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.site-page .nav-bar .ml-auto {
    transform: none;
}

.site-page .navbar-dark .navbar-nav .nav-link {
    padding: 12px 18px;
    border-radius: 999px;
    color: rgba(229, 240, 247, 0.86);
}

.site-page .navbar-dark .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.site-page .navbar-dark .navbar-nav .nav-link.active {
    color: #07101a;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    box-shadow: 0 12px 24px rgba(44, 151, 255, 0.28);
}

.site-page .nav-bar .btn {
    border: none;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    color: #061019;
    box-shadow:
        0 12px 26px rgba(44, 151, 255, 0.24),
        0 0 0 1px rgba(114, 225, 220, 0.14);
    animation: none;
}

.site-page .nav-bar .btn span {
    text-shadow: none;
}

.site-page .nav-bar .btn:hover {
    color: #061019;
    background: linear-gradient(135deg, #9cf4ed, #61bcff);
    transform: translateY(-2px);
}

.site-page .page-header {
    position: relative;
    margin-bottom: 60px;
    padding: 170px 0 104px;
    overflow: hidden;
    border-bottom: 1px solid rgba(114, 225, 220, 0.12);
    background:
        linear-gradient(104deg, rgba(6, 14, 24, 0.92) 0%, rgba(6, 14, 24, 0.76) 40%, rgba(6, 14, 24, 0.34) 100%),
        radial-gradient(circle at 18% 18%, rgba(114, 225, 220, 0.16), transparent 24%),
        url(../img/demiryolu.jpg);
    background-position: center;
    background-size: cover;
}

.page-about .page-header {
    background-image:
        linear-gradient(104deg, rgba(6, 14, 24, 0.92) 0%, rgba(6, 14, 24, 0.76) 40%, rgba(6, 14, 24, 0.34) 100%),
        radial-gradient(circle at 18% 18%, rgba(114, 225, 220, 0.16), transparent 24%),
        url(../img/demiryolu.jpg);
}

.page-service .page-header {
    background-image:
        linear-gradient(104deg, rgba(6, 14, 24, 0.92) 0%, rgba(6, 14, 24, 0.76) 40%, rgba(6, 14, 24, 0.34) 100%),
        radial-gradient(circle at 18% 18%, rgba(114, 225, 220, 0.16), transparent 24%),
        url(../img/service-11.jpg);
}

.page-portfolio .page-header {
    background-image:
        linear-gradient(104deg, rgba(6, 14, 24, 0.92) 0%, rgba(6, 14, 24, 0.76) 40%, rgba(6, 14, 24, 0.34) 100%),
        radial-gradient(circle at 18% 18%, rgba(114, 225, 220, 0.16), transparent 24%),
        url(../img/hatvemakas.JPG);
}

.page-contact .page-header {
    background-image:
        linear-gradient(104deg, rgba(6, 14, 24, 0.92) 0%, rgba(6, 14, 24, 0.76) 40%, rgba(6, 14, 24, 0.34) 100%),
        radial-gradient(circle at 18% 18%, rgba(114, 225, 220, 0.16), transparent 24%),
        url(../img/service-12.jpg);
}

.site-page .page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%),
        linear-gradient(180deg, rgba(4, 10, 16, 0.02) 0%, rgba(4, 10, 16, 0.26) 55%, rgba(4, 10, 16, 0.72) 100%);
    pointer-events: none;
}

.site-page .page-header::after {
    content: "";
    position: absolute;
    left: clamp(22px, 5vw, 60px);
    right: clamp(22px, 5vw, 60px);
    bottom: 18px;
    height: 8px;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, rgba(114, 225, 220, 0.56) 0 20px, transparent 20px 34px);
    opacity: 0.32;
}

.site-page .page-header .container {
    position: relative;
    z-index: 1;
    transform: translateY(16px);
}

.site-page .page-header h2 {
    color: #ffffff;
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: 0.02em;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.site-page .page-header h2::after {
    width: 120px;
    height: 2px;
    left: calc(50% - 60px);
    bottom: -8px;
    background: linear-gradient(90deg, transparent, var(--rail-cyan), transparent);
}

.site-page .page-header a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 8px 6px 0;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(114, 225, 220, 0.14);
    background: rgba(10, 20, 32, 0.48);
    color: #eaf7fb;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-page .page-header a::after {
    display: none;
}

.site-page .page-header a:hover {
    border-color: transparent;
    color: #061019;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
}

.site-page .section-header {
    margin-bottom: 40px;
}

.site-page .section-header p {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(114, 225, 220, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: #a5f6f1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-page .section-header p::before {
    content: "";
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--rail-cyan), transparent);
}

.site-page .section-header h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    text-wrap: balance;
}

.site-page .section-header.text-left p,
.site-page .section-header.text-left h2 {
    margin-left: 0;
}

.site-page .about {
    padding: 20px 0 70px;
}

.site-page .about .row {
    align-items: stretch !important;
}

.site-page .about .about-img {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(114, 225, 220, 0.14);
    background: #07101a;
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.28);
}

.site-page .about .about-img img {
    min-height: 100%;
    object-fit: cover;
    filter: saturate(0.94) contrast(1.04);
}

.site-page .about .about-text {
    height: 100%;
    padding: 34px 34px 36px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(13, 24, 38, 0.94), rgba(8, 15, 24, 0.96));
    border: 1px solid rgba(114, 225, 220, 0.14);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
}

.site-page .about .about-text p {
    color: rgba(230, 239, 247, 0.86);
    line-height: 1.88;
}

.site-page .about .about-text a.btn {
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    color: #07101a;
    font-weight: 700;
    box-shadow: 0 18px 28px rgba(44, 151, 255, 0.28);
}

.site-page .about .about-text a.btn:hover {
    color: #07101a;
    background: linear-gradient(135deg, #8cf2ec, #59b6ff);
}

.site-page .fact {
    padding: 0 0 72px;
}

.site-page .fact .container-fluid {
    max-width: 1240px;
    padding: 0 18px;
}

.site-page .fact .counters {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(114, 225, 220, 0.14);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.28);
    background: linear-gradient(135deg, rgba(10, 20, 32, 0.96), rgba(13, 27, 42, 0.92));
}

.site-page .fact .fact-left,
.site-page .fact .fact-right {
    position: relative;
    background: transparent;
    padding: 42px 32px;
}

.site-page .fact .fact-left::after {
    content: "";
    position: absolute;
    top: 26px;
    right: 0;
    bottom: 26px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(114, 225, 220, 0.35), transparent);
}

.site-page .fact .fact-icon {
    margin: 0 18px 0 0;
}

.site-page .fact .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(180deg, #f0feff, var(--rail-blue));
}

.site-page .fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(180deg, #f0feff, var(--rail-cyan));
}

.site-page .fact .fact-text h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 46px;
}

.site-page .fact .fact-text p {
    color: rgba(220, 233, 244, 0.74);
    font-size: 13px;
    letter-spacing: 0.16em;
}

.site-page .faqs {
    position: relative;
    padding: 28px 0 88px;
}

.site-page .faqs .row::after {
    background: linear-gradient(180deg, transparent, rgba(114, 225, 220, 0.36), transparent);
    opacity: 0.55;
}

.site-page .faqs .card {
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.site-page .faqs .card-header {
    background: transparent;
}

.site-page .faqs .card-header a {
    padding: 16px 22px;
    border-radius: 18px;
    border: 1px solid rgba(114, 225, 220, 0.12);
    background: linear-gradient(180deg, rgba(12, 22, 35, 0.96), rgba(14, 26, 40, 0.94));
    color: #edfaff;
    font-weight: 600;
    line-height: 1.6;
}

.site-page .faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(76, 221, 229, 0.96), rgba(44, 151, 255, 0.86));
    color: #07101a;
}

.site-page .faqs .card-header [data-toggle="collapse"]:after {
    color: #73e5e3;
}

.site-page .faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    color: #07101a;
}

.site-page .faqs .card-body {
    border: 1px solid rgba(114, 225, 220, 0.12);
    border-top: none;
    background: rgba(12, 22, 35, 0.9);
    color: rgba(230, 239, 247, 0.86);
    line-height: 1.8;
}

.site-page .service {
    position: relative;
    padding: 20px 0 40px;
}

.site-page .service .service-item {
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(12, 21, 34, 0.96), rgba(8, 15, 24, 0.98));
    border: 1px solid rgba(114, 225, 220, 0.14);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.26);
}

.site-page .service .service-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.site-page .service .service-img {
    aspect-ratio: 4 / 3;
    background: #070c14;
}

.site-page .service .service-img img {
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease, filter 0.5s ease;
    filter: saturate(0.92) contrast(1.06);
}

.site-page .service .service-item:hover .service-img img {
    transform: scale(1.07);
    filter: saturate(1.02);
}

.site-page .service .service-overlay {
    padding: 28px;
    background: linear-gradient(180deg, rgba(6, 16, 26, 0.26), rgba(5, 14, 22, 0.92));
    backdrop-filter: blur(4px);
}

.site-page .service .service-overlay p {
    color: #e5f1f7;
    font-size: 15px;
    line-height: 1.75;
}

.site-page .service .service-text {
    min-height: 96px;
    height: auto;
    padding: 18px 18px 18px 24px;
    background: linear-gradient(180deg, rgba(16, 31, 49, 0.98), rgba(10, 19, 30, 0.98));
}

.site-page .service .service-text h3 {
    width: calc(100% - 56px);
    color: #efffff;
    white-space: normal;
    font-size: 18px;
    line-height: 1.45;
}

.site-page .service .service-item a.btn {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 18px 0 22px 0;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    color: #081019;
    font-size: 38px;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(44, 151, 255, 0.26);
}

.site-page .service .service-item:hover a.btn {
    color: #081019;
    transform: translateY(-2px);
}

.site-page .portfolio {
    padding: 20px 0 36px;
}

.site-page .portfolio #portfolio-flters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.site-page .portfolio #portfolio-flters li,
.site-page .portfolio .load-more .btn {
    border: 1px solid rgba(114, 225, 220, 0.14);
    border-radius: 999px;
    background: rgba(11, 20, 33, 0.92);
    color: #edfaff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.site-page .portfolio #portfolio-flters li:hover,
.site-page .portfolio #portfolio-flters li.filter-active,
.site-page .portfolio .load-more .btn:hover {
    border-color: transparent;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    color: #07101a;
}

.site-page .portfolio .portfolio-warp {
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(12, 21, 34, 0.96), rgba(8, 15, 24, 0.98));
    border: 1px solid rgba(114, 225, 220, 0.14);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.26);
}

.site-page .portfolio .portfolio-img {
    aspect-ratio: 4 / 3;
    background: #070c14;
}

.site-page .portfolio .portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease, filter 0.5s ease;
    filter: saturate(0.94) contrast(1.05);
}

.site-page .portfolio .portfolio-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.02);
}

.site-page .portfolio .portfolio-overlay {
    padding: 28px;
    background: linear-gradient(180deg, rgba(6, 16, 26, 0.22), rgba(5, 14, 22, 0.92));
    backdrop-filter: blur(4px);
}

.site-page .portfolio .portfolio-overlay p {
    color: #e5f1f7;
    line-height: 1.75;
}

.site-page .portfolio .portfolio-text {
    min-height: 96px;
    height: auto;
    padding: 18px 18px 18px 24px;
    background: linear-gradient(180deg, rgba(16, 31, 49, 0.98), rgba(10, 19, 30, 0.98));
}

.site-page .portfolio .portfolio-text h3 {
    width: calc(100% - 56px);
    color: #efffff;
    white-space: normal;
    font-size: 18px;
    line-height: 1.45;
    text-align: left;
}

.site-page .portfolio .portfolio-warp a.btn {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 18px 0 22px 0;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    color: #081019;
    font-size: 38px;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(44, 151, 255, 0.26);
}

.site-page .portfolio .portfolio-warp:hover a.btn {
    color: #081019;
}

.site-page .contact {
    padding: 20px 0 36px;
}

.site-page .contact .col-md-6 {
    padding-top: 0;
    padding-bottom: 30px;
    background: transparent;
}

.site-page .contact .col-md-6:first-child,
.site-page .contact .col-md-6:last-child {
    background: transparent;
}

.site-page .contact .section-header {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.site-page .contact .section-header .about-img {
    max-width: 120px;
    margin: 0 auto 18px;
}

.site-page .contact .section-header .about-img img {
    width: 100%;
    filter: drop-shadow(0 14px 24px rgba(44, 151, 255, 0.22));
}

.site-page .contact .section-header h2 {
    max-width: 22ch;
    margin: 12px auto 0;
}

.site-page .contact .contact-info,
.site-page .contact .contact-form {
    height: 100%;
    padding: 30px 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(13, 24, 38, 0.94), rgba(9, 16, 27, 0.96));
    border: 1px solid rgba(114, 225, 220, 0.14);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.site-page .contact .contact-item {
    margin-bottom: 0;
    padding: 20px 0;
    border: none;
    border-bottom: 1px solid rgba(114, 225, 220, 0.12);
}

.site-page .contact .contact-item:first-child {
    padding-top: 0;
}

.site-page .contact .contact-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.site-page .contact .contact-item [class^="flaticon-"]::before {
    margin: 0;
    font-size: 34px;
    background-image: linear-gradient(180deg, #f0feff, var(--rail-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-page .contact .contact-text {
    padding-left: 18px;
}

.site-page .contact .contact-text h2 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.site-page .contact .contact-text p {
    color: rgba(230, 239, 247, 0.82);
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.site-page .contact .contact-form input,
.site-page .contact .contact-form textarea {
    color: #efffff;
    border: 1px solid rgba(114, 225, 220, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.site-page .contact .contact-form input {
    height: 50px;
}

.site-page .contact .contact-form textarea {
    height: 185px;
}

.site-page .contact .contact-form input:focus,
.site-page .contact .contact-form textarea:focus {
    border-color: rgba(114, 225, 220, 0.28);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.site-page .contact .contact-form .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    color: #061019;
    font-weight: 700;
    box-shadow: 0 18px 28px rgba(44, 151, 255, 0.28);
}

.site-page .contact .contact-form .btn:hover {
    color: #061019;
    background: linear-gradient(135deg, #8cf2ec, #59b6ff);
}

.site-page .footer {
    margin-top: 0;
    padding-top: 90px;
    background: linear-gradient(180deg, #0c1726 0%, #09101c 100%);
}

.site-page .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 14px;
    background: repeating-linear-gradient(90deg, rgba(114, 225, 220, 0.6) 0 24px, transparent 24px 38px);
    opacity: 0.42;
}

.site-page .footer .row > div {
    margin-bottom: 30px;
}

.site-page .footer .footer-contact,
.site-page .footer .footer-link,
.site-page .footer .newsletter {
    height: 100%;
    padding: 28px 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(14, 25, 39, 0.94), rgba(8, 15, 24, 0.96));
    border: 1px solid rgba(114, 225, 220, 0.14);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.site-page .footer .footer-link a {
    color: rgba(232, 240, 247, 0.86);
}

.site-page .footer .footer-link a:hover {
    color: #ffffff;
    letter-spacing: 0.04em;
}

.site-page .footer .footer-social a {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(114, 225, 220, 0.16);
}

.site-page .footer .footer-social a:hover {
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    border-color: transparent;
}

.site-page .footer .footer-social a:hover i {
    color: #061019;
}

.site-page .footer .newsletter .form {
    max-width: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-page .footer .newsletter input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0 14px;
    font-size: 14px;
    color: #efffff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(114, 225, 220, 0.14);
}

.site-page .footer .newsletter input[readonly] {
    font-size: 13px;
    letter-spacing: 0;
}

.site-page .footer .newsletter .btn {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    height: 50px;
    padding: 0 18px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    color: #061019;
    text-transform: uppercase;
}

.site-page .footer .newsletter .btn:hover {
    color: #061019;
    background: linear-gradient(135deg, #8cf2ec, #59b6ff);
}

.site-page .back-to-top {
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    color: #07101a;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(44, 151, 255, 0.26);
}

.site-page .back-to-top:hover,
.site-page .back-to-top:focus-visible {
    background: #07101a;
    color: var(--rail-cyan);
    outline: none;
}

@media (min-width: 992px) {
    .site-page .top-bar {
        height: 88px;
        padding: 0 42px;
    }
}

@media (max-width: 991.98px) {
    .site-page .page-header {
        margin-bottom: 44px;
        padding: 126px 0 76px;
    }

    .site-page .page-header h2 {
        font-size: clamp(32px, 6vw, 46px);
    }

    .site-page .section-header h2 {
        font-size: clamp(28px, 5.4vw, 40px);
    }

    .site-page .fact .fact-left::after {
        display: none;
    }

    .site-page .about .about-text,
    .site-page .contact .contact-info,
    .site-page .contact .contact-form {
        padding: 26px 22px;
        border-radius: 24px;
    }

    .site-page .service .service-text,
    .site-page .portfolio .portfolio-text {
        min-height: 88px;
        padding: 16px 16px 16px 20px;
    }

    .site-page .footer .newsletter .form {
        flex-direction: column;
    }

    .site-page .footer .newsletter .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .site-page .page-header {
        padding: 118px 0 68px;
    }

    .site-page .page-header a {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .site-page .section-header p {
        font-size: 11px;
        letter-spacing: 0.14em;
    }

    .site-page .section-header h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .site-page .about .about-text {
        padding: 24px 20px 26px;
        border-radius: 22px;
    }

    .site-page .service .service-item,
    .site-page .portfolio .portfolio-warp,
    .site-page .footer .footer-contact,
    .site-page .footer .footer-link,
    .site-page .footer .newsletter,
    .site-page .contact .contact-info,
    .site-page .contact .contact-form {
        border-radius: 20px;
    }

    .site-page .service .service-text h3,
    .site-page .portfolio .portfolio-text h3 {
        font-size: 16px;
    }

    .site-page .fact .container-fluid {
        padding: 0 12px;
    }
}

/* =========================
   SITE PAGE LAYOUT REBALANCE
   Keep the inner page color language, but preserve
   the original skeleton and proportions.
   ========================= */
.site-page {
    background: linear-gradient(180deg, #09111d 0%, #07101a 100%);
}

.site-page .top-bar {
    height: 80px;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}

.site-page .top-bar .top-bar-icon {
    width: 40px;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.site-page .top-bar .top-bar-icon [class^="flaticon-"]::before {
    color: #ffffff;
    font-size: 40px;
}

.site-page .top-bar .top-bar-text {
    padding-left: 15px;
}

.site-page .top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
}

.site-page .top-bar .top-bar-text p {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
}

.site-page .nav-bar {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.site-page .nav-bar.nav-sticky {
    background: rgba(8, 16, 28, 0.84);
    border-bottom: 1px solid rgba(114, 225, 220, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.site-page .nav-bar .ml-auto {
    transform: translateX(-100px);
}

.site-page .navbar-dark .navbar-nav .nav-link {
    padding: 10px 16px;
    border-radius: 8px;
    color: #ffffff;
}

.site-page .navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(114, 225, 220, 0.38), rgba(44, 151, 255, 0.24));
    border-color: rgba(114, 225, 220, 0.32);
    box-shadow: none;
}

.site-page .nav-bar .btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(78, 229, 234, 0.45);
    box-shadow:
        0 0 8px rgba(78, 229, 234, 0.25),
        0 0 18px rgba(78, 229, 234, 0.15);
}

.site-page .nav-bar .btn span {
    text-shadow: 0 0 6px rgba(78, 229, 234, 0.6);
}

.site-page .nav-bar .btn:hover {
    background: linear-gradient(
        135deg,
        rgba(78, 229, 234, 0.95),
        rgba(25, 203, 215, 0.95)
    );
    color: #030f27;
    border-color: rgba(25, 203, 215, 1);
    box-shadow:
        0 0 20px rgba(78, 229, 234, 0.9),
        0 0 46px rgba(29, 187, 181, 0.7);
    transform: scaleX(1.07);
}

.site-page .page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 166px 0 82px;
    overflow: hidden;
    border-bottom: none;
    background:
        radial-gradient(circle at 18% 12%, rgba(114, 225, 220, 0.14), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(44, 151, 255, 0.16), transparent 26%),
        linear-gradient(180deg, #050b12 0%, #09111d 58%, #07101a 100%);
}

.site-page .page-header::before,
.site-page .page-header::after {
    display: block;
}

.site-page .page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(114, 225, 220, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(4, 10, 16, 0.18) 0%, rgba(4, 10, 16, 0.06) 24%, rgba(4, 10, 16, 0.2) 58%, rgba(4, 10, 16, 0.72) 100%);
    pointer-events: none;
}

.site-page .page-header::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: min(180px, 32vw);
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(114, 225, 220, 0.9), transparent);
    opacity: 0.9;
}

.site-page .page-header .container {
    position: relative;
    z-index: 1;
}

.site-page .page-header h2 {
    color: #f6fbff;
    font-size: clamp(34px, 4.6vw, 56px);
    letter-spacing: 0.02em;
    text-shadow: 0 12px 35px rgba(0, 0, 0, 0.42);
}

.site-page .page-header h2::after {
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(114, 225, 220, 0.9), transparent);
}

.site-page .page-header a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 8px 6px 0;
    padding: 9px 18px;
    border: 1px solid rgba(114, 225, 220, 0.18);
    border-radius: 999px;
    background: rgba(9, 18, 29, 0.62);
    color: #e9feff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.site-page .page-header a::after {
    display: none;
}

.site-page .page-header a:hover {
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    border-color: transparent;
    color: #05111b;
}

.site-page .page-header a[href^="mailto:"] {
    text-transform: none;
    letter-spacing: normal;
}

.page-about .page-header .page-header-email {
    text-transform: none;
    letter-spacing: normal;
}

.site-page .section-header {
    margin-bottom: 45px;
}

.site-page .section-header p {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    color: #21c1a9;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
}

.site-page .section-header p::before {
    display: none;
}

.site-page .section-header h2 {
    font-size: 50px;
    line-height: 1.2;
    text-wrap: normal;
}

.site-page .about {
    padding: 45px 0;
}

.site-page .about .section-header {
    margin-bottom: 30px;
}

.site-page .about .about-img {
    overflow: visible;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.site-page .about .about-img img {
    min-height: 0;
    filter: none;
}

.site-page .about .about-text {
    height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-page .about .about-text p {
    color: rgba(232, 254, 255, 0.88);
    line-height: 1.8;
}

.site-page .about .about-text a.btn {
    border-radius: 0;
    background: #119fa6;
    border: 2px solid #33e2fd;
    color: #030f27;
    box-shadow: none;
}

.site-page .about .about-text a.btn:hover {
    color: #4ee5ea;
    background: #235353;
}

.site-page .fact {
    padding: 45px 0;
}

.site-page .fact .container-fluid {
    max-width: none;
    padding: 0 15px;
}

.site-page .fact .counters {
    overflow: visible;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.site-page .fact .fact-left,
.site-page .fact .fact-right {
    padding: 60px 30px;
    border-radius: 0;
}

.site-page .fact .fact-left {
    background: #030f27;
    color: #4ee5ea;
}

.site-page .fact .fact-right {
    background: #155c67;
    color: #030f27;
}

.site-page .fact .fact-left::after {
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(51, 226, 253, 0.4);
}

.site-page .fact .fact-icon {
    margin: 7px 15px 0 15px;
}

.site-page .fact .fact-text h2 {
    margin-bottom: 0;
    font-size: 35px;
}

.site-page .fact .fact-text p {
    font-size: 16px;
    letter-spacing: normal;
}

.site-page .faqs {
    padding: 45px 0;
}

.site-page .faqs .card {
    border-radius: 0;
    box-shadow: none;
}

.site-page .faqs .card-header a {
    padding: 10px 25px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    color: #121518;
    line-height: 40px;
}

.site-page .faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: #10a096;
    color: #121518;
}

.site-page .faqs .card-body {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    background: #ffffff;
    color: #121518;
    line-height: 1.75;
}

.site-page .service {
    padding: 45px 0 15px 0;
}

.site-page .service .service-item {
    margin-bottom: 30px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.site-page .service .service-item::before {
    display: none;
}

.site-page .service .service-img {
    aspect-ratio: auto;
    background: transparent;
}

.site-page .service .service-img img {
    height: auto;
    filter: none;
    transition: 0.3s;
}

.site-page .service .service-item:hover .service-img img {
    transform: scale(1.1);
    filter: none;
}

.site-page .service .service-overlay {
    padding: 30px;
    background: rgba(3, 15, 39, 0.7);
    backdrop-filter: none;
}

.site-page .service .service-overlay p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

.site-page .service .service-text {
    min-height: 0;
    height: 60px;
    padding: 0;
    background: #030f27;
}

.site-page .service .service-text h3 {
    width: calc(100% - 60px);
    font-size: 20px;
    line-height: normal;
    white-space: nowrap;
    text-align: left;
}

.site-page .service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    border-radius: 0;
    background: #1a8989;
    box-shadow: none;
    font-size: 60px;
}

.site-page .service .service-item:hover a.btn {
    color: #ffffff;
    transform: none;
}

.site-page .portfolio {
    padding: 45px 0;
}

.site-page .portfolio #portfolio-flters {
    display: block;
    margin: -15px 0 25px 0;
}

.site-page .portfolio #portfolio-flters li,
.site-page .portfolio .load-more .btn {
    border: none;
    border-radius: 0;
    background: #1a8989;
    color: #030f27;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: uppercase;
    box-shadow: none;
}

.site-page .portfolio #portfolio-flters li:hover,
.site-page .portfolio #portfolio-flters li.filter-active,
.site-page .portfolio .load-more .btn:hover {
    background: #030f27;
    color: #46ced3;
}

.site-page .portfolio .portfolio-warp {
    margin-bottom: 30px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.site-page .portfolio .portfolio-img {
    aspect-ratio: auto;
    background: transparent;
}

.site-page .portfolio .portfolio-img img {
    height: auto;
    filter: none;
    transition: 0.3s;
}

.site-page .portfolio .portfolio-item:hover img {
    transform: scale(1.1);
    filter: none;
}

.site-page .portfolio .portfolio-overlay {
    padding: 30px;
    background: rgba(3, 15, 39, 0.7);
    backdrop-filter: none;
}

.site-page .portfolio .portfolio-overlay p {
    color: #ffffff;
    line-height: 1.6;
}

.site-page .portfolio .portfolio-text {
    min-height: 0;
    height: 60px;
    padding: 0;
    background: #146e77;
}

.site-page .portfolio .portfolio-text h3 {
    width: calc(100% - 60px);
    font-size: 20px;
    line-height: normal;
    white-space: nowrap;
    text-align: center;
}

.site-page .portfolio .portfolio-warp a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    font-size: 60px;
}

.site-page .contact {
    padding: 45px 0;
}

.site-page .contact .col-md-6 {
    padding-top: 30px;
    padding-bottom: 30px;
    background: transparent;
}

.site-page .contact .col-md-6:first-child {
    background: #030f27;
}

.site-page .contact .col-md-6:last-child {
    background: #116262;
}

.site-page .contact .section-header {
    max-width: none;
    margin: 0 auto 45px;
    text-align: center;
}

.site-page .contact .section-header .about-img {
    max-width: 90px;
    margin: 0 auto 18px;
}

.site-page .contact .section-header .about-img img {
    width: 100%;
    filter: none;
}

.site-page .contact .section-header h2 {
    max-width: none;
    margin: 0;
}

.site-page .contact .contact-info,
.site-page .contact .contact-form {
    height: auto;
    padding: 0 15px;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.site-page .contact .contact-item {
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-page .contact .contact-item:first-child {
    padding-top: 30px;
}

.site-page .contact .contact-item:last-child {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-page .contact .contact-item [class^="flaticon-"]::before {
    color: #116262;
    font-size: 40px;
    background-image: none;
    background-clip: border-box;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: initial;
}

.site-page .contact .contact-text {
    padding-left: 20px;
}

.site-page .contact .contact-text h2 {
    color: #116262;
    font-size: 20px;
    font-weight: 600;
}

.site-page .contact .contact-text p {
    color: #ffffff;
    line-height: normal;
}

.site-page .contact .contact-form input,
.site-page .contact .contact-form textarea {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    background: transparent;
}

.site-page .contact .contact-form input {
    height: 40px;
}

.site-page .contact .contact-form textarea {
    height: 185px;
}

.site-page .contact .contact-form .btn {
    min-height: 0;
    padding: 16px 30px;
    border: none;
    border-radius: 0;
    background: #030f27;
    color: #116262;
    box-shadow: none;
}

.site-page .contact .contact-form .btn:hover {
    color: #030f27;
    background: #ffffff;
}

.site-page .footer {
    margin-top: 45px;
    padding-top: 90px;
    background: #116262;
}

.site-page .footer::before {
    display: none;
}

.site-page .footer .row > div {
    margin-bottom: 0;
}

.site-page .footer .footer-contact,
.site-page .footer .footer-link,
.site-page .footer .newsletter {
    height: auto;
    margin-bottom: 45px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-page .footer .newsletter .form {
    display: block;
    max-width: 400px;
}

.site-page .footer .newsletter input {
    background: transparent;
    border: 2px solid #121518;
}

.site-page .footer .newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    min-width: 0;
    height: 40px;
    padding: 8px 10px;
    border: 2px solid #33e2fd;
    border-radius: 0;
    background: #121518;
    color: #33e2fd;
    text-transform: uppercase;
}

.site-page .footer .newsletter .btn:hover {
    color: #121518;
    background: #33e2fd;
}

.about .about-brand-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .about-brand-logo {
    display: block;
    width: min(82%, 420px);
    height: auto !important;
    max-height: 420px;
    margin: 0 auto;
    object-fit: contain !important;
}

@media (min-width: 992px) {
    .site-page .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .site-page .nav-bar .ml-auto {
        transform: none;
    }

    .site-page .page-header {
        padding: 138px 0 68px;
    }

    .site-page .page-header h2 {
        font-size: 42px;
    }

    .site-page .page-header a {
        font-size: 12px;
    }
}

@media (max-width: 767.98px) {
    .site-page .page-header {
        padding: 122px 0 56px;
    }

    .site-page .page-header h2 {
        font-size: 31px;
    }

    .site-page .page-header a {
        width: auto;
        margin: 8px 4px 0;
        padding: 8px 14px;
        font-size: 11px;
    }

    .site-page .section-header p {
        font-size: 18px;
    }

    .site-page .section-header h2 {
        font-size: 30px;
    }

    .site-page .contact .section-header .about-img {
        max-width: 72px;
    }

    .about .about-brand-logo {
        width: min(74%, 280px);
        max-height: 280px;
    }
}

.page-contact .page-header {
    padding: 154px 0 72px;
}

.page-contact .page-header .col-12:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.page-contact .page-header a {
    margin: 0;
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.page-contact .page-header .page-header-email {
    text-transform: none;
    letter-spacing: normal;
}

.page-contact .contact .section-header {
    max-width: 1120px;
    margin-bottom: 34px;
    padding: 0 10px;
}

.page-contact .contact .section-header .about-img {
    max-width: 74px;
    margin-bottom: 14px;
}

.page-contact .contact .section-header p {
    margin-bottom: 8px;
    font-size: 16px;
}

.page-contact .contact .section-header h2 {
    max-width: 56ch;
    margin: 0 auto;
    font-size: clamp(17px, 1.9vw, 24px);
    line-height: 1.24;
    font-weight: 600;
    letter-spacing: 0;
    text-wrap: normal;
    white-space: normal;
    word-break: normal;
}

.page-contact .contact .contact-item {
    padding: 24px;
}

.page-contact .contact .contact-text h2 {
    font-size: 18px;
}

.page-contact .contact .contact-text p {
    font-size: 15px;
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 991.98px) {
    .page-contact .page-header {
        padding: 130px 0 60px;
    }

    .page-contact .page-header a {
        font-size: 11px;
        padding: 8px 12px;
    }

    .page-contact .contact .section-header h2 {
        max-width: 52ch;
        font-size: clamp(17px, 2.9vw, 21px);
        line-height: 1.26;
    }
}

@media (max-width: 767.98px) {
    .page-contact .page-header .col-12:last-child {
        gap: 8px;
    }

    .page-contact .page-header a {
        width: auto;
        max-width: 100%;
        white-space: normal;
    }

    .page-contact .contact .section-header {
        margin-bottom: 28px;
    }

    .page-contact .contact .section-header .about-img {
        max-width: 64px;
    }

    .page-contact .contact .section-header p {
        font-size: 15px;
    }

    .page-contact .contact .section-header h2 {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.28;
    }

    .page-contact .contact .contact-item {
        padding: 20px 18px;
    }

    .page-contact .contact .contact-text h2 {
        font-size: 17px;
    }

    .page-contact .contact .contact-text p {
        font-size: 14px;
    }
}

/* =========================
   INNER FOOTER SYNC
   Match the homepage footer on all inner pages.
   ========================= */
.site-page .footer {
    margin-top: 0;
    padding-top: 90px;
    background: linear-gradient(180deg, #0c1726 0%, #09101c 100%);
}

.site-page .footer::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 14px;
    background: repeating-linear-gradient(90deg, rgba(114, 225, 220, 0.6) 0 24px, transparent 24px 38px);
    opacity: 0.42;
}

.site-page .footer .row > div {
    margin-bottom: 30px;
}

.site-page .footer .footer-contact,
.site-page .footer .footer-link,
.site-page .footer .newsletter {
    height: 100%;
    margin-bottom: 0;
    padding: 28px 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(14, 25, 39, 0.94), rgba(8, 15, 24, 0.96));
    border: 1px solid rgba(114, 225, 220, 0.14);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.site-page .footer .footer-link a {
    color: rgba(232, 240, 247, 0.86);
}

.site-page .footer .footer-link a:hover {
    color: #ffffff;
    letter-spacing: 0.04em;
}

.site-page .footer .footer-link a[href=""],
.site-page .footer .footer-menu .f-menu a[href=""] {
    pointer-events: none;
    opacity: 0.6;
}

.site-page .footer .footer-social a {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(114, 225, 220, 0.16);
}

.site-page .footer .footer-social a:hover {
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    border-color: transparent;
}

.site-page .footer .footer-social a:hover i {
    color: #061019;
}

.site-page .footer .newsletter .form {
    max-width: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-page .footer .newsletter input {
    flex: 1 1 auto;
    color: #efffff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(114, 225, 220, 0.14);
}

.site-page .footer .newsletter .btn {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    height: 50px;
    padding: 0 18px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    color: #061019;
    text-transform: uppercase;
}

.site-page .footer .newsletter .btn:hover {
    color: #061019;
    background: linear-gradient(135deg, #8cf2ec, #59b6ff);
}

@media (min-width: 1200px) {
    .home-page .footer > .container:first-child,
    .site-page .footer > .container:first-child {
        max-width: 1360px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .home-page .footer > .container:first-child > .row,
    .site-page .footer > .container:first-child > .row {
        display: grid;
        grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.96fr) minmax(0, 0.96fr) minmax(320px, 1.18fr);
        gap: 26px;
        align-items: stretch;
    }

    .home-page .footer > .container:first-child > .row > [class*="col-"],
    .site-page .footer > .container:first-child > .row > [class*="col-"] {
        width: auto;
        max-width: none;
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .home-page .footer > .container:first-child .footer-contact,
    .home-page .footer > .container:first-child .footer-link,
    .home-page .footer > .container:first-child .newsletter,
    .site-page .footer > .container:first-child .footer-contact,
    .site-page .footer > .container:first-child .footer-link,
    .site-page .footer > .container:first-child .newsletter {
        padding: 34px 30px;
        border-radius: 30px;
    }

    .home-page .footer > .container:first-child h2,
    .site-page .footer > .container:first-child h2 {
        margin-bottom: 24px;
        padding-bottom: 12px;
        font-size: 22px;
    }

    .home-page .footer > .container:first-child .footer-contact p,
    .home-page .footer > .container:first-child .newsletter p,
    .site-page .footer > .container:first-child .footer-contact p,
    .site-page .footer > .container:first-child .newsletter p {
        line-height: 1.8;
    }

    .home-page .footer > .container:first-child .footer-link a,
    .site-page .footer > .container:first-child .footer-link a {
        margin-bottom: 12px;
    }

    .home-page .footer > .container:first-child .newsletter p,
    .site-page .footer > .container:first-child .newsletter p {
        max-width: 38ch;
        margin-bottom: 18px;
    }

    .home-page .footer > .container:first-child .newsletter .form,
    .site-page .footer > .container:first-child .newsletter .form {
        gap: 12px;
    }

    .home-page .footer > .container:first-child .newsletter input,
    .site-page .footer > .container:first-child .newsletter input {
        min-width: 0;
    }
}

@media (max-width: 991.98px) {
    .site-page .footer .newsletter .form {
        flex-direction: column;
    }

    .site-page .footer .newsletter .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .site-page .footer {
        padding-top: 70px;
    }

    .site-page .footer .footer-contact,
    .site-page .footer .footer-link,
    .site-page .footer .newsletter {
        padding: 24px 20px;
    }
}

/* =========================
   INNER FAQ SYNC
   Match homepage FAQ styling on inner pages.
   ========================= */
.site-page .faqs {
    position: relative;
    padding: 30px 0 90px;
}

.site-page .faqs::before {
    content: "";
    position: absolute;
    inset: 120px 0 0;
    background: linear-gradient(180deg, rgba(16, 31, 48, 0.16), transparent 75%);
}

.site-page .faqs .container {
    position: relative;
    z-index: 1;
}

.site-page .faqs .section-header p {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(114, 225, 220, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: #9aecf2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.site-page .faqs .section-header p::before {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    background: linear-gradient(90deg, var(--rail-cyan), transparent);
}

.site-page .faqs .section-header.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.site-page .faqs .section-header h2 {
    color: #f6fbff;
    font-size: clamp(36px, 4.2vw, 56px);
    line-height: 1.08;
    text-shadow: none;
}

.site-page .faqs .section-header.text-center h2 {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
}

.site-page .faqs .row::after {
    background: linear-gradient(180deg, transparent, rgba(114, 225, 220, 0.36), transparent);
    opacity: 0.55;
}

.site-page .faqs .card {
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.site-page .faqs .card-header {
    background: transparent;
}

.site-page .faqs .card-header a {
    padding: 16px 22px;
    border-radius: 18px;
    border: 1px solid rgba(114, 225, 220, 0.12);
    background: linear-gradient(180deg, rgba(12, 22, 35, 0.96), rgba(14, 26, 40, 0.94));
    color: #edfaff;
    font-weight: 600;
    line-height: 1.6;
}

.site-page .faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(76, 221, 229, 0.96), rgba(44, 151, 255, 0.86));
    color: #07101a;
}

.site-page .faqs .card-header [data-toggle="collapse"]:after {
    color: #73e5e3;
}

.site-page .faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    color: #07101a;
}

.site-page .faqs .card-body {
    border: 1px solid rgba(114, 225, 220, 0.12);
    border-top: none;
    background: rgba(12, 22, 35, 0.9);
    color: rgba(230, 239, 247, 0.86);
    line-height: 1.8;
}

@media (max-width: 767.98px) {
    .site-page .faqs .section-header p {
        padding: 8px 14px;
        font-size: 11px;
        letter-spacing: 0.18em;
    }

    .site-page .faqs .section-header p::before {
        width: 26px;
    }

    .site-page .faqs .section-header h2 {
        font-size: clamp(28px, 7vw, 34px);
    }
}

.page-portfolio .page-header {
    padding-top: 182px;
}

@media (max-width: 991.98px) {
    .page-portfolio .page-header {
        padding-top: 148px;
    }

    .site-page .page-header .container {
        transform: translateY(12px);
    }
}

@media (max-width: 767.98px) {
    .page-portfolio .page-header {
        padding-top: 132px;
    }

    .site-page .page-header .container {
        transform: translateY(8px);
    }
}

.page-contact .page-header .container {
    transform: translateY(30px);
}

@media (max-width: 991.98px) {
    .page-contact .page-header .container {
        transform: translateY(22px);
    }
}

@media (max-width: 767.98px) {
    .page-contact .page-header .container {
        transform: translateY(16px);
    }
}

/* Home mobile hero fix: keep the header compact so the video remains visible */
@media (max-width: 991.98px) {
    .home-page .mobile-contact-strip {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 12px 4px !important;
        gap: 0 !important;
    }

    .home-page .mobile-contact-chip {
        display: none !important;
    }

    .home-page .mobile-contact-chip:first-child {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        min-height: 30px !important;
        padding: 6px 12px !important;
        border-radius: 999px !important;
        background: rgba(7, 22, 40, 0.72) !important;
        border: 1px solid rgba(114, 225, 220, 0.14) !important;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16) !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        letter-spacing: 0.04em !important;
        color: #effcff !important;
        white-space: nowrap !important;
    }

    .home-page .mobile-contact-chip:first-child i {
        color: #72e1dc !important;
        font-size: 11px !important;
    }

    .home-page .nav-bar,
    .home-page .nav-bar.nav-sticky {
        padding: 6px 0 !important;
        background: linear-gradient(180deg, rgba(4, 12, 22, 0.94), rgba(4, 12, 22, 0.78)) !important;
        border-bottom-color: rgba(255, 255, 255, 0.06) !important;
    }

    .home-page .nav-bar .container-fluid {
        padding: 0 12px !important;
    }

    .home-page .nav-bar .navbar {
        min-height: 50px !important;
    }

    .home-page .navbar-brand.d-mobile {
        max-width: calc(100% - 56px) !important;
        padding: 0 10px 2px !important;
        gap: 1px !important;
    }

    .home-page .navbar-brand.d-mobile .mobile-logo-main {
        font-size: clamp(20px, 5.6vw, 26px) !important;
        line-height: 1.05 !important;
    }

    .home-page .navbar-brand.d-mobile .mobile-logo-sub {
        font-size: 10px !important;
        letter-spacing: 0.5px !important;
    }

    .home-page .navbar-toggler {
        margin-top: 0 !important;
        font-size: 22px !important;
    }

    .home-page .carousel,
    .home-page #carousel,
    .home-page #carousel .carousel-inner,
    .home-page #carousel .carousel-item,
    .home-page .video-slide {
        height: 100dvh !important;
        min-height: 100svh !important;
    }

    .home-page #carousel .video-bg iframe {
        top: 50% !important;
        left: 50% !important;
        width: max(100vw, 177.78dvh) !important;
        height: max(100dvh, 56.25vw) !important;
        min-width: 100% !important;
        min-height: 100% !important;
        transform: translate(-50%, -50%) !important;
    }

    .home-page #carousel .carousel-inner .carousel-item .carousel-caption,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center {
        padding: 108px 16px 82px !important;
    }
}

@media (max-width: 575.98px) {
    .home-page .mobile-contact-strip {
        padding: 0 10px 3px !important;
    }

    .home-page .mobile-contact-chip:first-child {
        min-height: 28px !important;
        padding: 5px 10px !important;
        font-size: 10.5px !important;
    }

    .home-page .nav-bar,
    .home-page .nav-bar.nav-sticky {
        padding: 5px 0 !important;
    }

    .home-page .nav-bar .navbar {
        min-height: 46px !important;
    }

    .home-page .navbar-brand.d-mobile .mobile-logo-main {
        font-size: clamp(18px, 6vw, 23px) !important;
    }

    .home-page .navbar-brand.d-mobile .mobile-logo-sub {
        font-size: 9px !important;
        letter-spacing: 0.42px !important;
    }

    .home-page #carousel .carousel-inner .carousel-item .carousel-caption,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center {
        padding: 100px 14px 76px !important;
    }
}

/* Contact page refinement */
.page-contact .contact {
    padding: 24px 0 46px;
}

.page-contact .contact .section-header {
    max-width: 980px;
    margin: 0 auto 28px;
    padding: 0 12px;
}

.page-contact .contact .section-header .about-img {
    max-width: 70px;
    margin: 0 auto 12px;
}

.page-contact .contact-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 6px 12px;
    border: 1px solid rgba(114, 225, 220, 0.26);
    border-radius: 999px;
    background: rgba(9, 20, 34, 0.72);
    color: #dffdfc;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.page-contact .contact .section-header p {
    margin-bottom: 8px;
    color: rgba(222, 238, 247, 0.78);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-contact .contact .section-header h2 {
    max-width: 58ch;
    color: #f8fbff;
    font-size: clamp(17px, 1.75vw, 24px);
    line-height: 1.36;
    font-weight: 500;
}

.page-contact .contact-shell {
    align-items: stretch;
}

.page-contact .contact-column {
    display: flex;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    background: transparent !important;
}

.page-contact .contact .contact-info,
.page-contact .contact .contact-form {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 26px 24px;
    border: 1px solid rgba(114, 225, 220, 0.14);
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(114, 225, 220, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(13, 24, 38, 0.96), rgba(8, 15, 26, 0.98));
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.page-contact .contact .contact-form {
    background:
        radial-gradient(circle at top right, rgba(44, 151, 255, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(13, 24, 38, 0.96), rgba(8, 15, 26, 0.98));
}

.page-contact .contact-panel-head {
    margin-bottom: 18px;
}

.page-contact .contact-panel-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--rail-cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-contact .contact-panel-head h3 {
    margin: 0;
    color: #f6fbff;
    font-size: clamp(17px, 1.75vw, 22px);
    line-height: 1.3;
    font-weight: 600;
}

.page-contact .contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.page-contact .contact .contact-item:hover {
    transform: translateY(-2px);
    border-color: rgba(114, 225, 220, 0.22);
    background: rgba(255, 255, 255, 0.055);
}

.page-contact .contact .contact-item:last-child {
    margin-bottom: 0;
}

.page-contact .contact .contact-item > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(114, 225, 220, 0.14), rgba(44, 151, 255, 0.12));
}

.page-contact .contact .contact-item [class^="flaticon-"]::before {
    margin: 0;
    font-size: 24px;
    background-image: linear-gradient(180deg, #f0feff, var(--rail-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-contact .contact .contact-text {
    padding-left: 0;
}

.page-contact .contact .contact-text h2 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.page-contact .contact .contact-text p,
.page-contact .contact .contact-text p a {
    margin: 0;
    color: rgba(231, 240, 248, 0.84);
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: color 200ms ease;
}

.page-contact .contact .contact-text p a:hover {
    color: #ffffff;
}

.page-contact .contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.page-contact .contact-form-grid .control-group:last-child {
    grid-column: 1 / -1;
}

.page-contact .contact .control-group {
    margin-bottom: 0;
}

.page-contact .contact .contact-form input,
.page-contact .contact .contact-form textarea {
    width: 100%;
    border: 1px solid rgba(114, 225, 220, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #f4feff;
    transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.page-contact .contact .contact-form input {
    height: 50px;
}

.page-contact .contact .contact-form textarea {
    height: 170px;
    padding-top: 14px;
}

.page-contact .contact .contact-form input:focus,
.page-contact .contact .contact-form textarea:focus {
    border-color: rgba(114, 225, 220, 0.34);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    box-shadow: none;
}

.page-contact .contact .contact-form .form-control::placeholder {
    color: rgba(214, 228, 240, 0.64);
}

.page-contact .contact #success {
    margin-bottom: 12px;
}

.page-contact .contact #success .alert {
    border: 1px solid rgba(114, 225, 220, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: #f4fbff;
}

.page-contact .contact .help-block ul {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.page-contact .contact .help-block ul li {
    color: #ffb8b8;
    font-size: 13px;
}

.page-contact .contact-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.page-contact .contact .contact-form .btn {
    min-width: 190px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--rail-cyan), var(--rail-blue));
    color: #041019;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 18px 30px rgba(44, 151, 255, 0.28);
}

.page-contact .contact .contact-form .btn:hover {
    color: #041019;
    background: linear-gradient(135deg, #8ef4ee, #61b8ff);
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .page-contact .contact .contact-info,
    .page-contact .contact .contact-form {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .page-contact .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .page-contact .contact-form-grid .control-group:last-child {
        grid-column: auto;
    }

    .page-contact .contact-actions {
        justify-content: stretch;
    }

    .page-contact .contact .contact-form .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .page-contact .contact {
        padding: 18px 0 34px;
    }

    .page-contact .contact .section-header {
        margin-bottom: 22px;
    }

    .page-contact .contact .section-header h2 {
        font-size: 16px;
        line-height: 1.48;
    }

    .page-contact .contact-column {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .page-contact .contact .contact-info,
    .page-contact .contact .contact-form {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .page-contact .contact .contact-item {
        padding: 15px 14px;
        border-radius: 16px;
        gap: 12px;
    }

    .page-contact .contact .contact-item > i {
        width: 44px;
        min-width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .page-contact .contact .contact-item [class^="flaticon-"]::before {
        font-size: 21px;
    }
}

/* Sticky logo transparency */
.nav-bar.nav-sticky .logo-nav h1 {
    opacity: 0.78;
    background: linear-gradient(
        90deg,
        rgba(47, 205, 214, 0.72) 0%,
        rgba(123, 233, 236, 0.76) 42%,
        rgba(255, 255, 255, 0.82) 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(47, 205, 214, 0.18);
}

@media (max-width: 991.98px) {
    .nav-bar .navbar {
        justify-content: flex-end !important;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .nav-bar .navbar-toggler {
        order: 2;
        flex: 0 0 auto;
        width: 42px;
        height: 42px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) {
        order: 1;
        display: flex !important;
        flex: 0 0 auto;
        align-items: center;
        position: static;
        width: auto;
        max-height: none;
        overflow: visible;
        margin: 0;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .navbar-nav {
        display: none !important;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .ml-auto {
        display: flex;
        width: auto;
        margin: 0 !important;
        transform: none !important;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .btn {
        width: auto;
        min-height: 42px;
        margin: 0;
        padding: 9px 12px;
        border-radius: 12px;
        font-size: 11px;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }
}

@media (max-width: 575.98px) {
    .nav-bar .navbar {
        gap: 6px;
    }

    .nav-bar .navbar-toggler {
        width: 40px;
        height: 40px;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .btn {
        min-height: 40px;
        padding: 8px 10px;
        font-size: 10px;
    }
}

@media (max-width: 991.98px) {
    .navbar-brand.d-mobile {
        width: fit-content !important;
        max-width: calc(100% - 18px) !important;
        margin: 0 auto 4px 12px !important;
        padding: 8px 16px 9px 14px !important;
        align-items: flex-start !important;
        justify-content: center !important;
        text-align: left !important;
        gap: 2px !important;
        border-radius: 18px !important;
        background: linear-gradient(180deg, rgba(7, 16, 28, 0.78), rgba(7, 16, 28, 0.56)) !important;
        border: 1px solid rgba(114, 225, 220, 0.16) !important;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .navbar-brand.d-mobile .mobile-logo-main {
        font-size: clamp(19px, 5vw, 24px) !important;
        line-height: 1.02 !important;
        letter-spacing: 0.7px !important;
    }

    .navbar-brand.d-mobile .mobile-logo-sub {
        width: 100%;
        font-size: 10px !important;
        letter-spacing: 0.48px !important;
        color: rgba(228, 240, 247, 0.72) !important;
    }

    .navbar-brand.d-mobile .mobile-logo-sub::before {
        width: 26px !important;
        margin: 0 auto 4px 0 !important;
        background: linear-gradient(90deg, rgba(114, 225, 220, 0.82), transparent) !important;
    }

    .navbar-brand.d-mobile .mobile-logo-phone {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 5px;
        color: rgba(222, 238, 247, 0.84);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.02em;
    }

    .navbar-brand.d-mobile .mobile-logo-phone i {
        color: #72e1dc;
        font-size: 10px;
    }

    .navbar-brand.d-mobile .mobile-logo-phone span {
        display: inline-block;
    }

}

@media (max-width: 575.98px) {
    .navbar-brand.d-mobile {
        margin: 0 auto 3px 10px !important;
        padding: 7px 14px 8px 12px !important;
        border-radius: 16px !important;
    }

    .navbar-brand.d-mobile .mobile-logo-main {
        font-size: clamp(18px, 5.8vw, 22px) !important;
    }

    .navbar-brand.d-mobile .mobile-logo-sub {
        font-size: 9px !important;
        letter-spacing: 0.4px !important;
    }

    .navbar-brand.d-mobile .mobile-logo-phone {
        margin-top: 4px;
        font-size: 9px;
    }

    .navbar-brand.d-mobile .mobile-logo-phone i {
        font-size: 9px;
    }

}

@media (max-width: 991.98px) {
    .home-page .mobile-contact-chip {
        display: none !important;
    }

    .home-page .mobile-contact-chip:first-child {
        display: none !important;
    }

    .home-page .mobile-contact-chip:last-child {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        min-height: 30px !important;
        padding: 6px 12px !important;
        border-radius: 999px !important;
        background: rgba(7, 22, 40, 0.72) !important;
        border: 1px solid rgba(114, 225, 220, 0.14) !important;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16) !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        letter-spacing: 0.04em !important;
        color: #effcff !important;
        white-space: nowrap !important;
    }

    .home-page .mobile-contact-chip:last-child i {
        color: #72e1dc !important;
        font-size: 11px !important;
    }
}

@media (max-width: 575.98px) {
    .home-page .mobile-contact-chip:last-child {
        min-height: 28px !important;
        padding: 5px 10px !important;
        font-size: 10.5px !important;
    }
}

@media (max-width: 991.98px) {
    .mobile-contact-strip,
    .home-page .mobile-contact-strip,
    .site-page .mobile-contact-strip {
        display: none !important;
    }

    .navbar-brand.d-mobile .mobile-logo-email {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 3px;
        color: rgba(222, 238, 247, 0.78);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.01em;
    }

    .navbar-brand.d-mobile .mobile-logo-email i {
        color: #72e1dc;
        font-size: 10px;
    }

    .navbar-brand.d-mobile .mobile-logo-email span {
        display: inline-block;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand.d-mobile .mobile-logo-email {
        font-size: 9px;
    }

    .navbar-brand.d-mobile .mobile-logo-email i {
        font-size: 9px;
    }
}

@media (max-width: 991.98px) {
    .home-page .nav-bar {
        padding: 6px 0 !important;
        background: transparent !important;
        border-bottom-color: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transition:
            background 0.28s ease,
            box-shadow 0.28s ease,
            border-color 0.28s ease,
            backdrop-filter 0.28s ease;
    }

    .home-page .nav-bar .container-fluid {
        padding: 0 12px !important;
    }

    .home-page .nav-bar .navbar {
        min-height: 50px !important;
        padding: 0 !important;
        background: transparent !important;
    }

    .home-page .nav-bar .navbar-collapse:not(.show):not(.collapsing) .btn,
    .home-page .nav-bar .navbar-toggler {
        background: linear-gradient(180deg, rgba(7, 22, 40, 0.6), rgba(7, 22, 40, 0.4)) !important;
        border: 1px solid rgba(114, 225, 220, 0.16) !important;
        box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .home-page .nav-bar .navbar-toggler {
        color: #effcff;
    }

    .home-page .nav-bar .navbar-collapse.show,
    .home-page .nav-bar .navbar-collapse.collapsing {
        background: linear-gradient(180deg, rgba(7, 16, 28, 0.94), rgba(7, 16, 28, 0.88)) !important;
        border: 1px solid rgba(114, 225, 220, 0.12) !important;
        border-radius: 18px !important;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .home-page .nav-bar.nav-sticky {
        background: linear-gradient(180deg, rgba(4, 12, 22, 0.94), rgba(4, 12, 22, 0.8)) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
    }
}

.nav-bar > .navbar-brand.d-mobile {
    display: none !important;
}

.nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline {
    display: none !important;
}

@media (max-width: 991.98px) {
    .nav-bar > .navbar-brand.d-mobile {
        display: none !important;
    }

    .nav-bar .navbar {
        justify-content: space-between !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline {
        display: grid !important;
        grid-template-columns: auto 34px;
        column-gap: 1px !important;
        row-gap: 2px !important;
        order: 0;
        flex: 1 1 calc(100% - 90px) !important;
        min-width: 0;
        max-width: none !important;
        margin: 0 !important;
        padding: 9px 14px 10px !important;
        align-items: start !important;
        justify-content: flex-start !important;
        text-align: left !important;
        gap: 0 !important;
        justify-content: start !important;
        border-radius: 18px !important;
        background: linear-gradient(180deg, rgba(7, 16, 28, 0.82), rgba(7, 16, 28, 0.56)) !important;
        border: 1px solid rgba(114, 225, 220, 0.16) !important;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        overflow: visible;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-badge {
        display: inline-flex;
        grid-column: 2;
        grid-row: 1 / span 2;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin: 0;
        align-self: center;
        background: transparent;
        border: none;
        box-shadow: none;
        transform: translateX(-4px);
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-badge img {
        width: 36px;
        height: 36px;
        object-fit: contain;
        display: block;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-main {
        display: block;
        grid-column: 1;
        grid-row: 1;
        width: auto;
        font-size: clamp(18px, 5vw, 22px) !important;
        line-height: 1.02 !important;
        letter-spacing: 0.72px !important;
        white-space: nowrap;
        align-self: end;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-sub {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        min-width: 0;
        font-size: 11.2px !important;
        font-weight: 500 !important;
        letter-spacing: 0.06em !important;
        line-height: 1.16 !important;
        color: rgba(228, 240, 247, 0.7) !important;
        margin: 2px 0 0;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        justify-self: start;
        align-self: start;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-sub::before {
        display: none !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-phone,
    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email {
        display: inline-flex;
        grid-column: 1 / -1;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 6px;
        width: 100%;
        min-width: 0;
        color: rgba(222, 238, 247, 0.82);
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.01em;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-phone {
        grid-row: 3;
        margin-top: 5px;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email {
        grid-row: 4;
        margin-top: 2px;
        color: rgba(222, 238, 247, 0.74);
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-phone i,
    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email i {
        color: #72e1dc;
        font-size: 9px;
        flex: 0 0 auto;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-phone span,
    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email span {
        display: inline-block;
        min-width: 0;
        overflow: hidden;
        text-overflow: clip;
        white-space: nowrap;
        line-height: 1.1;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) {
        order: 1;
        flex: 0 0 auto;
        margin-left: 0 !important;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .ml-auto {
        align-items: center;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .btn {
        min-height: 42px;
        padding: 8px 10px;
        border-radius: 13px;
        font-size: 9px;
        letter-spacing: 0.06em;
    }

    .nav-bar .navbar-toggler {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }
}

@media (max-width: 575.98px) {
    .nav-bar .container-fluid {
        padding: 0 6px !important;
    }

    .nav-bar .navbar {
        gap: 4px !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline {
        flex: 0 0 auto !important;
        width: min(calc(100% - 90px), 198px) !important;
        min-width: 0 !important;
        max-width: min(calc(100% - 90px), 198px) !important;
        padding: 8px 7px 11px !important;
        border-radius: 16px !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-main,
    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-sub,
    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-phone,
    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email {
        width: 100% !important;
        max-width: 100%;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-main {
        font-size: clamp(13px, 4.4vw, 16px) !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-sub {
        font-size: 6.3px !important;
        letter-spacing: 0.03px !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-phone,
    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email {
        gap: 2px;
        font-size: 10.6px;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email {
        font-size: 9.9px;
        letter-spacing: -0.02em;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-phone i,
    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email i {
        font-size: 9.1px;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .btn {
        min-width: 30px;
        padding: 6px 3px;
        font-size: 0;
        letter-spacing: 0;
        justify-content: center;
        border-radius: 11px;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .btn span {
        display: none;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .btn::after {
        content: "PDF";
        font-size: 6.8px;
        font-weight: 700;
        letter-spacing: 0.03em;
        line-height: 1;
    }

    .nav-bar .navbar-toggler {
        width: 30px;
        height: 30px;
        margin-right: 0;
        transform: translateX(-3px);
    }
}

@media (max-width: 420px) {
    .nav-bar .navbar {
        gap: 4px !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline {
        flex: 0 0 auto !important;
        width: min(calc(100% - 82px), 192px) !important;
        min-width: 0 !important;
        max-width: min(calc(100% - 82px), 192px) !important;
        padding: 8px 5px 10px !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-main {
        font-size: 13px !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-sub {
        display: none !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-phone {
        margin-top: 4px;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-phone,
    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email {
        gap: 2px;
        font-size: 9.9px;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email {
        font-size: 9.2px;
        letter-spacing: -0.02em;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-phone i,
    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email i {
        font-size: 8.5px;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .btn {
        min-width: 26px;
        padding: 5px 2px;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .btn::after {
        font-size: 6.4px;
    }

    .nav-bar .navbar-toggler {
        width: 28px;
        height: 28px;
        margin-right: 0;
        transform: translateX(-4px);
    }
}

@keyframes mobileMenuFloatIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 991.98px) {
    .nav-bar .navbar-toggler[aria-expanded="true"] {
        background:
            radial-gradient(circle at 50% 35%, rgba(114, 225, 220, 0.22), transparent 62%),
            linear-gradient(180deg, rgba(8, 20, 34, 0.92), rgba(8, 20, 34, 0.72)) !important;
        border-color: rgba(114, 225, 220, 0.3) !important;
        box-shadow:
            0 12px 24px rgba(0, 0, 0, 0.22),
            0 0 0 1px rgba(114, 225, 220, 0.14) inset !important;
    }

    .nav-bar .navbar-collapse.show,
    .nav-bar .navbar-collapse.collapsing {
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        margin-top: 12px !important;
        padding: 14px 14px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(114, 225, 220, 0.16) !important;
        background:
            radial-gradient(circle at top right, rgba(114, 225, 220, 0.18), transparent 34%),
            radial-gradient(circle at bottom left, rgba(58, 175, 216, 0.12), transparent 42%),
            linear-gradient(180deg, rgba(6, 15, 27, 0.98), rgba(8, 22, 36, 0.94)) !important;
        box-shadow:
            0 18px 40px rgba(0, 0, 0, 0.28),
            0 1px 0 rgba(255, 255, 255, 0.04) inset !important;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        overflow-y: auto !important;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: rgba(114, 225, 220, 0.68) rgba(255, 255, 255, 0.06);
        animation: mobileMenuFloatIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nav-bar .navbar-collapse.show::before,
    .nav-bar .navbar-collapse.collapsing::before {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        margin-bottom: 12px;
        background: linear-gradient(90deg, rgba(114, 225, 220, 0), rgba(114, 225, 220, 0.55), rgba(114, 225, 220, 0));
    }

    .nav-bar .navbar-collapse.show::-webkit-scrollbar,
    .nav-bar .navbar-collapse.collapsing::-webkit-scrollbar {
        width: 8px;
    }

    .nav-bar .navbar-collapse.show::-webkit-scrollbar-track,
    .nav-bar .navbar-collapse.collapsing::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 999px;
    }

    .nav-bar .navbar-collapse.show::-webkit-scrollbar-thumb,
    .nav-bar .navbar-collapse.collapsing::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, rgba(114, 225, 220, 0.92), rgba(58, 175, 216, 0.8));
        border-radius: 999px;
    }

    .nav-bar .navbar-collapse.show .navbar-nav,
    .nav-bar .navbar-collapse.collapsing .navbar-nav {
        gap: 8px !important;
    }

    .nav-bar .navbar-collapse.show .nav-link,
    .nav-bar .navbar-collapse.collapsing .nav-link {
        width: 100% !important;
        padding: 12px 14px !important;
        border-radius: 14px !important;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
        border: 1px solid rgba(255, 255, 255, 0.04);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
        color: #eefcff !important;
        transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
    }

    .nav-bar .navbar-collapse.show .nav-link:hover,
    .nav-bar .navbar-collapse.show .nav-link:focus,
    .nav-bar .navbar-collapse.collapsing .nav-link:hover,
    .nav-bar .navbar-collapse.collapsing .nav-link:focus {
        background: linear-gradient(135deg, rgba(114, 225, 220, 0.16), rgba(32, 89, 126, 0.4));
        border-color: rgba(114, 225, 220, 0.18);
        transform: translateX(3px);
    }

    .nav-bar .navbar-collapse.show .nav-link.active,
    .nav-bar .navbar-collapse.collapsing .nav-link.active {
        background: linear-gradient(135deg, rgba(114, 225, 220, 0.2), rgba(12, 35, 52, 0.72));
        border-color: rgba(114, 225, 220, 0.22);
    }

    .nav-bar .navbar-collapse.show .lang-dropdown,
    .nav-bar .navbar-collapse.collapsing .lang-dropdown,
    .nav-bar .navbar-collapse.show .ml-auto,
    .nav-bar .navbar-collapse.collapsing .ml-auto {
        width: 100%;
    }

    .nav-bar .navbar-collapse.show .lang-current,
    .nav-bar .navbar-collapse.collapsing .lang-current {
        width: 100%;
        justify-content: center;
        min-height: 44px;
        border-radius: 14px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(114, 225, 220, 0.12);
        color: #eefcff;
    }

    .nav-bar .navbar-collapse.show .lang-menu,
    .nav-bar .navbar-collapse.collapsing .lang-menu {
        border: 1px solid rgba(114, 225, 220, 0.12);
        background: linear-gradient(180deg, rgba(7, 18, 31, 0.98), rgba(8, 22, 36, 0.95));
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    }

    .nav-bar .navbar-collapse.show .lang-menu li:hover,
    .nav-bar .navbar-collapse.collapsing .lang-menu li:hover {
        background: rgba(114, 225, 220, 0.12);
    }

    .nav-bar .navbar-collapse.show .ml-auto,
    .nav-bar .navbar-collapse.collapsing .ml-auto {
        margin-top: 10px !important;
    }

    .nav-bar .navbar-collapse.show .btn,
    .nav-bar .navbar-collapse.collapsing .btn {
        width: 100% !important;
        min-height: 46px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(52, 191, 209, 0.94), rgba(23, 113, 166, 0.96));
        border: 1px solid rgba(133, 236, 231, 0.2);
        box-shadow: 0 12px 26px rgba(17, 93, 135, 0.28);
        color: #f4feff !important;
        font-size: 11px !important;
        letter-spacing: 0.08em !important;
    }
}

@media (max-width: 767.98px) {
    .home-page .carousel .carousel-caption,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center {
        padding: 112px 18px 84px !important;
        transform: translateY(-4px) !important;
    }

    .home-page #carousel .carousel-inner .carousel-item .carousel-caption p,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center p,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center p {
        max-width: min(100%, 320px) !important;
        padding: 9px 14px !important;
        border-radius: 999px !important;
        background: rgba(8, 18, 30, 0.58) !important;
        font-size: 10.5px !important;
        letter-spacing: 0.16em !important;
        line-height: 1.45 !important;
    }

    .home-page #carousel .carousel-inner .carousel-item .carousel-caption h1,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center h1,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center h1 {
        width: min(100%, 17ch) !important;
        max-width: 17ch !important;
        font-size: clamp(23px, 7vw, 31px) !important;
        line-height: 1.16 !important;
    }

    .home-page #carousel .carousel-inner .carousel-item .carousel-caption .btn,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center .btn,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center .btn {
        min-width: 182px;
        min-height: 48px;
        padding: 13px 20px !important;
        border-radius: 999px !important;
    }

    .home-page #carousel .carousel-control-prev,
    .home-page #carousel .carousel-control-next {
        width: 44px !important;
        height: 44px !important;
        bottom: 32px !important;
    }

    .home-page .feature .container-fluid,
    .home-page .fact .container-fluid,
    .home-page .service .container,
    .home-page .about .container,
    .home-page .home-signal-band .container,
    .home-page .footer .container,
    .site-page .service .container,
    .site-page .about .container,
    .site-page .contact .container,
    .site-page .footer .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .home-page .feature .feature-item {
        padding: 22px 18px !important;
        gap: 16px !important;
        border-radius: 24px !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .home-page .feature-mark {
        width: auto !important;
        min-width: 0 !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .home-page .feature .feature-text h3 {
        font-size: 19px !important;
        line-height: 1.28 !important;
    }

    .home-page .feature .feature-text p {
        font-size: 14.5px !important;
        line-height: 1.68 !important;
    }

    .home-page .signal-band-panel {
        padding: 18px 16px !important;
        border-radius: 24px !important;
        gap: 18px !important;
    }

    .home-page .signal-band-copy h2 {
        font-size: clamp(24px, 7.4vw, 34px) !important;
        line-height: 1.18 !important;
    }

    .home-page .signal-band-note {
        padding: 12px 14px !important;
        font-size: 14px !important;
        line-height: 1.68 !important;
    }

    .home-page .signal-band-card {
        min-height: 104px;
        border-radius: 18px !important;
    }

    .home-page .about {
        padding: 52px 0 !important;
    }

    .home-page .about .row {
        row-gap: 18px;
    }

    .home-page .about .about-brand-wrap,
    .home-page .about .about-text {
        border-radius: 24px !important;
    }

    .home-page .about .about-text {
        height: auto !important;
        justify-content: flex-start !important;
        padding: 22px 16px 18px !important;
    }

    .home-page .about-copy-shell {
        gap: 10px !important;
        margin-bottom: 10px !important;
    }

    .home-page .about-story-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        align-items: start !important;
    }

    .home-page .about-story-card {
        min-height: 0 !important;
        padding: 14px 14px 15px !important;
        border-radius: 18px !important;
    }

    .home-page .about-story-card p {
        font-size: 14px !important;
        line-height: 1.64 !important;
    }

    .home-page .service .service-item,
    .site-page .service .service-item {
        border-radius: 24px !important;
        overflow: hidden;
    }

    .home-page .service .service-text,
    .site-page .service .service-text {
        padding: 16px 16px 18px;
    }

    .home-page .service .service-text h3,
    .site-page .service .service-text h3 {
        font-size: 18px;
        line-height: 1.34;
    }

    .site-page .page-header {
        padding: 116px 0 50px !important;
    }

    .site-page .page-header h2 {
        font-size: clamp(28px, 8vw, 34px) !important;
        line-height: 1.14 !important;
    }

    .site-page .section-header {
        margin-bottom: 26px !important;
    }

    .page-contact .contact-shell {
        gap: 14px;
    }

    .page-contact .contact .contact-info,
    .page-contact .contact .contact-form {
        border-radius: 24px !important;
        padding: 22px 18px !important;
    }

    .home-page .footer .footer-contact,
    .home-page .footer .footer-link,
    .home-page .footer .newsletter,
    .site-page .footer .footer-contact,
    .site-page .footer .footer-link,
    .site-page .footer .newsletter {
        padding: 22px 18px !important;
        border-radius: 22px !important;
    }

    .home-page .footer .newsletter .form,
    .site-page .footer .newsletter .form {
        gap: 10px;
    }
}

@media (max-width: 575.98px) {
    .home-page .carousel .carousel-caption,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center {
        padding: 108px 16px 78px !important;
    }

    .home-page #carousel .carousel-inner .carousel-item .carousel-caption h1,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-center h1,
    .home-page #carousel .carousel-inner .carousel-item .carousel-caption.caption-force-center h1 {
        width: min(100%, 16ch) !important;
        max-width: 16ch !important;
        font-size: clamp(22px, 7.2vw, 29px) !important;
    }

    .home-page .signal-band-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .home-page .signal-band-card strong {
        font-size: 24px !important;
    }

    .home-page .about .about-text {
        padding: 20px 14px 16px !important;
    }

    .home-page .about-copy-shell {
        margin-bottom: 8px !important;
    }

    .home-page .about-story-card {
        padding: 13px 13px 14px !important;
    }

    .home-page .about-story-card p {
        font-size: 13.4px !important;
        line-height: 1.58 !important;
    }

    .home-page .about .about-brand-logo {
        width: min(72%, 220px) !important;
        max-height: 220px !important;
    }

    .home-page .feature .feature-item {
        padding: 20px 16px !important;
    }

    .home-page .footer .footer-contact,
    .home-page .footer .footer-link,
    .home-page .footer .newsletter,
    .site-page .footer .footer-contact,
    .site-page .footer .footer-link,
    .site-page .footer .newsletter {
        padding: 20px 16px !important;
    }
}

/* Final homepage feature polish */
.home-page .feature .feature-item {
    position: relative;
    padding: 32px 30px 38px 28px;
    gap: 24px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(114, 225, 220, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(13, 25, 40, 0.97), rgba(8, 16, 27, 0.98));
    border: 1px solid rgba(114, 225, 220, 0.14);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}

.home-page .feature .feature-item:hover {
    transform: translateY(-6px);
    border-color: rgba(114, 225, 220, 0.24);
    box-shadow:
        0 28px 54px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(114, 225, 220, 0.08) inset;
}

.home-page .feature .feature-item > * {
    position: relative;
    z-index: 1;
}

.home-page .feature .feature-item::before {
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 3px;
    opacity: 0.95;
}

.home-page .feature .feature-item::after {
    left: 28px;
    right: 28px;
    bottom: 8px;
    height: 9px;
    opacity: 0.72;
}

.home-page .feature-mark {
    min-width: 92px;
    align-items: flex-start;
    gap: 10px;
}

.home-page .feature-mark-icon {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(128, 236, 229, 0.18), rgba(44, 151, 255, 0.08)),
        rgba(9, 18, 29, 0.72);
    border: 1px solid rgba(114, 225, 220, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 18px 32px rgba(0, 0, 0, 0.18);
}

.home-page .feature-mark-icon i {
    font-size: 29px;
}

.home-page .feature-mark-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(114, 225, 220, 0.08);
    border: 1px solid rgba(114, 225, 220, 0.18);
    color: #98f0ef;
    font-size: 11px;
    letter-spacing: 0.18em;
}

.home-page .feature .feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-page .feature .feature-text h3 {
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.14;
}

.home-page .feature .feature-text h3::after {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(114, 225, 220, 0.95), rgba(114, 225, 220, 0));
}

.home-page .feature .feature-text p {
    max-width: 31ch;
    font-size: 15.5px;
    line-height: 1.78;
    color: rgba(232, 241, 248, 0.88);
}

@media (max-width: 991.98px) {
    .home-page .feature .feature-item {
        padding: 26px 22px 30px !important;
        gap: 18px !important;
        border-radius: 26px !important;
    }

    .home-page .feature-mark {
        min-width: 82px;
    }

    .home-page .feature-mark-icon {
        width: 66px;
        height: 66px;
        border-radius: 20px;
    }

    .home-page .feature-mark-code {
        min-height: 30px;
        font-size: 10.5px;
    }

    .home-page .feature .feature-text h3 {
        font-size: 22px !important;
    }

    .home-page .feature .feature-text p {
        max-width: none;
        font-size: 14.8px !important;
        line-height: 1.7 !important;
    }
}

@media (max-width: 767.98px) {
    .home-page .feature .feature-item {
        padding: 20px 16px 24px !important;
        gap: 14px !important;
        border-radius: 24px !important;
    }

    .home-page .feature-mark {
        width: 100% !important;
        min-width: 0 !important;
        flex-direction: row;
        justify-content: space-between;
        align-items: center !important;
        gap: 12px !important;
    }

    .home-page .feature-mark-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        flex: 0 0 auto;
    }

    .home-page .feature-mark-icon i {
        font-size: 23px;
    }

    .home-page .feature-mark-code {
        min-height: 28px;
        padding: 0 10px;
        font-size: 10px;
        letter-spacing: 0.14em;
    }

    .home-page .feature .feature-text h3 {
        margin-bottom: 10px;
        font-size: 20px !important;
        line-height: 1.2 !important;
    }

    .home-page .feature .feature-text h3::after {
        width: 36px;
        margin-top: 10px;
    }

    .home-page .feature .feature-text p {
        font-size: 14px !important;
        line-height: 1.66 !important;
    }
}

@media (max-width: 575.98px) {
    .home-page .feature .feature-item {
        padding: 18px 14px 22px !important;
    }

    .home-page .feature-mark-icon {
        width: 52px;
        height: 52px;
    }

    .home-page .feature-mark-code {
        font-size: 9.5px;
    }

    .home-page .feature .feature-text h3 {
        font-size: 18px !important;
    }

    .home-page .feature .feature-text p {
        font-size: 13.6px !important;
    }
}

/* Final iPhone-width mobile header fix */
@media (max-width: 430px) {
    html,
    body,
    .wrapper {
        max-width: 100%;
        overflow-x: hidden;
    }

    :root {
        --mobile-nav-pad: clamp(8px, 2.4vw, 10px);
        --mobile-nav-gap: clamp(4px, 1.2vw, 6px);
        --mobile-action-size: clamp(32px, 9vw, 36px);
    }

    .nav-bar,
    .nav-bar.nav-sticky {
        left: 0 !important;
        width: 100% !important;
        padding: 6px 0 !important;
    }

    .nav-bar .container-fluid {
        padding: 0 var(--mobile-nav-pad) !important;
    }

    .nav-bar .navbar {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) var(--mobile-action-size) var(--mobile-action-size);
        align-items: start !important;
        justify-content: initial !important;
        column-gap: var(--mobile-nav-gap) !important;
        row-gap: 0 !important;
        width: 100%;
        min-width: 0 !important;
        position: relative;
        overflow: visible !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline {
        display: grid !important;
        grid-template-columns: auto clamp(26px, 7.4vw, 30px);
        column-gap: 0 !important;
        row-gap: 2px !important;
        grid-column: 1;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        flex: 0 1 auto !important;
        padding: 9px clamp(8px, 2.2vw, 10px) 11px !important;
        border-radius: 16px !important;
        align-self: stretch;
        overflow: hidden;
        justify-self: stretch;
        justify-content: start !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-badge {
        width: clamp(30px, 9vw, 36px);
        height: clamp(30px, 9vw, 36px);
        margin: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        transform: translateX(-4px);
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-badge img {
        width: clamp(28px, 8.2vw, 34px);
        height: clamp(28px, 8.2vw, 34px);
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-main {
        width: auto !important;
        font-size: clamp(13px, 3.9vw, 15px) !important;
        line-height: 1.02 !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-sub {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 2px 0 0 !important;
        font-size: clamp(8.4px, 2.55vw, 9.6px) !important;
        font-weight: 500 !important;
        letter-spacing: 0.06em !important;
        line-height: 1.16 !important;
        color: rgba(228, 240, 247, 0.68) !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: start;
        align-self: start;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-sub::before {
        display: none !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-phone,
    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email {
        gap: 4px !important;
        font-size: clamp(8.9px, 2.58vw, 9.9px) !important;
        line-height: 1.12 !important;
        min-width: 0 !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email {
        font-size: clamp(8.2px, 2.42vw, 9.2px) !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-phone i,
    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email i {
        font-size: clamp(8px, 2.2vw, 8.8px) !important;
    }

    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-phone span,
    .nav-bar .navbar > .navbar-brand.d-mobile.d-mobile-inline .mobile-logo-email span {
        max-width: 100%;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) {
        display: flex !important;
        position: static !important;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: start;
        order: initial !important;
        width: auto !important;
        min-width: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .navbar-nav {
        display: none !important;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .ml-auto {
        display: flex !important;
        width: auto !important;
        min-width: 0 !important;
        margin: 0 !important;
        align-items: center !important;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .btn {
        display: inline-flex !important;
        min-width: var(--mobile-action-size) !important;
        width: var(--mobile-action-size) !important;
        height: var(--mobile-action-size) !important;
        padding: 0 clamp(4px, 1.4vw, 6px) !important;
        font-size: 0 !important;
        letter-spacing: 0 !important;
        border-radius: clamp(9px, 2.5vw, 10px) !important;
        overflow: hidden;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .btn span {
        display: none !important;
    }

    .nav-bar .navbar-collapse:not(.show):not(.collapsing) .btn::after {
        content: "PDF";
        font-size: clamp(6.4px, 1.85vw, 7.2px);
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 1;
    }

    .nav-bar .navbar-toggler {
        display: inline-flex !important;
        grid-column: 3;
        grid-row: 1;
        width: var(--mobile-action-size) !important;
        height: var(--mobile-action-size) !important;
        padding: 0 !important;
        margin: 0 !important;
        transform: none !important;
        align-items: center;
        justify-content: center;
        justify-self: end;
        align-self: start;
    }

    .nav-bar .navbar-toggler-icon {
        width: clamp(14px, 4vw, 16px) !important;
        height: clamp(14px, 4vw, 16px) !important;
        background-size: 100% 100% !important;
    }

    .nav-bar .navbar-collapse.show,
    .nav-bar .navbar-collapse.collapsing {
        display: flex !important;
        position: static !important;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: start;
        width: auto !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        overflow: visible !important;
        animation: none !important;
    }

    .nav-bar .navbar-collapse.show::before,
    .nav-bar .navbar-collapse.collapsing::before {
        display: none !important;
    }

    .nav-bar .navbar-collapse.show .navbar-nav,
    .nav-bar .navbar-collapse.collapsing .navbar-nav {
        position: absolute !important;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        width: 100%;
        padding: 14px 12px 16px !important;
        border-radius: 20px !important;
        background:
            radial-gradient(circle at top right, rgba(114, 225, 220, 0.18), transparent 34%),
            radial-gradient(circle at bottom left, rgba(58, 175, 216, 0.12), transparent 42%),
            linear-gradient(180deg, rgba(6, 15, 27, 0.98), rgba(8, 22, 36, 0.94)) !important;
        border: 1px solid rgba(114, 225, 220, 0.16) !important;
        box-shadow:
            0 18px 40px rgba(0, 0, 0, 0.28),
            0 1px 0 rgba(255, 255, 255, 0.04) inset !important;
        display: flex !important;
        flex-direction: column;
        gap: 8px !important;
        z-index: 40;
    }

    .nav-bar .navbar-collapse.show .ml-auto,
    .nav-bar .navbar-collapse.collapsing .ml-auto {
        display: flex !important;
        width: auto !important;
        min-width: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        align-items: center !important;
        position: static !important;
    }

    .nav-bar .navbar-collapse.show .btn,
    .nav-bar .navbar-collapse.collapsing .btn {
        width: var(--mobile-action-size) !important;
        min-width: var(--mobile-action-size) !important;
        height: var(--mobile-action-size) !important;
        min-height: var(--mobile-action-size) !important;
        padding: 0 clamp(4px, 1.4vw, 6px) !important;
        border-radius: clamp(9px, 2.5vw, 10px) !important;
        font-size: 0 !important;
        letter-spacing: 0 !important;
        justify-content: center !important;
        box-shadow: inherit !important;
    }

    .nav-bar .navbar-collapse.show .btn span,
    .nav-bar .navbar-collapse.collapsing .btn span {
        display: none !important;
    }

    .nav-bar .navbar-collapse.show .btn::after,
    .nav-bar .navbar-collapse.collapsing .btn::after {
        content: "PDF";
        font-size: clamp(6.4px, 1.85vw, 7.2px);
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 1;
    }
}
