


    .map-container {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* ensures full image fits without overflow */
  max-width: 100%;       /* prevents side overflow */
  display: block;
}

@media (max-width: 768px) {
  .map-container {
    height: 300px;       /* smaller height for mobile */
  }
}
.navbar {
  background-color: transparent; /* default desktop */
}

@media (max-width: 991px) {
  .navbar {
    background-color: #000 !important; /* solid black on mobile */
  }
}

.me-1{
    padding: 8px !important;
}

/* Custom file input text color */
.custom-file-input::file-selector-button {
    background-color: #0d0d0d; /* dark background */
    color: #00bfff;           /* bright accent text */
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}
.custom-file-input::file-selector-button:hover {
    background-color: #1a1a1a;
}



/* Loader animation inside button */
.btn-loading {
  position: relative;
  color: transparent !important; /* hide text */
}

.btn-loading::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  margin: -10px 0 0 -10px;
  border: 3px solid #fff;
  border-top: 3px solid #00bfff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mobile tweak */
@media (max-width: 768px) {
  .btn-loading::after {
    width: 16px; height: 16px;
    margin: -8px 0 0 -8px;
  }
}


/* Fullscreen Loader Overlay */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.7); /* dark blur effect */
  backdrop-filter: blur(2px); /* blur background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Loader Box */
.loader-box {
  text-align: center;
  color: #fff;
}

/* Spinner Style */
.loader-spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #ff6600;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Loader Text */
.loader-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}



/* =========================
   UNIQUE FOOTER DESIGN
========================= */

.footer {
    position: relative;
    overflow: hidden;
    background:
    linear-gradient(
        135deg,
        #111111 0%,
        #181818 50%,
        #101010 100%
    );

    z-index: 1;
}



/* MOVING INDUSTRIAL STRIP */

.footer::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 300%;
    height: 100%;

    background-image: url(../img/footer-bg.webp);
    background-repeat: repeat-x;
    background-size: auto 100%;

    opacity: 0.2;

    animation: footerMove 90s linear infinite;

    transform: skewX(-12deg);

    z-index: -2;
}

/* ANIMATION */

@keyframes footerMove {

    0% {
        transform: translateX(0) skewX(-12deg);
    }

    100% {
        transform: translateX(-33.333%) skewX(-12deg);
    }
}
/* DARK OVERLAY */

.footer::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
    radial-gradient(
        circle at top right,
        rgba(255,101,18,0.12),
        transparent 40%
    );

    z-index: -1;
}



/* LOGO */

.footer-logo {
    height: 250px;
    width: auto;
}

@media (max-width: 991px) {

    .footer-logo {
        height: 150px;
    }
}

@media (max-width: 576px) {

    .footer-logo {
        height: 100px;
    }
}

/* GLASS BOX */

.footer-glass {

    position: relative;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    border: 1px solid rgba(255,101,18,0.18);

    backdrop-filter: blur(10px);

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.35);

    transition: 0.4s ease;
}

/* LIGHT SWEEP */

.footer-glass::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );

    animation: glassSweep 8s linear infinite;
}

@keyframes glassSweep {

    100% {
        left: 160%;
    }
}

/* HOVER */

.footer-glass:hover {

    transform: translateY(-4px);

    border-color: rgba(255,101,18,0.45);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.45);
}

/* ADDRESS BOXES */

.footer-glass .border {

    border: 1px solid rgba(255,101,18,0.14) !important;

    background: rgba(255,255,255,0.02);

    border-radius: 18px;

    transition: 0.35s ease;
}

.footer-glass .border:hover {

    transform: translateY(-3px);

    border-color: rgba(255,101,18,0.45) !important;

    background: rgba(255,101,18,0.04);
}

/* TEXT */

.footer p,
.footer h6 {
    color: #ff8c52;
}

.footer a {
    color: #ffffff !important;
    text-decoration: none;
}

.footer a:hover {
    color: #ff6512 !important;
}

/* FOOTER TITLES */

.footer-mini-title{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(255,101,18,0.08);
    border: 1px solid rgba(255,101,18,0.25);
    color: #ff6512;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-main-title{
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.footer-sub-title{
    max-width: 700px;
    margin: auto;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.8;
}

/* MOBILE */

@media (max-width: 768px){

    .footer-main-title{
        font-size: 28px;
    }

    .footer-sub-title{
        font-size: 14px;
    }

    .footer-mini-title{
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}


/* =========================
   MODERN HEADER + HERO
========================= */

.hero-wrapper {
    position: relative;
}

/* =========================
   NAVBAR
========================= */



/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 40px 0;
    color: var(--bs-white);
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
    }
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}




 .logo-img {
        height: 60px; /* default for desktop */
        width: auto;
    }

    @media (max-width: 991px) { /* tablets & mobiles */
        .logo-img {
            height: 35px; /* slightly smaller but still visible */
        }
    }

    @media (max-width: 576px) { /* small mobiles */
        .logo-img {
            height: 30px; /* keep readable size */
        }
    }




.custom-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background: transparent;
    transition: 0.3s ease;
}

/* CONTAINER WIDTH */
.custom-navbar .container {
    max-width: 1180px;
}



/* NAV MENU */
.custom-navbar .navbar-nav {
    gap: 0;
    align-items: center;
    flex-wrap: nowrap;
}

/* NAV LINKS */
.custom-navbar .nav-link {
    color: #ffffff !important;
    font-size: 12.5px;
    font-weight: 500;
    padding: 6px 8px !important;
    border-radius: 8px;
    transition: 0.3s ease;
    white-space: nowrap;
    line-height: 1.2;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    background: rgba(255,255,255,0.08);
    color: #ff6612 !important;
}

/* DROPDOWN */
.custom-navbar .dropdown-toggle::after {
    margin-left: 6px;
}

.dropdown-dark {
    background: rgba(15,15,15,0.96);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    padding: 8px;
}

.dropdown-dark .dropdown-item {
    color: #ffffff;
    border-radius: 10px;
    padding: 10px 14px;
    transition: 0.3s ease;
}

.dropdown-dark .dropdown-item:hover {
    background: rgba(255,102,18,0.12);
    color: #ff6612;
}

