@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

/* ============================================================
   RESET & BASE
   NOTE: We deliberately do NOT apply font-family in the
   universal selector — that would break Font Awesome icons
   which rely on their own font-family on ::before/::after.
============================================================ */
*, *::before, *::after {
    margin: 0; padding: 0; border: 0;
    box-sizing: border-box;
    vertical-align: baseline;
}

html, body { overflow-x: hidden; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }

ol, ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }

img { max-width: 100%; height: auto; display: block; }

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1;
    overflow-x: hidden;
    background-color: var(--black-bg);
    height: 100%;
    position: relative;
}

/* Subtle grid overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,229,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,0.025) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
    --main-color:  #0a1f1f;
    --black-bg:    #060e0e;
    --white-color: #ffffff;
    --black-color: #000000;
    --blue-color:  #00E5FF;
    --pink-color:  #AAFF00;
    --txt-color:   rgba(255,255,255,0.6);
    --gray-bg:     #0d1f1f;
    --gradient:    linear-gradient(135deg, #00E5FF, #AAFF00);
    --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   SCROLLBAR
============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #060e0e; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(#00E5FF, #AAFF00);
    border-radius: 10px;
}

::selection { color: var(--black-bg); background: var(--blue-color); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6,
input, textarea, select, button, a, p, li, span, label {
    font-family: 'Quicksand', sans-serif;
}

h1 {
    font-size: clamp(48px, 8vw, 110px);
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.1;
}
h2 {
    font-size: clamp(36px, 5vw, 60px);
    color: var(--white-color);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.15;
}
h3 {
    font-size: clamp(28px, 4vw, 50px);
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.2;
}
h4 {
    font-size: clamp(20px, 2.5vw, 35px);
    line-height: 1.3;
    color: var(--white-color);
    font-weight: 400;
}
h5 {
    font-size: clamp(18px, 2vw, 30px);
    color: var(--white-color);
}
h6 {
    font-size: clamp(16px, 1.8vw, 25px);
    color: var(--white-color);
}

p {
    margin-top: 24px;
    color: var(--txt-color);
    font-size: clamp(15px, 1.4vw, 19px);
    font-weight: 400;
    line-height: 1.75;
    transition: all 0.3s ease;
}
p span { font-weight: 600; }

a {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    transition: var(--transition);
    text-decoration: none !important;
}

/* ============================================================
   SPACING UTILITIES
============================================================ */
.p-180 { padding: 180px 0; }
.p-140 { padding: 140px 0; }
.p-100 { padding: 100px 0; }
.p-80  { padding: 80px 0; }
.p-70  { padding: 70px 0; }
.p-60  { padding: 60px 0; }
.p-50  { padding: 50px 0; }

.container-fluid { padding: 0 100px; }

/* ============================================================
   PRELOADER
============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black-bg);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.preloader-logo {
    display: flex;
    gap: 0;
    overflow: hidden;
}

.preloader-logo span {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    letter-spacing: -2px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transform-origin: top;
}

.preloader-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 500;
}

.preloader-bar {
    width: 220px;
    height: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}
.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
}

/* ============================================================
   CURSOR FOLLOWER
============================================================ */
.cursor-follower {
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(0,229,255,0.6);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, background 0.2s ease;
    mix-blend-mode: screen;
}

/* ============================================================
   BUTTONS
============================================================ */
.main-btn {
    position: relative;
    width: 200px;
    height: 60px;
    background: var(--gradient);
    color: var(--black-bg);
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 40px;
    margin-top: 24px;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.main-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #AAFF00, #00E5FF);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 60px;
}

.main-btn:hover::before { opacity: 1; }
.main-btn:hover { padding-left: 0; padding-right: 40px; color: var(--black-bg); }

.main-btn span {
    position: absolute;
    left: 5px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}
.main-btn:hover span { left: calc(100% - 55px); }
.main-btn span i {
    color: #ffffff;
    font-size: 13px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
}

/* Shimmer on btn */
.main-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}
.main-btn:hover::after { left: 125%; }