/* RIGHT BUTTON */
.nav-right-btn {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

/* BUTTON */
.quote-btn {
    border-radius: 8px;
    padding: 7px 14px !important;
    font-weight: 600;
    white-space: nowrap;
    min-width: auto;
    text-align: center;
    font-size: 12px;
}



/* =========================
   HERO SECTION
========================= */


/* HERO SECTION */
.hero-section {
    padding: 110px 0 120px;
    position: relative;
    overflow: hidden;
}

/* orange glow */
.hero-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: rgba(255,102,18,0.12);
    filter: blur(100px);
    top: -220px;
    right: -220px;
    z-index: 0;
}

/* layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* badge */
.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 13px;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.04);
}

/* main title */
.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
}

/* text */
.hero-text {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 560px;
}

/* divider */
.hero-divider {
    width: 100%;
    height: 3px;
    background: #ff6612;
    margin: 15px 0;
    border-radius: 10px;
}

/* sub text */
.hero-subtext {
    color: #ff6612;
    font-weight: 600;
    margin-bottom: 18px;
}


/* image */
.hero-image-box {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,102,18,0.25);
}

.hero-image-box img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: 0.5s;
}

.hero-image-box:hover img {
    transform: scale(1.05);
}



.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/SubPagesBG.webp) top center no-repeat;
    background-size: cover;
}




/* =========================
   TABLET VIEW
========================= */

@media (max-width: 991px) {

    /* NAVBAR */
    .custom-navbar {
        background: rgba(0,0,0,0.94);
        padding: 10px 0;
    }


    .navbar-toggler {
        border: none;
        box-shadow: none !important;
        padding: 4px 8px;
    }

    .custom-navbar .navbar-collapse {
        background: #111111;
        margin-top: 12px;
        padding: 16px;
        border-radius: 14px;
    }

    /* REMOVE EXTRA LINE ABOVE HOME */
    .custom-navbar .navbar-nav {
        border-top: none !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        gap: 0;
    }

    .custom-navbar .nav-link {
        text-align: center;
        padding: 12px !important;
        font-size: 14px;
    }

    .nav-right-btn {
        margin-top: 14px;
        width: 100%;
        margin-left: 0;
    }

    .quote-btn {
        width: 100%;
        font-size: 14px;
        padding: 10px !important;
    }



}

/* =========================
   MOBILE VIEW
========================= */


/* responsive */
@media (max-width: 991px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: auto;
    }


    .hero-title {
        font-size: 42px;
    }

    .hero-image-box img {
        height: 320px;
    }
      .hero-right {
        display: flex;
        justify-content: center;
    }

    .hero-image-box {
        width: 100%;
        max-width: 500px;
        margin: auto;
    }
}

@media (max-width: 576px) {

    .hero-title {
        font-size: 30px;
    }

    .hero-text {
        font-size: 14px;
    }
      .hero-right {
        display: flex;
        justify-content: center;
    }

    .hero-image-box {
        width: 100%;
        max-width: 500px;
        margin: auto;
    }
}

/* =========================
   ADVANCED HERO ANIMATION
========================= */

.hero-right{
    perspective: 1800px;
}

/* MAIN BOX */

.hero-image-box{
    position: relative;
    overflow: hidden;
    border-radius: 34px;

    transform-style: preserve-3d;

    border: 1px solid rgba(255,101,18,0.16);

    background: #111;

    box-shadow:
        0 30px 60px rgba(0,0,0,0.45),
        0 0 60px rgba(255,101,18,0.08);

    animation:
        heroFloatFast 4s ease-in-out infinite,
        heroRotate 12s ease-in-out infinite;
}

/* IMAGE */

.hero-image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform:
        scale(1.08)
        rotateY(-10deg)
        rotateX(4deg);

    transition: 0.6s ease;

    animation:
        heroZoom 7s ease-in-out infinite alternate;
}

/* hover */

.hero-image-box:hover img{

    transform:
        scale(1.14)
        rotateY(0deg)
        rotateX(0deg);

}

/* ORANGE GLOW */

.hero-image-box::before{
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,101,18,0.25),
            transparent 40%
        );

    z-index: 2;
}

/* FAST SHINE */

.hero-image-box::after{
    content: "";

    position: absolute;

    top: -20%;
    left: -140%;

    width: 45%;
    height: 140%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.28),
            transparent
        );

    transform: rotate(12deg);

    animation: heroShineFast 2.8s linear infinite;

    z-index: 3;
}

/* =========================
   ANIMATIONS
========================= */

/* floating */

@keyframes heroFloatFast{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-18px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* slight rotation */

@keyframes heroRotate{

    0%{
        rotate: -1deg;
    }

    50%{
        rotate: 1deg;
    }

    100%{
        rotate: -1deg;
    }
}

/* zoom movement */

@keyframes heroZoom{

    0%{
        transform:
            scale(1.05)
            rotateY(-8deg)
            translateX(0px);
    }

    100%{
        transform:
            scale(1.13)
            rotateY(-2deg)
            translateX(-10px);
    }
}

/* shine */

@keyframes heroShineFast{

    0%{
        left: -140%;
    }

    100%{
        left: 160%;
    }
}

/* MOBILE */

@media(max-width:991px){

    .hero-image-box{
        margin-top: 40px;
    }

    .hero-image-box img{
        animation: none;
        transform: scale(1.05);
    }
}




/* =========================
   UNIVERSAL SUBPAGE HEADER
========================= */

.modern-page-header {
    position: relative;

    height: 42vh;
    min-height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
    linear-gradient(
        rgba(0,0,0,0.78),
        rgba(0,0,0,0.78)
    ),
    url(../img/SubPagesBG.webp);

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* OVERLAY */
.page-header-overlay {
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.45)
    );
}

/* CONTENT */
.page-header-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding-top: 30px;
}

/* TITLE */
.page-main-title {
    color: #ffffff;

    font-size: 52px;
    font-weight: 700;

    line-height: 1.1;

    margin-bottom: 16px;
}

/* DIVIDER */
.page-divider {
    width: 80px;
    height: 4px;

    background: #ff6612;

    border-radius: 10px;

    margin-bottom: 22px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .modern-page-header {
        height: 34vh;
        min-height: 260px;
    }

    .page-main-title {
        font-size: 38px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .modern-page-header {
        height: 30vh;
        min-height: 220px;
    }

    .page-header-content {
        padding-top: 40px;
    }

    .page-main-title {
        font-size: 28px;
    }

    

}

/* =========================
  SPINNER
========================= */

#spinner {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: rgba(0,0,0,0.65);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

/* SHOW STATE */
#spinner.show {
    opacity: 1;
    visibility: visible;
}

/* CENTER BOX */
.loader-wrapper {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* LOGO */
.loader-logo {
    width: 180px;
    max-width: 70vw;

    margin-bottom: 35px;

    animation:
    loaderFloat 2.5s ease-in-out infinite;
}

/* RING */
.loader-ring {
    width: 68px;
    height: 68px;

    border-radius: 50%;

    border: 3px solid rgba(255,255,255,0.12);
    border-top: 3px solid #ff6612;

    animation:
    loaderSpin 0.9s linear infinite;

    margin-bottom: 22px;
}

/* TEXT */
.loader-text {
    color: rgba(255,255,255,0.78);

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin: 0;
}

/* SPIN */
@keyframes loaderSpin {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}

/* FLOAT */
@keyframes loaderFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .loader-logo {
        width: 150px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .loader-logo {
        width: 120px;
        margin-bottom: 28px;
    }

    .loader-ring {
        width: 54px;
        height: 54px;
    }

    .loader-text {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

}




/* =========================
ABOUT SECTION BASE
========================= */

.about-section {
    background: var(--bs-secondary);
    padding: 80px 0;
}


/* =========================
DESCRIPTION
========================= */

.about-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* =========================
FEATURE GRID STYLE
(COMPACT VERSION)
========================= */

.about-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

/* feature block */
.about-feature-item {
    position: relative;

    padding: 20px 16px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.015)
    );

    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;

    text-align: center;

    overflow: hidden;
    transition: 0.35s ease;
}

/* orange glow line */
.about-feature-item::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 50px;
    height: 2px;

    background: var(--bs-primary);

    border-radius: 20px;
}

/* hover */
.about-feature-item:hover {
    transform: translateY(-5px);

    border-color: rgba(255,102,18,0.25);

    box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    0 0 18px rgba(255,102,18,0.08);
}

/* icon */
.about-feature-item i {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 14px;

    border-radius: 14px;

    background:
    linear-gradient(
        145deg,
        rgba(255,102,18,0.20),
        rgba(255,102,18,0.06)
    );

    color: var(--bs-primary);

    font-size: 18px;

    transition: 0.3s ease;
}

.about-feature-item:hover i {
    transform: scale(1.05);
}

/* text */
.about-feature-item span {
    display: block;

    color: rgba(255,255,255,0.88);

    font-size: 13.5px;
    line-height: 1.6;
}

/* mobile */
@media (max-width: 576px) {

    .about-feature-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-feature-item {
        padding: 18px 14px;
    }

    .about-feature-item i {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .about-feature-item span {
        font-size: 13px;
    }
}

/* =========================
BUTTONS
========================= */

.about-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* =========================
IMAGE WRAPPER
========================= */

.about-image-wrapper {
    position: relative;
}

/* image container */
.about-image-inner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

/* sharp image fix */
.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: none;
}

/* =========================
SOFT ORANGE GLASS OVERLAY
========================= */

.about-image-gradient {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(255, 102, 0, 0.15),
        rgba(0, 0, 0, 0.25)
    );

    pointer-events: none;
}

/* =========================
OVERLAY BOXES
========================= */

.about-image-overlay {
    position: absolute;

    width: 160px;
    padding: 14px 16px;

    text-align: center;

    background: rgba(255, 102, 0, 0.12);
    border: 1px solid rgba(255, 102, 0, 0.4);

    backdrop-filter: blur(6px);

    border-radius: 14px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* TOP BOX */
.overlay-top {
    top: 20px;
    left: 20px;
}

/* BOTTOM BOX */
.overlay-bottom {
    bottom: 20px;
    right: 20px;
}

/* overlay text */
.about-image-overlay h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--bs-primary); /* YOUR ORANGE */
}

.about-image-overlay p {
    margin: 5px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

/* =========================
MOBILE RESPONSIVE FIX
========================= */

@media (max-width: 768px) {

    .about-section {
        padding: 50px 0;
    }

    .about-feature-item {
        text-align: center;
        justify-content: center;
        flex-direction: column;
    }

    .about-btn-group {
        flex-direction: column;
        align-items: center;
    }

    .about-image-overlay {
        width: 140px;
        padding: 10px;
    }

    .overlay-top {
        top: 10px;
        left: 10px;
    }

    .overlay-bottom {
        bottom: 10px;
        right: 10px;
    }
}


/*** TITLE - NEW COMMON DESIGN ***/
.title{
    position: relative;
    margin-bottom: 45px;
    display: flex;
    align-items: center;
    overflow: visible;
}

/* LEFT / CENTER / RIGHT */
.title .title-left,
.title .title-center,
.title .title-right{
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    overflow: visible;
    z-index: 2;
}

.title .title-center{
    text-align: center;
    margin: 0 auto;
}

.title .title-right{
    text-align: right;
    margin-left: auto;
}

/* SMALL TITLE */
.title .title-left h5,
.title .title-center h5,
.title .title-right h5{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff6b1a;
    margin-bottom: 18px;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,107,26,0.35);
    background: rgba(255,107,26,0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* REMOVE OLD LINES */
.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before{
    display: none;
}

/* SHINE EFFECT */
.title .title-left h5::before,
.title .title-center h5::before,
.title .title-right h5::before{
    content: "";
    position: absolute;
    left: -60%;
    top: 0;
    width: 40%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-25deg);
    animation: titleShine 4s infinite;
    display: block;
}

@keyframes titleShine{
    100%{
        left: 140%;
    }
}

/* MAIN TITLE */
.title .title-left h1,
.title .title-center h1,
.title .title-right h1{
    position: relative;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    padding-left: 22px;
    letter-spacing: -1px;
    text-transform: none;
    border-bottom: none;
}

/* ORANGE LEFT BAR */
.title .title-left h1::before,
.title .title-center h1::before,
.title .title-right h1::before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 82%;
    border-radius: 30px;
    background: linear-gradient(to bottom, #ff6b1a, #ff914d);
    box-shadow: 0 0 15px rgba(255,107,26,0.45);
}

/* BOTTOM LINE */
.title .title-left h1::after,
.title .title-center h1::after,
.title .title-right h1::after{
    content: "";
    position: absolute;
    left: 22px;
    bottom: -12px;
    width: 90px;
    height: 2px;
    background: linear-gradient(to right, #ff6b1a, transparent);
}

/* CENTER FIX */
.title .title-center h1{
    padding-left: 0;
}

.title .title-center h1::before{
    display: none;
}

.title .title-center h1::after{
    left: 50%;
    transform: translateX(-50%);
}

/* RIGHT FIX */
.title .title-right h1::after{
    left: auto;
    right: 0;
}

/* MOBILE */
@media (max-width: 991px){

    .title{
        margin-bottom: 35px;
    }

    .title .title-left h5,
    .title .title-center h5,
    .title .title-right h5{
        font-size: 11px;
        letter-spacing: 2px;
        padding: 8px 15px;
        margin-bottom: 15px;
    }

    .title .title-left h1,
    .title .title-center h1,
    .title .title-right h1{
        font-size: 32px;
        line-height: 1.3;
        padding-left: 18px;
    }

    .title .title-left h1::before,
    .title .title-right h1::before{
        width: 5px;
    }

    .title .title-left h1::after,
    .title .title-center h1::after,
    .title .title-right h1::after{
        width: 70px;
    }
}

/* SMALL MOBILE */
@media (max-width: 576px){

    .title .title-left h1,
    .title .title-center h1,
    .title .title-right h1{
        font-size: 26px;
    }

    .title .title-left h5,
    .title .title-center h5,
    .title .title-right h5{
        font-size: 10px;
        padding: 7px 13px;
    }
}


/*** WHY CHOOSE US - CLEAN PREMIUM STYLE ***/

.service-item {
    position: relative;
    padding: 50px;
    margin-bottom: 35px;
    overflow: hidden;
    background: #141414;
    border: 1px solid rgba(255, 101, 18, 0.10);
    transition: 0.4s ease;
}

/* UNIQUE TOP ACCENT */

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff6512;
    transition: 0.5s ease;
}

.service-item:hover::before {
    width: 100%;
}

/* HOVER */

.service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 101, 18, 0.30);
    background: #181818;
}