/* ============================================================
   FLOATING ORBS
============================================================ */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
    animation: orbFloat 14s ease-in-out infinite;
    filter: blur(80px);
}
.hero-orb-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(0,229,255,0.14), transparent 70%);
    top: -140px; right: -60px;
    animation-duration: 16s;
}
.hero-orb-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(170,255,0,0.10), transparent 70%);
    bottom: -80px; left: 8%;
    animation-delay: -6s; animation-duration: 11s;
}
.hero-orb-3 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(0,229,255,0.08), transparent 70%);
    top: 40%; left: 50%;
    animation-delay: -10s; animation-duration: 18s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%       { transform: translate(28px, -32px) scale(1.05); }
    50%       { transform: translate(-22px, 18px) scale(0.95); }
    75%       { transform: translate(16px, 12px) scale(1.03); }
}

/* ============================================================
   HEADER
============================================================ */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}

header.scrolled {
    background: rgba(6, 14, 14, 0.88);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,229,255,0.12);
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    max-width: 200px;
    padding: 8px 0;
    position: relative;
    z-index: 3;
    transition: var(--transition);
}
.brand-logo img:hover { opacity: 0.82; }

.menu-toggle {
    position: relative;
    z-index: 5;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}
.menu-toggle:hover { transform: scale(1.1); }

.hamburger path {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-width: 1.5px;
}

/* ============================================================
   FULLPAGE MENU
============================================================ */
.fullpage-menu {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    overflow-y: auto;
    overflow-x: hidden;
}

.fullpage-menu.open { display: block; }

.fullpage-menu-inner {
    display: flex;
    align-items: center;
    min-height: 100%;
    padding: 100px 60px 120px;
    position: relative;
}

.menu-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
}
.menu-bg span {
    display: block;
    height: 33.334%;
    width: 100%;
    background: var(--black-bg);
    border-left: 3px solid var(--blue-color);
}
.menu-bg span:nth-child(2) { border-left-color: var(--pink-color); }
.menu-bg span:nth-child(3) { border-left-color: var(--blue-color); }

nav { position: relative; z-index: 10; }
nav ul { list-style: none; }
nav li { overflow: hidden; transition: transform 300ms ease; }
nav li + li { margin-top: 16px; }

nav li a {
    font-size: clamp(42px, 7vw, 100px);
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    line-height: 1;
    transition: color 0.3s ease;
}
nav li a:hover { color: var(--blue-color); }
nav li:hover { transform: translateX(50px); }

.header-nav-footer {
    position: absolute;
    z-index: 10;
    bottom: 0; left: 0;
    width: 100%;
    padding: 30px 60px 40px;
}

.social-links {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.social-links li { font-size: 16px; font-weight: 600; }
.social-links li:last-child { margin-left: auto; }
.social-links a { color: rgba(255,255,255,0.65); }
.social-links a:hover { color: var(--blue-color); }

.no-scroll { overflow: hidden; }

/* ============================================================
   HERO BANNER
============================================================ */
.header-banner {
    background-color: var(--black-bg);
    padding: 240px 0 80px;
    position: relative;
    overflow: hidden;
}

#canvas {
    position: absolute;
    z-index: 0;
    left: 0; top: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

.header-banner .header-banner-container { z-index: 2; position: relative; }

.header-banner h1 {
    color: var(--white-color);
    font-size: clamp(48px, 7vw, 110px);
    line-height: 1.1;
    font-weight: 700;
}

.header-banner .header-banner-heading h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-banner p { color: rgba(255,255,255,0.75) !important; }

.hero-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================================================
   HOME ABOUT SECTION
============================================================ */
.home-about { background-color: var(--black-bg); }

.home-about .home-about-right {
    background-color: transparent;
    padding-left: 40px;
}

.home-about .home-about-right p {
    color: rgba(255,255,255,0);
    opacity: 0;
    position: relative;
}

.home-about .home-about-right .about-section-content-heading {
    opacity: 0.1;
    color: var(--white-color);
    position: relative;
}
.home-about .home-about-right .about-section-content-heading-copy {
    position: absolute;
    width: 0%;
    top: 0; left: 0;
    opacity: 1;
    color: var(--white-color);
    white-space: nowrap;
    overflow: hidden;
}

.cursor-scale img { border-radius: 20px; }
.img { object-fit: cover; object-position: center; width: 100%; height: 100%; }

/* ============================================================
   SERVICES SECTION (Homepage)
============================================================ */
.service-section { background-color: #040b0b; }

.service-section h2, .service-section h3 { color: var(--white-color); }
.service-section p { color: var(--txt-color); }

.service-section .service-img-container {
    width: 100%; height: 320px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(0,229,255,0.08);
}
.service-section .service-img-container img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-section .service-img-container:hover img { transform: scale(1.07); }

.service-section .service-img-container-1 {
    width: 100%; min-height: 280px;
    position: relative; overflow: hidden; border-radius: 20px;
    border: 1px solid rgba(0,229,255,0.08);
}
.service-section .service-img-container-1 img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 20px;
    transition: transform 0.7s ease;
}
.service-section .service-img-container-1:hover img { transform: scale(1.07); }

.service-section .service-section-dm { margin-top: 30px; }

/* ============================================================
   CAREERS SECTION (Homepage)
============================================================ */
.careers {
    background-color: var(--black-bg);
    transition: background-color 0.6s ease;
}
.careers h2, .careers h5 { color: rgba(255,255,255,0.15); }
.careers p { opacity: 0; color: var(--txt-color); }
.careers a { opacity: 0; }

/* ============================================================
   STATS / NUMBERS SECTION
============================================================ */
.stats-section {
    background: var(--black-bg);
    padding: 80px 0;
}
.stat-card {
    text-align: center;
    padding: 36px 24px;
    border: 1px solid rgba(0,229,255,0.18);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: rgba(0,229,255,0.02);
}
.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,229,255,0.06), rgba(170,255,0,0.04));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover {
    border-color: rgba(0,229,255,0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,229,255,0.1);
}

.stat-card .count-up {
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin: 0;
    margin-top: 0;
}
.stat-card p {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 12px;
}

/* ============================================================
   MARQUEE
============================================================ */
.marque-main {
    background: linear-gradient(135deg, rgba(0,229,255,0.12), rgba(170,255,0,0.08));
    border-top: 1px solid rgba(0,229,255,0.12);
    border-bottom: 1px solid rgba(0,229,255,0.12);
    overflow: hidden;
}
.marquee-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    padding: 28px 0;
    background: transparent;
}
.marquee-container .marque {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 40px;
}
.marquee-container .marque h2 {
    font-size: clamp(28px, 4vw, 50px);
    color: var(--white-color);
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 2px;
    text-shadow: 0 0 40px rgba(0,229,255,0.3);
}
.marquee-container .marque img {
    width: 55px;
    margin: 0 40px;
    filter: brightness(0) invert(1);
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    background: #040b0b;
    border-top: 1px solid rgba(0,229,255,0.08);
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gradient);
    opacity: 0.7;
}

footer .container-fluid { position: relative; z-index: 1; }

.footer-logo { max-width: 180px; }

.footer-mid { padding: 80px 0 40px; }

.footer-mid h4 {
    color: var(--white-color);
    margin: 0 0 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 12px;
}
.footer-mid h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-mid ul { margin: 0; padding-left: 0; }
.footer-mid ul li a {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    line-height: 1.5;
    display: block;
    padding: 5px 0;
    transition: var(--transition);
}
.footer-mid ul li a:hover { color: var(--blue-color); padding-left: 8px; }

.footer-mid ul.second-ul a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    line-height: 1.5;
    padding: 5px 0;
    transition: var(--transition);
    word-break: break-word;
}
.footer-mid ul.second-ul a:hover { color: var(--blue-color); }
.footer-mid ul.second-ul a i { margin-top: 2px; font-size: 14px; flex-shrink: 0; color: var(--blue-color); }

.footer-top p {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
}

/* Social icons — selectors use .footer-mid .footer-top prefix to beat
   the higher-specificity .footer-mid ul li a rule defined above */
.footer-mid .footer-top ul.d-flex { gap: 10px; margin-top: 20px; }
.footer-mid .footer-top li { position: relative; }
.footer-mid .footer-top li a {
    color: #ffffff !important;
    font-size: 18px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border: 1px solid rgba(0,229,255,0.3) !important;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
    padding: 0 !important;
    line-height: 1;
}
.footer-mid .footer-top li a i,
.footer-mid .footer-top li a .fab,
.footer-mid .footer-top li a .fas,
.footer-mid .footer-top li a .fa {
    font-size: 18px;
    line-height: 1;
    color: #ffffff !important;
    display: inline-block;
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif !important;
    font-weight: 400;
    pointer-events: none;
}
.footer-mid .footer-top li a:hover {
    background: var(--gradient) !important;
    border-color: transparent !important;
    color: var(--black-bg) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,229,255,0.25);
    padding-left: 0 !important;
}
.footer-mid .footer-top li a:hover i,
.footer-mid .footer-top li a:hover .fab { color: var(--black-bg) !important; }
.footer-mid .footer-top li a svg { display: none; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 20px 0;
    margin-top: 20px;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.25);
    text-align: center;
    margin: 0;
}