/* IMAGE */

.service-img {
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* removed rounded image */
    transition: 0.6s ease;
}

/* IMAGE ZOOM */

.service-item:hover .service-img img {
    transform: scale(1.05);
}

/* ORANGE CORNER ACCENT */

.service-img::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border-top: 3px solid #ff6512;
    border-left: 3px solid #ff6512;
    top: 18px;
    left: 18px;
    opacity: 0.85;
}

/* TEXT */

.service-text h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-text p {
    color: #a8a8a8;
    font-size: 15px;
    line-height: 1.95;
    margin-bottom: 0;
}

/* REMOVE OLD TEXT ALIGN */

.service-item .text-md-end {
    text-align: left !important;
}

/* LEFT RIGHT SPACING */

.service-item-left .service-text {
    padding-left: 20px;
}

.service-item-right .service-text {
    padding-right: 20px;
}

/* MOBILE */

@media (max-width: 991px) {

    .service-item {
        padding: 28px;
    }

    .service-text {
        padding-top: 25px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .service-text h3 {
        font-size: 23px;
        margin-bottom: 16px;
    }

    .service-text p {
        font-size: 14px;
        line-height: 1.8;
    }
}

@media (max-width: 576px) {

    .service-item {
        padding: 20px;
    }

    .service-text h3 {
        font-size: 20px;
    }

    .service-img::after {
        width: 45px;
        height: 45px;
        top: 12px;
        left: 12px;
    }
}



/* =========================
   SERVICE FEATURE POINTS
========================= */

.service-points{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px;
    margin-top: 30px;
}

/* CARD */

.service-point{

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 16px;

    border-radius: 18px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    border: 1px solid rgba(255,101,18,0.12);

    transition: 0.35s ease;
}

/* HOVER */

.service-point:hover{

    transform: translateY(-4px);

    border-color: rgba(255,101,18,0.4);

    background:
    linear-gradient(
        145deg,
        rgba(255,101,18,0.08),
        rgba(255,255,255,0.03)
    );
}

/* ICON */

.point-icon{

    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255,101,18,0.12);

    color: #ff6512;

    font-size: 13px;
}

/* TEXT */

.service-point span{

    color: rgba(255,255,255,0.82);

    font-size: 14px;

    line-height: 1.6;
}

/* MOBILE */

@media (max-width: 768px){

    .service-points{
        grid-template-columns: 1fr;
    }

    .service-point{
        padding: 12px 14px;
    }

    .service-point span{
        font-size: 13px;
    }

    .point-icon{
        width: 38px;
        height: 38px;
        min-width: 38px;
    }
}


/* =========================
   VISION SECTION (NEW)
========================= */

.vision-section {
    position: relative;
}

/* description */
.vision-description {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

/* CARD STYLE */
.vision-card {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,140,0,0.15);
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    transition: 0.3s ease;
    height: 100%;
}

.vision-card i {
    font-size: 30px;
    color: var(--bs-primary);
    margin-bottom: 12px;
}

.vision-card h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.vision-card p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

/* hover */
.vision-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,140,0,0.4);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* mobile */
@media (max-width: 768px) {
    .vision-card {
        padding: 20px;
    }
}


/* =========================
   CAPABILITIES - PREMIUM SPLIT STYLE
========================= */

.capabilities-section {
    background: transparent;
}

/* CARD */

.cap-card {
    position: relative;
    overflow: hidden;
    background: #141414;
    transition: 0.45s ease;
}

/* IMAGE */

.cap-img {
    position: relative;
    overflow: hidden;
}

.cap-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.7s ease;
}

/* DARK OVERLAY */

.cap-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.10) 100%
    );
    z-index: 1;
}

/* SIDE ACCENT */

.cap-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: #ff6512;
    transition: 0.5s ease;
    z-index: 3;
}

.cap-card:hover::after {
    height: 100%;
}

/* CONTENT */

.cap-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 35px 28px;
    background: none;
}

/* TITLE */

.cap-card h5 {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 2;

    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    max-width: 70%;

    writing-mode: vertical-lr;
    transform: rotate(180deg);

    letter-spacing: 1px;
    transition: 0.4s ease;
}

/* DESCRIPTION */

.cap-overlay p {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    line-height: 1.9;
    margin: 0;

    transform: translateY(25px);
    opacity: 0;
    transition: 0.5s ease;
}

/* HOVER */

.cap-card:hover img {
    transform: scale(1.08);
}

.cap-card:hover .cap-overlay p {
    transform: translateY(0);
    opacity: 1;
}