.footer-mid ul.map iframe {
    height: 200px;
    border-radius: 10px;
    filter: grayscale(0.4) contrast(1.1) brightness(0.85);
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about {
    background-color: var(--black-bg);
    padding: 240px 0 60px;
}
.about h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about p { color: var(--txt-color); }

.about .about-hero-img {
    height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(0,229,255,0.1);
}
.about .about-hero-img img {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: 20px;
    transition: transform 0.8s ease;
}
.about .about-hero-img:hover img { transform: scale(1.04); }

.about-second-section { background-color: #040b0b; }
.about-second-section .about-second-section-container { background-color: transparent; }
.about-second-section h3 { color: var(--white-color); }
.about-second-section p { color: var(--txt-color); }
.about-second-section .about-second-section-content-top {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.custom-padding { padding-top: 50px; padding-bottom: 50px; }

.about-second-section .about-second-section-imgs {
    background-color: transparent;
    gap: 20px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.about-second-section .about-second-section-imgs img {
    height: 420px;
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.8s ease;
}
.about-second-section .about-second-section-imgs:hover img { transform: scale(1.04); }

.about-second-section .about-second-section-img-3 img,
.about-second-section .about-second-section-img-4 img {
    width: 100%; height: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-third-section { background-color: var(--black-bg); }
.about-third-section img {
    width: 100%; border-radius: 20px;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.about-third-section img:hover { transform: scale(1.02); }
.about-third-section h5,
.about-third-section h2,
.about-third-section p { color: var(--white-color); }
.about-third-section h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-third-section p { margin-top: 10px; margin-bottom: 24px; }

/* ============================================================
   SERVICE PAGE
============================================================ */
.service {
    background-color: var(--black-bg);
    padding: 240px 0 60px;
}
.service h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.service h2, .service h5, .service p { color: var(--white-color); }

.service-second-section {
    background-color: #040b0b;
}
.service-second-section .service-second-section-main-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    margin: 50px 0;
}
.service-second-section .service-second-section-container {
    width: 55%;
    height: inherit;
}
.service-second-section .service-second-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: inherit;
    padding: 40px 0;
}
.service-second-section .service-second-section-img-container {
    width: 42%;
    height: auto;
}
.service-second-section .service-second-section-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    width: 100%;
    height: 100vh;
    top: 0;
}
.service-second-section .service-second-section-all-img {
    position: relative;
    width: 100%;
    height: 90%;
}
.service-second-section .service-second-section-img-wrap {
    position: absolute;
    width: 100%; height: 100%;
    overflow: hidden;
    border-radius: 20px;
}
.service-second-section .service-second-section-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.service-second-section img { border-radius: 20px; }
.service-second-section h5, .service-second-section h2, .service-second-section p { color: var(--white-color); }
.service-second-section h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.service-second-section p { margin-top: 0; margin-bottom: 8px; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact {
    background-color: var(--black-bg);
    padding: 240px 0 0;
}
.contact h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact h3, .contact p { color: var(--white-color); }

.contact .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 680px;
}

.contact .label-input-container {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    margin-bottom: 8px;
}

.contact .label-input-container .input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,229,255,0.2);
    border-radius: 0;
    color: var(--white-color);
    font-size: 16px;
    padding: 16px 0;
    height: auto;
    transition: border-color 0.3s ease;
}
.contact .label-input-container .input:focus {
    outline: none;
    border-bottom-color: var(--blue-color);
    background: transparent;
    box-shadow: none;
}

.form-control {
    border: none;
    border-bottom: 1px solid rgba(0,229,255,0.2);
}
.form-control:focus { box-shadow: none; }

::placeholder { color: rgba(255,255,255,0.35); font-size: 15px; }
::-ms-input-placeholder { color: rgba(255,255,255,0.35); }

select.input {
    appearance: none;
    cursor: pointer;
    height: 55px;
    padding: 0;
}

.contact option { background: #0d1a1a; color: #fff; }

.contact .label-input-container label {
    color: var(--blue-color);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact .label-input-container i {
    position: absolute;
    right: 0;
    bottom: 16px;
    color: rgba(0,229,255,0.4);
}

.contact .main-btn {
    width: 100%;
    max-width: 420px;
    padding-left: 40px;
    margin-top: 32px;
    font-size: 15px;
    font-weight: 700;
}
.contact .main-btn:hover { padding-left: 0; padding-right: 40px; }

.contact .contact-information {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.contact .contact-information p { margin: 8px 0; }
.contact .contact-information i { font-size: 36px; color: var(--blue-color); margin-bottom: 4px; }
.contact .contact-information a {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}
.contact .contact-information a:hover { color: var(--blue-color); }

/* Contact info card hover */
.contact-info-card {
    border: 1px solid rgba(0,229,255,0.12);
    border-radius: 16px;
    padding: 40px 20px;
    transition: var(--transition);
    background: rgba(0,229,255,0.02);
}
.contact-info-card:hover {
    border-color: var(--blue-color);
    background: rgba(0,229,255,0.05);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,229,255,0.1);
}

/* ============================================================
   CAREERS / APPLY NOW PAGE
============================================================ */
.apply-now {
    background-color: var(--black-bg);
    padding: 240px 0 60px;
}
.apply-now h2, .apply-now h5, .apply-now p { color: var(--white-color); }

.careers-page {
    background-color: var(--black-bg);
    padding: 240px 0 60px;
}
.careers-page h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.careers-page p { color: var(--txt-color); }

/* File upload styling */
.file::-webkit-file-upload-button { display: none; }
.file::before {
    content: '\f093  Upload Resume / CV';
    font-family: 'Font Awesome 5 Free', sans-serif;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,229,255,0.3);
    display: inline-block;
    border-radius: 4px;
    padding: 6px 14px;
    margin-right: 10px;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: var(--transition);
}
.file:hover::before {
    border-color: var(--blue-color);
    color: var(--blue-color);
}

/* ============================================================
   OVERLAY ON IMAGE CONTAINERS
============================================================ */
.overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
    border-radius: inherit;
    transition: background 0.4s ease;
}

/* ============================================================
   ANIMATION HELPER CLASSES
============================================================ */
.reveal-up, .reveal-left, .reveal-right { will-change: transform, opacity; }
.img-reveal { will-change: clip-path; }

/* Animated gradient text */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glowing badge */
.badge-glow {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(0,229,255,0.4);
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-color);
    background: rgba(0,229,255,0.06);
    margin-bottom: 16px;
    animation: badgePulse 3s ease-in-out infinite;
    font-weight: 600;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,229,255,0); }
    50%       { box-shadow: 0 0 0 8px rgba(0,229,255,0.08); }
}