.cap-card:hover h5 {
    color: #ff6512;
    letter-spacing: 2px;
}

/* DIFFERENT HEIGHT STYLE */

.col-lg-3:nth-child(2) .cap-img img {
    height: 500px;
}

.col-lg-3:nth-child(3) .cap-img img {
    height: 360px;
}

.col-lg-3:nth-child(4) .cap-img img {
    height: 460px;
}

/* MOBILE */

@media (max-width: 991px) {

    .cap-card h5 {
        writing-mode: initial;
        transform: none;
        top: auto;
        bottom: 90px;
        left: 20px;
        font-size: 22px;
        max-width: 90%;
    }

    .cap-overlay {
        padding: 20px;
    }

    .cap-overlay p {
        opacity: 1;
        transform: none;
        font-size: 13px;
        line-height: 1.7;
    }

    .cap-img img,
    .col-lg-3:nth-child(2) .cap-img img,
    .col-lg-3:nth-child(3) .cap-img img,
    .col-lg-3:nth-child(4) .cap-img img {
        height: 280px;
    }
}

@media (max-width: 576px) {

    .cap-card h5 {
        font-size: 18px;
        bottom: 75px;
    }

    .cap-overlay p {
        font-size: 12.8px;
    }

    .cap-img img,
    .col-lg-3:nth-child(2) .cap-img img,
    .col-lg-3:nth-child(3) .cap-img img,
    .col-lg-3:nth-child(4) .cap-img img {
        height: 240px;
    }
}



/* =========================
   INSIGHTS SECTION
========================= */

.insights-section{
    background: var(--bs-secondary);
    position: relative;
    overflow: hidden;
}

/* =========================
   OWL LAYOUT
========================= */

.insight-carousel{
    position: relative;
}

/* MAKE CONTENT + NAV SIDE BY SIDE */
.insight-carousel .owl-stage-outer{
    width: calc(100% - 130px);
    margin-left: auto;
}

/* =========================
   MAIN CARD
========================= */

.insight-item{
    padding: 55px 50px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.015)
    );

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 30px;

    backdrop-filter: blur(10px);

    position: relative;
    overflow: hidden;

    transition: 0.45s ease;
}

/* ORANGE LINE */
.insight-item::before{
    content: "";

    position: absolute;
    top: 0;
    left: 50px;

    width: 130px;
    height: 3px;

    background: linear-gradient(
        90deg,
        #ff6512,
        transparent
    );
}

/* HOVER */
.insight-item:hover{
    transform: translateY(-6px);

    border-color: rgba(255,101,18,0.25);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.35);
}

/* =========================
   TEXT
========================= */

.insight-item p{
    color: rgba(255,255,255,0.82);

    font-size: 18px;
    line-height: 1.9;

    margin-bottom: 30px;
}

.insight-item h5{
    color: #ffffff;

    font-size: 30px;
    font-weight: 700;

    margin-bottom: 10px;
}

.insight-item span{
    display: inline-block;

    padding: 9px 18px;

    border-radius: 100px;

    background: rgba(255,101,18,0.08);

    border: 1px solid rgba(255,101,18,0.15);

    color: #ff6512;

    font-size: 13px;
}

/* =========================
   LEFT VERTICAL NAV
========================= */

.insight-carousel .owl-dots{
    position: absolute;

    left: 0;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;

    gap: 18px;

    width: 90px;
}

/* NAV ITEM */
.insight-carousel .owl-dot{
    position: relative;

    width: 70px;
    height: 70px;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.4s ease;

    opacity: 0.5;
}

/* IMAGE */
.insight-carousel .owl-dot img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.4s ease;
}

/* VERTICAL LINE */
.insight-carousel .owl-dot::before{
    content: "";

    position: absolute;

    left: -18px;
    top: 50%;

    width: 10px;
    height: 2px;

    background: rgba(255,255,255,0.2);

    transform: translateY(-50%);

    transition: 0.4s ease;
}

/* ACTIVE */
.insight-carousel .owl-dot.active{
    width: 90px;
    height: 90px;

    opacity: 1;

    border-color: rgba(255,101,18,0.4);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}

.insight-carousel .owl-dot.active::before{
    width: 22px;
    background: #ff6512;
}

.insight-carousel .owl-dot.active img{
    transform: scale(1.08);
}

/* HOVER */
.insight-carousel .owl-dot:hover{
    transform: translateX(6px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px){

    .insight-carousel .owl-stage-outer{
        width: 100%;
    }

    .insight-carousel .owl-dots{
        position: relative;

        top: auto;
        left: auto;

        transform: none;

        flex-direction: row;

        justify-content: center;

        width: 100%;

        margin-top: 35px;
    }

    .insight-carousel .owl-dot::before{
        display: none;
    }

    .insight-item{
        padding: 40px 30px;
    }

    .insight-item h5{
        font-size: 24px;
    }

    .insight-item p{
        font-size: 16px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px){

    .insight-item{
        padding: 30px 22px;

        border-radius: 22px;
    }

    .insight-item::before{
        left: 22px;
        width: 80px;
    }

    .insight-item h5{
        font-size: 20px;
    }

    .insight-item p{
        font-size: 14px;
        line-height: 1.8;
    }

    .insight-item span{
        font-size: 11px;
    }

    .insight-carousel .owl-dot{
        width: 55px;
        height: 55px;
    }

    .insight-carousel .owl-dot.active{
        width: 70px;
        height: 70px;
    }
}



/* =========================================
   CONTACT SECTION - FINAL MODERN COMPACT
========================================= */

.contact-v2-section {

    position: relative;

    padding: 90px 0;

    background:
        radial-gradient(circle at top left,
        rgba(255,101,18,0.08),
        transparent 28%),
        #0f1217;

    overflow: hidden;
}

/* =========================================
   HEADER
========================================= */

.contact-v2-header {

    max-width: 760px;

    margin: auto;

    margin-bottom: 45px;
}

.contact-v2-header span {

    color: #ff6512;

    letter-spacing: 3px;

    font-size: 12px;

    font-weight: 700;
}

.contact-v2-header h1 {

    color: #ffffff;

    font-size: 42px;

    line-height: 1.2;

    margin: 14px 0 18px;
}

.contact-v2-header p {

    color: #9f9f9f;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 0;
}

/* =========================================
   MAIN WRAPPER
========================================= */

.contact-v2-wrapper {

    max-width: 1100px;

    margin: auto;

    display: flex;

    flex-direction: column;

    gap: 20px;
}

/* =========================================
   TOP INFO STRIP
========================================= */

.contact-v2-sidebar {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

/* INFO CARD */

.sidebar-card {

    position: relative;

    padding: 20px 24px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(255,101,18,0.08);

    overflow: hidden;
}

.sidebar-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ff6512,
            transparent
        );
}

.sidebar-card small {

    display: block;

    color: #ff6512;

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 10px;
}

.sidebar-card h6 {

    color: #ffffff;

    font-size: 14px;

    line-height: 1.7;

    margin: 0;
}

/* =========================================
   SOCIAL
========================================= */

.social-icons-v2 {

    display: flex;

    gap: 10px;

    margin-top: 5px;
}

.social-icons-v2 a {

    width: 38px;

    height: 38px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,0.05);

    color: #ffffff;

    text-decoration: none;

    transition: 0.3s ease;
}

.social-icons-v2 a:hover {

    background: #ff6512;

    transform: translateY(-3px);
}

/* =========================================
   FORM AREA
========================================= */

.contact-v2-form {

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.015)
        );

    border-radius: 26px;

    padding: 30px;

    border: 1px solid rgba(255,255,255,0.05);

    backdrop-filter: blur(8px);
}

/* SMALLER GRID */

.contact-v2-form .row {

    --bs-gutter-x: 14px;

    --bs-gutter-y: 14px;
}

/* =========================================
   LABELS
========================================= */

.contact-input-box label,
.contact-upload-box label {

    display: block;

    color: #ffffff;

    font-size: 13px;

    margin-bottom: 8px;

    font-weight: 500;
}

/* =========================================
   INPUTS
========================================= */

.contact-input-box .form-control,
.contact-input-box .form-select {

    height: 48px;

    border-radius: 14px;

    background: rgba(255,255,255,0.03) !important;

    border: 1px solid rgba(255,255,255,0.06) !important;

    color: #ffffff !important;

    box-shadow: none !important;

    padding-left: 16px;

    font-size: 14px;
}

/* TEXTAREA */

.contact-input-box textarea.form-control {

    height: 110px;

    resize: none;

    padding-top: 14px;
}

/* PLACEHOLDER */

.contact-input-box .form-control::placeholder {

    color: #7f7f7f;
}

/* FOCUS */

.contact-input-box .form-control:focus,
.contact-input-box .form-select:focus,
.contact-upload-box .form-control:focus {

    border-color: rgba(255,101,18,0.45) !important;

    background: rgba(255,101,18,0.03) !important;

    box-shadow: none !important;
}

/* =========================================
   SELECT DROPDOWN
========================================= */

.contact-input-box .form-select {

    cursor: pointer;
}

.contact-input-box .form-select option {

    background: #171b22;

    color: #ffffff;
}

/* =========================================
   FILE INPUT
========================================= */

.contact-upload-box .form-control {

    height: 54px;

    border-radius: 14px;

    background: rgba(255,255,255,0.03) !important;

    border: 1px solid rgba(255,255,255,0.06) !important;

    color: #bdbdbd !important;

    padding: 6px 10px;

    font-size: 13px;

    display: flex;

    align-items: center;
}

/* FIX CHOOSE FILE BUTTON */

.custom-file-input::-webkit-file-upload-button {

    height: 40px;

    border: none;

    padding: 0 16px;

    margin-right: 14px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #ff6512,
            #ff8533
        );

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;

    vertical-align: middle;
}

.custom-file-input::-webkit-file-upload-button:hover {

    opacity: 0.92;
}

/* =========================================
   BUTTON
========================================= */

.contact-submit-btn {

    width: 100%;

    height: 52px;

    border: none;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #ff6512,
            #ff8533
        );

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    transition: 0.3s ease;
}

.contact-submit-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(255,101,18,0.22);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .contact-v2-sidebar {

        grid-template-columns: 1fr;
    }

    .contact-v2-form {

        padding: 22px;
    }

    .contact-v2-header h1 {

        font-size: 34px;
    }
}

@media (max-width: 576px) {

    .contact-v2-section {

        padding: 70px 0;
    }

    .contact-v2-header {

        margin-bottom: 35px;
    }

    .contact-v2-header h1 {

        font-size: 26px;
    }

    .contact-v2-form {

        padding: 20px;

        border-radius: 22px;
    }

    .sidebar-card {

        padding: 18px;
    }

    .contact-input-box .form-control,
    .contact-input-box .form-select {

        height: 46px;

        border-radius: 12px;
    }

    .contact-input-box textarea.form-control {

        height: 100px;
    }

    .contact-upload-box .form-control {

        height: 52px;
    }

    .contact-submit-btn {

        height: 50px;
    }
}






/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}





/* ===========================
   WORKFLOW INSIDE ARDENCY
=========================== */

.workflow-inside-section{
    background:#111;
    padding:120px 0;
    overflow:hidden;
}

.workflow-inside-box{
    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.03),
        rgba(255,255,255,0.01)
    );

    border:1px solid rgba(255,101,18,0.15);

    border-radius:32px;

    padding:70px;

    position:relative;

    overflow:hidden;
}

.workflow-inside-box::before{
    content:"";

    position:absolute;

    top:-200px;
    right:-200px;

    width:400px;
    height:400px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(255,101,18,0.15),
        transparent 70%
    );
}

/* BADGE */

.workflow-badge{
    display:inline-block;

    padding:10px 22px;

    border-radius:100px;

    background:rgba(255,101,18,0.08);

    border:1px solid rgba(255,101,18,0.25);

    color:#ff6512;

    font-size:12px;

    letter-spacing:2px;

    font-weight:600;

    margin-bottom:25px;
}

/* TITLE */

.workflow-title{
    color:#fff;

    font-size:48px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:25px;
}

.workflow-text{
    color:rgba(255,255,255,0.72);

    font-size:16px;

    line-height:1.9;

    margin-bottom:40px;
}

/* LIST */

.workflow-item{
    display:flex;

    gap:20px;

    margin-bottom:28px;
}

.workflow-number{
    width:60px;
    height:60px;

    min-width:60px;

    border-radius:50%;

    background:#ff6512;

    color:#fff;

    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;
}

.workflow-item h6{
    color:#fff;
    margin-bottom:6px;
}

.workflow-item p{
    color:rgba(255,255,255,0.65);
    margin:0;
}