/* Line divider */
.line-divider {
    width: 60px; height: 3px;
    background: var(--gradient);
    border-radius: 3px;
    margin: 20px 0;
    display: block;
    box-shadow: 0 0 12px rgba(0,229,255,0.4);
}

/* ============================================================
   CURSOR SCALE HELPERS
============================================================ */
.cursor-scale, .cursor-scale2, .cursor-scale3,
.cursor-scale4, .cursor-scale5, .cursor-scale6,
.cursor-scale7, .cursor-scale8, .cursor-scale9,
.cursor-scale10, .cursor-scale11 {
    position: relative;
    overflow: hidden;
}

/* ============================================================
   ACCORDION (Careers page)
============================================================ */
.accordion-flush .accordion-item {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0,229,255,0.02);
    outline: 1px solid rgba(0,229,255,0.12);
    padding: 0 28px;
    margin-bottom: 12px;
    transition: outline-color 0.3s ease;
}
.accordion-flush .accordion-item:hover { outline-color: rgba(0,229,255,0.4); }
.accordion-flush .accordion-item p,
.accordion-flush .accordion-item h4,
.accordion-flush .accordion-item h5 { color: var(--white-color); margin: 6px 0; }

.accordion-button:focus { box-shadow: none; background: transparent; color: var(--white-color); }
.accordion-flush .accordion-item .accordion-button {
    border-top: 1px solid rgba(0,229,255,0.1);
    background: transparent;
    color: var(--white-color);
    padding: 16px 0;
    font-size: 18px;
    font-weight: 600;
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300E5FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csv xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300E5FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}
.accordion-header { margin-top: 0; }