/* VISUAL */

.workflow-visual{
    position:relative;

    height:500px;
}

.workflow-circle{
    position:absolute;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:#fff;

    font-weight:600;

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,101,18,0.25);

    background:rgba(255,255,255,0.05);
}

.center-circle{
    width:180px;
    height:180px;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    background:#ff6512;

    animation:pulseCircle 3s infinite;
}

.circle-1{
    width:120px;
    height:120px;

    top:20px;
    left:50%;
    transform:translateX(-50%);
}

.circle-2{
    width:120px;
    height:120px;

    right:20px;
    top:50%;
    transform:translateY(-50%);
}

.circle-3{
    width:120px;
    height:120px;

    bottom:20px;
    left:50%;
    transform:translateX(-50%);
}

.circle-4{
    width:120px;
    height:120px;

    left:20px;
    top:50%;
    transform:translateY(-50%);
}

/* ANIMATION */

@keyframes pulseCircle{

    0%{
        box-shadow:0 0 0 0 rgba(255,101,18,0.5);
    }

    70%{
        box-shadow:0 0 0 30px rgba(255,101,18,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(255,101,18,0);
    }
}

/* MOBILE */

@media(max-width:991px){

    .workflow-inside-box{
        padding:40px 30px;
    }

    .workflow-title{
        font-size:34px;
    }

    .workflow-visual{
        height:400px;
        margin-top:40px;
    }

    .center-circle{
        width:140px;
        height:140px;
    }

    .workflow-circle:not(.center-circle){
        width:90px;
        height:90px;
        font-size:13px;
    }
}

/* ==========================
   DELIVERY SECTION
========================== */

.delivery-section{
    padding:120px 0;
    background:#0f0f0f;
    overflow:hidden;
}

.delivery-card{
    position:relative;
    background:linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );
    border:1px solid rgba(255,101,18,.15);
    border-radius:32px;
    padding:70px;
    overflow:hidden;
}

.delivery-card::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-250px;
    right:-250px;

    background:radial-gradient(
        circle,
        rgba(255,101,18,.18),
        transparent 70%
    );

    animation:pulseGlow 5s ease infinite;
}

.delivery-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:100px;

    background:rgba(255,101,18,.12);
    border:1px solid rgba(255,101,18,.25);

    color:#ff6512;

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;

    margin-bottom:25px;
}

.delivery-content h2{
    font-size:48px;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
}

.delivery-content p{
    color:rgba(255,255,255,.7);
    line-height:1.9;
    margin-bottom:35px;
}

/* FEATURES */

.delivery-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.feature-box{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;

    padding:18px 20px;

    display:flex;
    align-items:center;
    gap:12px;

    transition:.4s;
}

.feature-box:hover{
    transform:translateY(-5px);
    border-color:#ff6512;
}

.feature-box i{
    color:#ff6512;
    font-size:20px;
}

.feature-box span{
    color:#fff;
    font-weight:600;
}

/* IMAGE SIDE */

.delivery-visual{
    position:relative;
    width:100%;
    height:550px;
}

.shipping-image{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;
}

.shipping-image img{
    width:420px;
    max-width:100%;

    border-radius:24px;

    animation:floatImage 4s ease-in-out infinite;

    box-shadow:
    0 30px 80px rgba(0,0,0,.45);
}

/* ORBITS */

.orbit{
    position:absolute;
    border-radius:50%;
    border:1px dashed rgba(255,101,18,.3);
}

.orbit-1{
    width:420px;
    height:420px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    animation:spinOrbit 18s linear infinite;
}

.orbit-2{
    width:520px;
    height:520px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    animation:spinOrbitReverse 25s linear infinite;
}

/* FLOATING STATUS */

.floating-card{
    position:absolute;

    background:#171717;

    border:1px solid rgba(255,101,18,.2);

    border-radius:14px;

    padding:14px 18px;

    display:flex;
    align-items:center;
    gap:10px;

    color:#fff;

    box-shadow:
    0 15px 40px rgba(0,0,0,.35);

    animation:floatCard 3s ease-in-out infinite;
}

.floating-card i{
    color:#ff6512;
}

.card-top{
    top:40px;
    left:80px;
}

.card-right{
    right:20px;
    top:220px;
}

.card-bottom{
    bottom:60px;
    left:120px;
}

/* ANIMATIONS */

@keyframes floatImage{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-18px);
    }
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

@keyframes spinOrbit{
    from{
        transform:translate(-50%,-50%) rotate(0deg);
    }
    to{
        transform:translate(-50%,-50%) rotate(360deg);
    }
}

@keyframes spinOrbitReverse{
    from{
        transform:translate(-50%,-50%) rotate(360deg);
    }
    to{
        transform:translate(-50%,-50%) rotate(0deg);
    }
}

@keyframes pulseGlow{
    0%,100%{
        opacity:.5;
    }
    50%{
        opacity:1;
    }
}

/* MOBILE */

@media(max-width:991px){

    .delivery-card{
        padding:40px 25px;
    }

    .delivery-content h2{
        font-size:34px;
    }

    .delivery-visual{
        height:450px;
        margin-top:50px;
    }

    .orbit-1{
        width:300px;
        height:300px;
    }

    .orbit-2{
        width:380px;
        height:380px;
    }

    .shipping-image img{
        width:280px;
    }

    .floating-card{
        font-size:12px;
        padding:10px 12px;
    }
}

/* ==========================
   PAYMENT SECTION
========================== */

.payment-section{

    padding:120px 0;

    background:
    linear-gradient(
        135deg,
        #161616,
        #0f0f0f
    );

    position:relative;

    overflow:hidden;
}

.payment-wrapper{

    background: rgba(17,17,17,.35);

    border:1px solid rgba(255,101,18,.15);

    border-radius:30px;

    padding:40px;

    backdrop-filter: blur(4px);

    max-width:1200px;

    margin:auto;
}

/* IMAGE AREA */

.payment-image-area{

    position:relative;

    text-align:center;
}

.payment-image{

    width:100%;
    max-width:450px;

    position:relative;

    z-index:2;

    animation:
    paymentFloat 4s ease-in-out infinite;
}

/* FLOATING CARDS */

.floating-card{

    position:absolute;

    background:#fff;

    color:#111;

    padding:12px 20px;

    border-radius:14px;

    font-size:14px;

    font-weight:600;

    box-shadow:
    0 15px 35px rgba(0,0,0,.25);

    z-index:3;
}

.floating-card i{

    color:#ff6512;

    margin-right:8px;
}

.card1{

    top:10%;

    left:0;

    animation:floatCard1 4s ease-in-out infinite;
}

.card2{

    top:40%;

    right:0;

    animation:floatCard2 5s ease-in-out infinite;
}

.card3{

    bottom:10%;

    left:15%;

    animation:floatCard3 4.5s ease-in-out infinite;
}

/* CONTENT */

.payment-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(255,101,18,.1);

    color:#ff6512;

    border:1px solid rgba(255,101,18,.3);

    letter-spacing:2px;

    font-size:12px;

    margin-bottom:20px;
}

.payment-title{

    color:#fff;

    font-size:48px;

    font-weight:700;

    margin-bottom:25px;
}

.payment-text{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    margin-bottom:18px;

    font-size:16px;
}

/* FEATURES */

.payment-features{

    margin-top:35px;
}

.payment-feature{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    color:#fff;

    font-weight:500;
}

.payment-feature i{

    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:rgba(255,101,18,.12);

    color:#ff6512;
}

/* ANIMATIONS */

@keyframes paymentFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-18px);
    }
}

@keyframes floatCard1{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }
}

@keyframes floatCard2{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(15px);
    }
}

@keyframes floatCard3{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }
}

/* MOBILE */

@media(max-width:991px){

    .payment-wrapper{

        padding:40px 25px;
    }

    .payment-title{

        font-size:34px;

        margin-top:40px;
    }

    .floating-card{

        display:none;
    }
}




 /* =========================
   VIDEOFLOW COMMAND CENTER
========================= */

.videoflow-command-section{
    position:relative;
    padding:90px 0;
    background:#0f0f0f;
    overflow:hidden;
}

/* GRID */
.videoflow-command-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size:45px 45px;
    opacity:.5;
}

/* WRAPPER */
.videoflow-wrapper{
    position:relative;
    z-index:2;
}

/* HEADER */
.videoflow-heading{
    max-width:850px;
    margin:auto auto 60px;
}

.videoflow-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:100px;
    background:rgba(255,101,18,.1);
    border:1px solid rgba(255,101,18,.25);
    color:#ff6512;
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:18px;
}

.videoflow-heading h2{
    color:#fff;
    font-size:44px;
    margin-bottom:15px;
}

.videoflow-heading p{
    color:rgba(255,255,255,.65);
    line-height:1.8;
}

/* CENTER */
.videoflow-center{
    position:relative;
    height:550px;   /* reduced from 900px */
    display:flex;
    align-items:center;
    justify-content:center;
}

/* VIDEO FRAME */
.videoflow-video-frame{
    width:620px;
    height:360px;
    position:relative;
    z-index:5;

    border-radius:18px;
    overflow:hidden;

    border:1px solid rgba(255,101,18,.25);

    box-shadow:
    0 0 40px rgba(255,101,18,.15),
    0 20px 60px rgba(0,0,0,.6);
}

.videoflow-video{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* SCAN LINE */
.videoflow-scan{
    position:absolute;
    top:0;
    left:-100%;
    width:40%;
    height:100%;
    background:linear-gradient(90deg,transparent,rgba(255,101,18,.18),transparent);
    animation:scanMove 4s linear infinite;
    z-index:6;
}

@keyframes scanMove{
    100%{ left:140%; }
}

/* STATUS */
.videoflow-status{
    position:absolute;
    bottom:15px;
    left:15px;
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    z-index:7;
}

.videoflow-status span{
    font-size:10px;
    padding:6px 10px;
    border-radius:50px;
    background:rgba(0,0,0,.6);
    color:#fff;
}

/* =========================
   NODES (FIXED OVERLAP ISSUE)
========================= */

.videoflow-node{
    position:absolute;
    width:170px;
    padding:14px;
    border-radius:18px;
    text-align:center;

    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,101,18,.18);

    color:#fff;

    z-index:10; /* IMPORTANT FIX */
    backdrop-filter:blur(10px);

    animation:floatNode 4s ease-in-out infinite;
}

.videoflow-node p{
    margin:8px 0 0;
    font-size:13px;
    color:rgba(255,255,255,.7);
}

.videoflow-node span{
    display:inline-block;
    width:34px;
    height:34px;
    line-height:34px;
    border-radius:50%;
    background:#ff6512;
    font-weight:700;
    margin-bottom:6px;
}

/* FLOAT */
@keyframes floatNode{
    50%{ transform:translateY(-8px); }
}

/* POSITIONS (CLEANED + BALANCED) */
.n1{ left:10%; top:20%; }
.n2{ left:50%; top:2%; transform:translateX(-50%); }
.n3{ right:10%; top:20%; }

.n4{ left:10%; bottom:5%; }
.n5{ right:10%; bottom:5%; }
.n6{ left:50%; bottom:2%; transform:translateX(-50%); }

/* =========================
   MOBILE FIX ONLY
========================= */
@media (max-width: 991px) {

    .videoflow-center{
        height: auto;
        padding: 20px 0;
        flex-direction: column;
        gap: 18px;
    }

    /* VIDEO FULL WIDTH */
    .videoflow-video-frame{
        width: 100%;
        max-width: 520px;
        height: 260px;
        margin: 0 auto;
    }

    /* IMPORTANT: STOP ABSOLUTE LAYOUT */
    .videoflow-node{
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;

        width: 100%;
        max-width: 520px;
        margin: 10px auto;

        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;

        text-align: left;
    }

    .videoflow-node span{
        margin: 0;
        flex-shrink: 0;
    }

    .videoflow-node p{
        margin: 0;
    }

    /* optional: reduce animation on mobile */
    .videoflow-node{
        animation: none;
    }
}



/* PLAY BUTTON */

.videoflow-play-btn{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:90px;
    height:90px;

    border-radius:50%;

    background:rgba(255,101,18,.95);

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    z-index:20;

    transition:.3s ease;

    box-shadow:
    0 0 30px rgba(255,101,18,.45);
}

.videoflow-play-btn i{

    color:#fff;

    font-size:30px;

    margin-left:5px;
}

.videoflow-play-btn:hover{

    transform:
    translate(-50%,-50%)
    scale(1.08);
}

/* HIDE WHEN PLAYING */

.videoflow-play-btn.hide{

    opacity:0;

    visibility:hidden;
}