@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --pri: #e67817;
    --Blucolor: #29166f;
    --white: #fff;
    --black: #111;
    --text: #666;
    --border: #ececec;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    overflow: hidden;

    padding: 16px 36px;

    background: var(--pri);
    color: var(--white);

    border-radius: 12px;

    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    z-index: 1;

    transition: all 0.4s ease-in-out;
}

/* BEFORE & AFTER */

.thm-btn::before,
.thm-btn::after {
    content: "";

    position: absolute;

    left: 0;
    width: 100%;
    height: 50%;

    background: var(--Blucolor);

    z-index: -1;

    transform: scaleX(0);

    transition: 0.5s ease-in-out;
}

.thm-btn::before {
    top: 0;

    transform-origin: left;
}

.thm-btn::after {
    bottom: 0;

    transform-origin: right;
}

/* HOVER EFFECT */

.thm-btn:hover::before,
.thm-btn:hover::after {
    transform: scaleX(1);
}

.thm-btn:hover {
    color: var(--white);

    transform: translateY(-5px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* =========================
   TOP BAR
========================= */

.top-bar {
    background: var(--Blucolor);
    padding: 12px 0;
    display: block;
    position: relative;
    overflow: hidden;
}


/* overlay container */
.top_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* moving circle */
.top_overlay::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.4), transparent 70%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: -150px;

    animation: moveCircle 6s linear infinite;
}

/* second circle (optional for better effect) */
.top_overlay::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(30, 42, 120, 0.5), transparent 70%);
    border-radius: 50%;
    top: 30%;
    left: -120px;

    animation: moveCircle 8s linear infinite;
}

/* animation left to right */
@keyframes moveCircle {
    0% {
        transform: translate(-150px, -50%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translate(110vw, -50%);
        opacity: 0;
    }
}



.top_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top_container .top-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top_container .top-left .top-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
}

.top_container .top-left .top-item a {
    text-decoration: none;
    color: #fff;
}

.top_container .top-left .top-item a:hover {
    color: #ff7a00;
}

.top_container .top-left .top-item i {
    color: var(--pri);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-right a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);
    text-decoration: none;

    transition: var(--transition);
}

.top-right a:hover {
    background: var(--pri);
    transform: translateY(-5px) rotate(360deg);
}

/* =========================
   HEADER
========================= */

.header {
    width: 100%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;

    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 0;
}

/* LOGO */
.header .nav-wrapper .logo {
    width: 180px;
}

.header .nav-wrapper .logo img {
    width: 100%;
    height: 100%;
}

.header .nav-wrapper .navbar {
    padding: 0;
}

.header .nav-wrapper .navbar .nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.header .nav-wrapper .navbar .nav-menu li {
    position: relative;
}

.header .nav-wrapper .navbar .nav-menu li a {
    text-decoration: none;
    color: var(--black);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: var(--transition);
}

/* UNDERLINE ANIMATION */

.header .nav-wrapper .navbar .nav-menu>li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 3px;
    background: var(--pri);
    border-radius: 10px;
    transition: var(--transition);
}

.header .nav-wrapper .navbar .nav-menu>li a:hover::after,
.header .nav-wrapper .navbar .nav-menu>li a.active::after {
    width: 100%;
}

.header .nav-wrapper .navbar .nav-menu li a:hover,
.header .nav-wrapper .navbar .nav-menu li a.active {
    color: var(--pri);
}

/* =========================
   DROPDOWN
========================= */

.header .nav-wrapper .navbar .dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    width: 320px;
    background: var(--white);
    border: none;
    border-radius: 14px;
    padding: 12px 0;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    display: block;
}

.header .nav-wrapper .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header .nav-wrapper .navbar .dropdown-menu li {
    list-style: none;
}

.header .nav-wrapper .navbar .dropdown-menu li a {
    position: relative;

    padding: 12px 24px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--black);

    font-size: 14px;
    font-weight: 500;

    overflow: hidden;

    border-radius: 8px;

    transition: all 0.4s ease;
}

/* ICON */

.header .nav-wrapper .navbar .dropdown-menu li a i {
    color: var(--pri);
    font-size: 12px;
    transition: all 0.4s ease;
}

/* BACKGROUND ANIMATION */

.header .nav-wrapper .navbar .dropdown-menu li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg,
            var(--pri),
            var(--Blucolor));
    z-index: -1;
    transition: all 0.5s ease;
}

/* HOVER EFFECT */

.header .nav-wrapper .navbar .dropdown-menu li a:hover::before {
    width: 100%;
}

.header .nav-wrapper .navbar .dropdown-menu li a:hover {
    color: var(--white);
    padding-left: 38px;
    transform: translateX(5px);
}

/* ICON HOVER */

.header .nav-wrapper .navbar .dropdown-menu li a:hover i {
    color: var(--white);
    /* transform: translateX(5px) rotate(90deg); */
}

/* ROTATE ICON */

.nav-link i {
    font-size: 13px;
    transition: var(--transition);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* =========================
   RIGHT SIDE
========================= */

.header .nav-wrapper .navbar .header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}


/* =========================
   MOBILE BUTTON
========================= */

.mobile-menu-btn {
    display: none;

    font-size: 28px;
    color: var(--black);

    cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 991px) {
    .top-bar {
        display: none;
    }

    .header-right {
        display: none;
    }

    /* Overlay Background */
    .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: 0.4s ease;
        z-index: 998;
    }

    /* Overlay Active */
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Navbar */
    .header .nav-wrapper .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 20rem;
        background: #fff;
        z-index: 999;
        display: flex;
        flex-direction: column;
        transition: left 0.4s ease;
        padding: 2rem;
        align-items: flex-start;
    }

    /* Active Navbar */
    .header .nav-wrapper .navbar.active {
        left: 0;
    }

    /* Menu */
    .header .nav-wrapper .navbar .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    /* Menu Items Animation */
    .header .nav-wrapper .navbar .nav-menu li {
        opacity: 0;
        transform: translateX(-30px);
        transition: 0.4s ease;
    }

    /* Active Menu Items */
    .header .nav-wrapper .navbar.active .nav-menu li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Delay Animation */
    .header .nav-wrapper .navbar.active .nav-menu li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .header .nav-wrapper .navbar.active .nav-menu li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .header .nav-wrapper .navbar.active .nav-menu li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .header .nav-wrapper .navbar.active .nav-menu li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .header .nav-wrapper .navbar .nav-menu .nav-item.dropdown a {
        padding: 0;
    }

    .header .nav-wrapper .navbar .nav-menu .nav-item.dropdown .dropdown-menu li a {
        padding: 5px 10px;
    }

    .header .nav-wrapper .navbar .dropdown-menu {
        position: initial;
        width: auto;
        height: 0;
        overflow-y: auto;
        display: none;
    }

    .header .nav-wrapper .navbar .dropdown-menu.active {
        height: 90%;
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .top_container {
        flex-direction: column;
        gap: 15px;
    }

    .top-left {
        flex-direction: column;
        gap: 10px;
    }

    .nav-wrapper {
        padding: 15px 0;
    }

    .logo img {
        width: 150px;
    }
}

@media(max-width: 576px) {

    .top-item {
        font-size: 13px;
    }

    .top-right a {
        width: 34px;
        height: 34px;
    }

    .logo img {
        width: 130px;
    }

    .mobile-menu-btn {
        font-size: 24px;
    }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
    position: relative;

    padding: 120px 0;

    background: #f8f8f8;

    overflow: hidden;
}

/* BACKGROUND SHAPE */

.about-section::before {
    content: "";

    position: absolute;

    top: -150px;
    right: -150px;

    width: 450px;
    height: 450px;

    background: rgba(230, 120, 23, 0.08);

    border-radius: 50%;
}

/* =========================
   LEFT SIDE
========================= */

.about-left {
    position: relative;

    min-height: 650px;
}

/* MAIN IMAGE */

.about-main-img {
    width: 78%;

    overflow: hidden;

    border-radius: 30px;

    position: relative;
}

.about-main-img img {
    width: 100%;

    display: block;

    border-radius: 30px;

    transition: 0.6s ease;
}

.about-main-img:hover img {
    transform: scale(1.08);
}

/* SMALL IMAGE */

.about-small-img {
    position: absolute;

    right: 0;
    bottom: 40px;

    width: 48%;

    overflow: hidden;

    border-radius: 25px;

    border: 8px solid #fff;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-small-img img {
    width: 100%;

    display: block;

    transition: 0.5s ease;
}

.about-small-img:hover img {
    transform: scale(1.1);
}

/* FLOAT CARD */

.about-floating-card {
    position: absolute;

    top: 50px;
    right: 30px;

    background: var(--pri);

    padding: 25px 30px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    gap: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

.floating-icon {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.2);

    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon i {
    font-size: 28px;
    color: #fff;
}

.floating-content h4 {
    color: #fff;

    font-size: 24px;
    font-weight: 700;

    margin-bottom: 5px;
}

.floating-content p {
    color: rgba(255, 255, 255, 0.85);

    margin: 0;

    font-size: 15px;
}

/* EXPERIENCE CIRCLE */

.experience-circle {
    position: absolute;

    left: -30px;
    bottom: 120px;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background: #fff;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    animation: rotateCircle 8s linear infinite;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.experience-circle h2 {
    font-size: 38px;
    font-weight: 800;

    color: var(--pri);

    margin: 0;
}

.experience-circle span {
    font-size: 14px;

    color: #666;
}

/* =========================
   RIGHT CONTENT
========================= */

.about-right {
    padding-left: 30px;
}

.about-subtitle {
    display: inline-block;

    font-size: 15px;
    font-weight: 700;

    color: var(--pri);

    letter-spacing: 1px;

    margin-bottom: 20px;
}

.about-title {
    font-size: 55px;
    line-height: 1.2;

    font-weight: 800;

    color: #111;

    margin-bottom: 30px;
}

.about-text {
    font-size: 16px;
    line-height: 1.9;

    color: #666;

    margin-bottom: 35px;
}

/* FEATURE BOX */

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    background: #fff;

    padding: 25px;

    border-radius: 18px;

    margin-bottom: 20px;

    transition: 0.4s ease;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
    transform: translateY(-8px);
}

.feature-icon {
    width: 65px;
    height: 65px;

    border-radius: 15px;

    background: rgba(230, 120, 23, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.feature-icon i {
    font-size: 28px;
    color: var(--pri);
}

.feature-content h4 {
    font-size: 22px;
    font-weight: 700;

    color: #111;

    margin-bottom: 10px;
}

.feature-content p {
    margin: 0;

    color: #666;

    line-height: 1.7;
}

/* BUTTON */

.about-btn-box {
    margin-top: 40px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .about-section {
        padding: 80px 0;
    }

    .about-left {
        min-height: auto;

        margin-bottom: 60px;
    }

    .about-right {
        padding-left: 0;
    }

    .about-title {
        font-size: 40px;
    }
}

@media(max-width:767px) {

    .about-main-img {
        width: 100%;
    }

    .about-small-img {
        position: relative;

        width: 100%;

        right: 0;
        bottom: 0;

        margin-top: 25px;
    }

    .about-floating-card {
        position: relative;

        top: 0;
        right: 0;

        margin-top: 25px;
    }

    .experience-circle {
        display: none;
    }

    .about-title {
        font-size: 32px;
    }

    .about-feature {
        flex-direction: column;
    }
}

/* =========================
   UNIQUE FEATURES SECTION
========================= */

.unique-features {
    position: relative;

    padding: 120px 0;

    background: #0f172a;

    overflow: hidden;

    z-index: 1;
}

/* SHAPES */

.feature-shape {
    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;

    background: rgba(230, 120, 23, 0.25);

    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 350px;
    height: 350px;

    background: rgba(41, 22, 111, 0.35);

    right: -100px;
    bottom: -100px;
}

/* =========================
   TITLE
========================= */

.section-title {
    max-width: 700px;

    margin: 0 auto 70px;
}

.section-title .subtitle {
    display: inline-block;

    color: var(--pri);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;

    text-transform: uppercase;
}

.section-title h2 {
    font-size: 52px;
    font-weight: 800;

    color: #fff;

    margin-bottom: 20px;
}

.section-title p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 17px;
    line-height: 1.8;
}

/* =========================
   FEATURE CARD
========================= */

.feature-card {
    position: relative;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    border-radius: 30px;

    padding: 40px 20px;

    text-align: center;

    overflow: hidden;

    transition: 0.5s ease;

    height: 100%;
}

/* HOVER EFFECT */

.feature-card:hover {
    transform: translateY(-15px);

    border-color: rgba(255, 255, 255, 0.2);
}

/* GLOW EFFECT */

.feature-glow {
    position: absolute;

    width: 180px;
    height: 180px;

    background: radial-gradient(rgba(230, 120, 23, 0.35),
            transparent 70%);

    top: -60px;
    right: -60px;

    opacity: 0;

    transition: 0.5s ease;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

/* ICON */

.feature-icon {
    width: 110px;
    height: 110px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    transition: 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-icon::before {
    content: "";

    position: absolute;

    inset: -6px;

    border-radius: 50%;

    border: 2px dashed rgba(255, 255, 255, 0.25);

    animation: rotateBorder 12s linear infinite;
}

@keyframes rotateBorder {
    100% {
        transform: rotate(360deg);
    }
}

.feature-icon img {
    width: 55px;

    transition: 0.5s ease;
}

/* TITLE */

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;

    color: #fff;

    line-height: 1.5;

    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .unique-features {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 40px;
    }
}

@media(max-width:767px) {

    .section-title h2 {
        font-size: 32px;
    }

    .feature-card {
        padding: 30px 15px;
    }

    .feature-icon {
        width: 90px;
        height: 90px;
    }

    .feature-icon img {
        width: 45px;
    }

    .feature-card h4 {
        font-size: 17px;
    }
}

/* =========================
   PRODUCTS SECTION
========================= */

.products-section {
    position: relative;

    padding: 120px 0;

    background: #f8fafc;

    overflow: hidden;

    z-index: 1;
}

/* SHAPES */

.product-shape {
    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    z-index: -1;
}

.shape-one {
    width: 300px;
    height: 300px;

    background: rgba(230, 120, 23, 0.15);

    top: -80px;
    left: -80px;
}

.shape-two {
    width: 350px;
    height: 350px;

    background: rgba(41, 22, 111, 0.12);

    bottom: -120px;
    right: -100px;
}

/* =========================
   TITLE
========================= */

.products-title {
    max-width: 750px;

    margin: 0 auto 70px;
}

.products-title .sub-title {
    display: inline-block;

    color: var(--pri);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;

    text-transform: uppercase;
}

.products-title h2 {
    font-size: 55px;
    font-weight: 800;

    color: #111827;

    margin-bottom: 20px;
}

.products-title p {
    font-size: 17px;
    line-height: 1.8;

    color: #64748b;
}

/* =========================
   PRODUCT CARD
========================= */

.product-card {
    position: relative;

    background: #fff;

    border-radius: 30px;

    overflow: hidden;

    transition: 0.5s ease;

    height: 100%;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-15px);
}

/* TOP SHAPE */

.product-top-shape {
    position: absolute;

    top: 0;
    right: 0;

    width: 140px;
    height: 140px;

    background: linear-gradient(135deg,
            rgba(230, 120, 23, 0.15),
            rgba(41, 22, 111, 0.12));

    border-radius: 0 0 0 100%;
}

/* =========================
   IMAGE
========================= */

.product-img {
    position: relative;

    overflow: hidden;

    height: 280px;
}

.product-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.7s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.12) rotate(2deg);
}

/* OVERLAY */

.product-overlay {
    position: absolute;

    inset: 0;

    background: rgba(15, 23, 42, 0.65);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;

    transition: 0.5s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay a {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: #fff;

    color: var(--pri);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    transform: scale(0);

    transition: 0.5s ease;
}

.product-card:hover .product-overlay a {
    transform: scale(1) rotate(360deg);
}

/* =========================
   CONTENT
========================= */

.product-content {
    padding: 35px;
}

.product-content span {
    display: inline-block;

    background: rgba(230, 120, 23, 0.1);

    color: var(--pri);

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 18px;
}

.product-content h3 {
    margin-bottom: 18px;
}

.product-content h3 a {
    font-size: 28px;
    font-weight: 800;

    color: #111827;

    line-height: 1.3;

    text-decoration: none;

    transition: 0.4s ease;
}

.product-content h3 a:hover {
    color: var(--pri);
}

.product-content p {
    color: #64748b;

    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 28px;
}

/* BUTTON */

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #111827;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.4s ease;
}

.product-btn i {
    transition: 0.4s ease;
}

.product-btn:hover {
    color: var(--pri);
}

.product-btn:hover i {
    transform: translateX(8px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .products-section {
        padding: 80px 0;
    }

    .products-title h2 {
        font-size: 42px;
    }

    .product-img {
        height: 240px;
    }
}

@media(max-width:767px) {

    .products-title h2 {
        font-size: 32px;
    }

    .product-content {
        padding: 25px;
    }

    .product-content h3 a {
        font-size: 24px;
    }

    .product-img {
        height: 220px;
    }
}

.gas-category-section {
    position: relative;
    padding: 120px 0;
    background: #0c0f16;
    overflow: hidden;
}

/* Background Lines */

.bg-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

    background-size: 80px 80px;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Glow */

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 102, 0, 0.35);
    top: -100px;
    left: -100px;
    animation: float 6s infinite ease-in-out;
}

.glow-2 {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    right: -80px;
    bottom: -80px;
    animation: float 8s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* Heading */

.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

.mini-title {
    display: inline-block;
    color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 25px;
}

.section-header h2 {
    color: #fff;
    font-size: 55px;
    font-weight: 800;
    line-height: 1.2;
}

/* Card */

.gas-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: .5s;
    margin: 15px;
}

.gas-card:hover {
    transform: translateY(-15px);
}

/* Image */

.gas-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.gas-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.gas-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Overlay */

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9),
            rgba(255, 102, 0, 0.15));

    opacity: 0;
    transition: .5s;
}

.gas-card:hover .overlay {
    opacity: 1;
}

/* Circle Animation */

.circle-shape {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: -70px;
    right: -70px;
    transition: .5s;
}

.gas-card:hover .circle-shape {
    transform: scale(1.2) rotate(40deg);
}

/* Content */

.gas-content {
    position: relative;
    padding: 35px 30px;
    text-align: center;
}

.gas-content .icon {
    width: 75px;
    height: 75px;
    margin: auto;
    margin-top: -72px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    position: relative;
    z-index: 5;
}

.gas-content h3 {
    color: #fff;
    font-size: 27px;
    font-weight: 700;
}

/* Owl Dots */

.gas-category-slider .owl-dots {
    text-align: center;
    margin-top: 45px;
}

.gas-category-slider .owl-dot span {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2) !important;
    margin: 5px;
    transition: .4s;
}

.gas-category-slider .owl-dot.active span {
    width: 42px;
    border-radius: 30px;
    background: #ff6600 !important;
}

/* Center Active */

.gas-category-slider .owl-item.center .gas-card {
    transform: scale(1.04);
    border-color: rgba(255, 102, 0, 0.3);
}

/* Responsive */

@media(max-width:991px) {

    .section-header h2 {
        font-size: 40px;
    }

    .gas-image {
        height: 270px;
    }
}

@media(max-width:767px) {

    .gas-category-section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .gas-image {
        height: 230px;
    }

    .gas-content h3 {
        font-size: 22px;
    }
}

/*==================================
 COMPANY STATS SECTION
===================================*/

.company-stats-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #f7f8fc, #ffffff);
    overflow: hidden;
}

/* SHAPES */

.stats-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: rgba(255, 98, 0, 0.18);
    top: -120px;
    left: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 123, 255, 0.14);
    right: -80px;
    bottom: -100px;
    animation: floatShape 10s ease-in-out infinite;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* IMAGE */

.stats-image-box {
    position: relative;
    z-index: 2;
}

.stats-image-box img {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 3;
    animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6600, #ffb347);
    border-radius: 30px;
    top: 20px;
    left: 20px;
    z-index: 1;
    opacity: .25;
    filter: blur(20px);
}

/* FLOATING BADGE */

.company-stats-section .floating-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 5;
    animation: pulseBadge 3s infinite;
}

.company-stats-section .floating-badge i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6600, #ff9900);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.company-stats-section .floating-badge span {
    font-weight: 700;
    color: #111;
}

@keyframes pulseBadge {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* TIMELINE */

.modern-timeline {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
}

.timeline-line {
    position: absolute;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6600, #ffb347);
    border-radius: 50px;
    animation: lineMove 4s linear infinite;
}

@keyframes lineMove {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.timeline-dot {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 6px solid #ff6600;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.6);
    animation: pulseDot 2s infinite;
}

.dot-1 {
    top: 10%;
}

.dot-2 {
    top: 35%;
}

.dot-3 {
    top: 60%;
}

.dot-4 {
    top: 85%;
}

@keyframes pulseDot {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.2);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* CARDS */

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.stats-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.stats-icon {
    min-width: 75px;
    height: 75px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff6600, #ff9900);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    z-index: 2;
    animation: rotateIcon 5s linear infinite;
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stats-text {
    position: relative;
    z-index: 2;
}

.stats-text span {
    font-size: 15px;
    color: #777;
    display: block;
    margin-bottom: 5px;
}

.stats-text h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #111;
}

/* CARD GLOW */

.card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 102, 0, 0.12);
    border-radius: 50%;
    top: -70px;
    right: -70px;
    filter: blur(20px);
    transition: .5s;
}

.stats-card:hover .card-glow {
    transform: scale(1.4);
}

/* RESPONSIVE */

@media(max-width:991px) {

    .company-stats-section {
        padding: 80px 0;
    }

    .floating-badge {
        left: 20px;
        bottom: 20px;
        padding: 12px 18px;
    }

    .stats-card {
        padding: 22px;
    }

    .stats-text h3 {
        font-size: 20px;
    }
}

@media(max-width:767px) {

    .stats-card {
        flex-direction: column;
        text-align: center;
    }

    .floating-badge {
        position: relative;
        margin-top: 20px;
        left: 0;
        width: fit-content;
    }

    .stats-icon {
        margin-bottom: 10px;
    }
}

/*==================================
 CONTACT CTA SECTION
===================================*/

.contact-cta-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, #0f172a, #1e293b, #111827);
}

/* SHAPES */

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
}

.shape-1 {
    width: 320px;
    height: 320px;
    background: rgba(255, 102, 0, 0.28);
    top: -120px;
    left: -100px;
    animation: floatShape 7s ease-in-out infinite;
}

.shape-2 {
    width: 260px;
    height: 260px;
    background: rgba(0, 183, 255, 0.18);
    right: -80px;
    bottom: -100px;
    animation: floatShape 10s ease-in-out infinite;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* MAIN WRAPPER */

.contact-cta-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 60px;
    border-radius: 35px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

/* ANIMATED BORDER */

.contact-cta-wrapper::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 35px;
    padding: 2px;
    background: linear-gradient(90deg, #ff6600, #ffb347, #00c3ff, #ff6600);
    background-size: 300% 300%;
    animation: borderMove 6s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* LEFT CONTENT */

.cta-content {
    max-width: 650px;
}

.mini-text {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffb347;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 22px;
    animation: pulseMini 3s infinite;
}

@keyframes pulseMini {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

.cta-content h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}

/* BUTTONS */

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* BUTTON STYLE */

.cta-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 320px;
    padding: 22px 30px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    transition: .4s;
}

.cta-btn::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 100%;
    top: 0;
    left: -120%;
    background: rgba(255, 255, 255, 0.12);
    transform: skewX(-25deg);
    transition: .7s;
}

.cta-btn:hover::before {
    left: 120%;
}

/* PRIMARY */

.primary-btn {
    background: linear-gradient(135deg, #ff6600, #ff9900);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.35);
}

/* SECONDARY */

.secondary-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* HOVER */

.cta-btn:hover {
    transform: translateY(-10px) scale(1.03);
}

/* ICON */

.btn-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* TEXT */

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 3px;
}

.btn-text strong {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .contact-cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 45px 30px;
    }

    .cta-content h2 {
        font-size: 38px;
    }

    .cta-buttons {
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media(max-width:767px) {

    .contact-cta-section {
        padding: 70px 0;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-btn {
        min-width: 100%;
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .btn-text strong {
        font-size: 20px;
    }

    .btn-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }
}

/*===================================
WHY CHOOSE SECTION
LIGHT PREMIUM ORANGE + BLUE THEME
===================================*/

.why-choose-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        linear-gradient(135deg,
            rgba(255, 140, 0, .03),
            rgba(0, 102, 255, .03),
            #ffffff);
    z-index: 1;
}

/*========================
ANIMATED BACKGROUND
========================*/

.why-choose-section::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    background: rgba(255, 140, 0, .06);
    border-radius: 50%;
    top: -250px;
    left: -220px;
    animation: rotateGlow 18s linear infinite;
}

.why-choose-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(0, 102, 255, .06);
    border-radius: 50%;
    bottom: -220px;
    right: -180px;
    animation: rotateGlow 20s linear infinite reverse;
}

@keyframes rotateGlow {
    100% {
        transform: rotate(360deg);
    }
}

/*========================
SECTION TITLE
========================*/

.section-title {
    position: relative;
    z-index: 2;
}

.section-title .mini-title {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 140, 0, .12);
    color: #ff7a00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
    box-shadow: 0 5px 20px rgba(255, 140, 0, .08);
}

.section-title h2 {
    color: #0f172a;
    font-size: 55px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
}

/*========================
CARD DESIGN
========================*/

.choose-card {
    position: relative;
    padding: 45px 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(0, 0, 0, .04);
    overflow: hidden;
    transition: .5s ease;
    height: 100%;
    z-index: 2;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .05);
}

/* hover effect */

.choose-card:hover {
    transform: translateY(-18px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, .12),
        0 0 35px rgba(255, 140, 0, .10);
}

/* top border animation */

.choose-card::after {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #0066ff);
    transition: .6s;
}

.choose-card:hover::after {
    left: 0;
}

/*========================
GLOW LIGHT
========================*/

.hover-light {
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle,
            rgba(255, 140, 0, .22),
            transparent 70%);
    top: -80px;
    right: -80px;
    opacity: 0;
    transition: .6s;
}

.choose-card:hover .hover-light {
    opacity: 1;
    transform: scale(1.2);
}

/*========================
ICON BOX
========================*/

.choose-icon {
    width: 95px;
    height: 95px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ff8c00, #0066ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 12px 25px rgba(255, 140, 0, .18),
        0 8px 25px rgba(0, 102, 255, .15);
}

/* shine effect */

.choose-icon::before {
    content: "";
    position: absolute;
    width: 160%;
    height: 160%;
    background: rgba(255, 255, 255, .35);
    transform: rotate(45deg);
    left: -140%;
    top: -140%;
    transition: .8s;
}

.choose-card:hover .choose-icon::before {
    left: 100%;
    top: 100%;
}

.choose-icon img {
    width: 45px;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 2;
}

/*========================
NUMBER STYLE
========================*/

.choose-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 75px;
    font-weight: 900;
    color: rgba(0, 0, 0, .04);
    line-height: 1;
}

/*========================
TEXT STYLE
========================*/

.choose-card h3 {
    color: #0f172a;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.choose-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

/*========================
FLOATING ANIMATION
========================*/

.choose-card {
    animation: floatCard 4s ease-in-out infinite;
}

.choose-card:nth-child(2) {
    animation-delay: .5s;
}

.choose-card:nth-child(3) {
    animation-delay: 1s;
}

.choose-card:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/*========================
HOVER TEXT EFFECT
========================*/

.choose-card:hover h3 {
    color: #ff7a00;
    transition: .4s;
}

/*========================
RESPONSIVE
========================*/

@media(max-width:991px) {

    .why-choose-section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 40px;
    }

    .choose-card {
        padding: 35px 24px;
    }

}

@media(max-width:767px) {

    .why-choose-section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .choose-icon {
        width: 80px;
        height: 80px;
    }

    .choose-icon img {
        width: 38px;
    }

    .choose-card h3 {
        font-size: 22px;
    }

    .choose-number {
        font-size: 60px;
    }

}

/*========================================
   NEXT FEATURE SECTION
========================================*/

.next-feature-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
    z-index: 1;
}

/* animated grid bg */

.next-feature-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 102, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 119, 0, .05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: moveGrid 18s linear infinite;
    z-index: -2;
}

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

/* glowing circles */

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 136, 0, .18);
    top: -80px;
    left: -80px;
    animation: floatCircle 7s ease-in-out infinite;
}

.circle-2 {
    width: 350px;
    height: 350px;
    background: rgba(0, 102, 255, .14);
    bottom: -100px;
    right: -100px;
    animation: floatCircle 9s ease-in-out infinite;
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

/*========================================
   TITLE
========================================*/

.feature-title .mini-title {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 100px;
    background: rgba(255, 136, 0, .12);
    color: #ff7a00;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    position: relative;
}

.feature-title h2 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    color: #0c1e3c;
    margin: 0;
}

/*========================================
   UNIQUE FEATURE CARDS
========================================*/

.modern-feature-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    border-radius: 28px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: .5s ease;
    border: 1px solid rgba(255, 255, 255, .5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
}

/* left neon line */

.modern-feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ff7a00, #0057ff);
    transition: .5s;
}

/* animated hover glow */

.modern-feature-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 136, 0, .15);
    border-radius: 50%;
    right: -80px;
    top: -80px;
    transition: .5s;
}

/* hover */

.modern-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

.modern-feature-card:hover::after {
    transform: scale(1.4);
    background: rgba(0, 102, 255, .14);
}

/* icon */

.feature-icon {
    width: 95px;
    height: 95px;
    min-width: 95px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ff7a00, #0057ff);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: iconFloat 4s ease-in-out infinite;
}

/* glass shine */

.feature-icon::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .5),
            transparent);
    transform: rotate(25deg);
    animation: shineMove 4s linear infinite;
}

@keyframes shineMove {
    100% {
        transform: rotate(25deg) translate(200%, 200%);
    }
}

.feature-icon img {
    width: 48px;
    position: relative;
    z-index: 2;
    filter: brightness(0) invert(1);
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* text */

.feature-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0c1e3c;
}

.feature-content p {
    margin: 0;
    color: #5c6574;
    line-height: 1.8;
    font-size: 15px;
}

/* animated shape */

.card-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px dashed rgba(0, 102, 255, .15);
    border-radius: 50%;
    right: -30px;
    bottom: -30px;
    animation: rotateShape 12s linear infinite;
}

@keyframes rotateShape {
    100% {
        transform: rotate(360deg);
    }
}

/*========================================
   SHOWCASE IMAGE
========================================*/

.feature-showcase {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    min-height: 680px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .15);
}

.feature-showcase img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    transition: 1s;
}

.feature-showcase:hover img {
    transform: scale(1.08);
}

/* overlay */

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 20, 60, .95),
            rgba(0, 20, 60, .2));
}

/* floating badge */

.floating-badge {
    position: absolute;
    top: 35px;
    right: 35px;
    width: 170px;
    height: 170px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    z-index: 3;
    animation: badgeFloat 5s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.floating-badge i {
    font-size: 38px;
    color: #ff9d00;
    margin-bottom: 10px;
}

.floating-badge span {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

/* pulse ring */

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* showcase content */

.showcase-content {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 3;
    max-width: 480px;
}

.showcase-content span {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(255, 136, 0, .18);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #ffb347;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 18px;
}

.showcase-content h3 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 18px;
}

.showcase-content p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.8;
    margin-bottom: 28px;
}



/*========================================
   RESPONSIVE
========================================*/

@media(max-width:991px) {

    .feature-title h2 {
        font-size: 38px;
    }

    .feature-showcase {
        margin-top: 40px;
        min-height: auto;
    }

    .feature-showcase img {
        height: 500px;
    }

    .showcase-content h3 {
        font-size: 32px;
    }

    .modern-feature-card {
        padding: 25px;
    }
}

@media(max-width:767px) {

    .feature-title h2 {
        font-size: 30px;
    }

    .modern-feature-card {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin-bottom: 10px;
    }

    .feature-showcase img {
        height: 420px;
    }

    .floating-badge {
        width: 130px;
        height: 130px;
        right: 15px;
        top: 15px;
    }

    .showcase-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .showcase-content h3 {
        font-size: 26px;
    }
}

/*================================================
INDUSTRIES MODERN SECTION
================================================*/

.industries-modern-section {
    position: relative;
    overflow: hidden;
    background: #f5f9ff;
    z-index: 1;
}

/* bg animation */

.industry-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: floatCircle 8s infinite alternate ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 106, 0, 0.10);
    top: -100px;
    left: -80px;
}

.circle-2 {
    width: 350px;
    height: 350px;
    background: rgba(0, 98, 255, 0.10);
    bottom: -120px;
    right: -100px;
}

.industry-line {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 98, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 98, 255, .03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
}

/* title */

.industry-title .mini-title {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 106, 0, 0.12);
    color: #ff6a00;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
    font-size: 14px;
}

.industry-title h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #0b1c39;
}

/* slider */

.industries-slider .owl-stage-outer {
    padding: 20px 0;
}

/* card */

.industry-card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: .5s;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 98, 255, 0.08);
}

.industry-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

/* image */

.industry-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.industry-card:hover img {
    transform: scale(1.12) rotate(2deg);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 31, 90, .85),
            rgba(255, 106, 0, .15));
    opacity: .9;
}

/* icon */

.industry-icon {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .25);
    animation: pulseGlow 3s infinite;
}

.industry-icon i {
    font-size: 28px;
    color: #fff;
}

/* content */

.industry-content {
    position: relative;
    padding: 30px;
}

.industry-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0b1c39;
    margin-bottom: 15px;
    transition: .4s;
}

.industry-card:hover h3 {
    color: #ff6a00;
}

.industry-content p {
    color: #667085;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.industry-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    color: #0062ff;
    transition: .4s;
}

.industry-content a i {
    transition: .4s;
}

.industry-content a:hover {
    color: #ff6a00;
}

.industry-content a:hover i {
    transform: translateX(6px);
}

/* owl dots */

.industries-slider .owl-dots {
    text-align: center;
    margin-top: 35px;
}

.industries-slider .owl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #c7d9ff !important;
    margin: 0 6px;
    transition: .4s;
}

.industries-slider .owl-dot.active {
    width: 40px;
    border-radius: 30px;
    background: linear-gradient(90deg, #ff6a00, #0062ff) !important;
}

/* owl nav */

.industries-slider .owl-nav {
    margin-top: 25px;
    text-align: center;
}

.industries-slider .owl-nav button {
    width: 55px;
    height: 55px;
    border-radius: 50% !important;
    background: #fff !important;
    margin: 0 10px;
    font-size: 22px !important;
    color: #0b1c39 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.industries-slider .owl-nav button:hover {
    background: linear-gradient(135deg, #ff6a00, #0062ff) !important;
    color: #fff !important;
    transform: translateY(-5px);
}

/* animations */

@keyframes floatCircle {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(40px);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, .4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 106, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
    }
}

/* responsive */

@media(max-width:991px) {

    .industry-title h2 {
        font-size: 38px;
    }

}

@media(max-width:767px) {

    .industry-title h2 {
        font-size: 30px;
    }

    .industry-content {
        padding: 24px;
    }

    .industry-content h3 {
        font-size: 22px;
    }

}

/*========================================
MODERN CONTACT SECTION
========================================*/

.modern-contact-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #001b44, #002b66);
    z-index: 1;
}

/* animated grid */

.contact-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);

    background-size: 60px 60px;
    z-index: -1;
}

/* glow */

.contact-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
}

.glow-1 {
    width: 350px;
    height: 350px;
    background: rgba(255, 106, 0, .30);
    top: -100px;
    left: -100px;
    animation: floatGlow 8s infinite alternate;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 98, 255, .25);
    bottom: -120px;
    right: -100px;
    animation: floatGlow 10s infinite alternate;
}

/* form wrapper */

.contact-form-wrapper {
    position: relative;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    border-radius: 35px;
    padding: 50px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

/* shine effect */



/* heading */

.contact-head {
    margin-bottom: 40px;
}

.contact-head .mini-title {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 106, 0, .18);
    color: #ffb37d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.contact-head h2 {
    color: #fff;
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-head p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    font-size: 16px;
}

/* input */

.input-box {
    position: relative;
    margin-bottom: 24px;
}

.input-box i {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #ff8c3a;
    font-size: 16px;
    z-index: 2;
}

.input-box input,
.input-box select,
.input-box textarea {
    width: 100%;
    height: 65px;
    border: none;
    outline: none;
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    padding-left: 55px;
    padding-right: 20px;
    color: #fff;
    font-size: 15px;
    transition: .4s;
}

.input-box textarea {
    height: 160px;
    padding-top: 20px;
    resize: none;
}

.input-box input::placeholder,
.input-box textarea::placeholder {
    color: rgba(255, 255, 255, .60);
}

.input-box select {
    color: rgba(255, 255, 255, .75);
}

.input-box option {
    color: #000;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
    border-color: #ff6a00;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 106, 0, .25);
}

.modern-contact-form .thm-btn {
    outline: none;
    box-shadow: none;
    border: none;
}

/* image side */

.contact-image-box {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    min-height: 720px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.contact-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .8),
            rgba(0, 0, 0, .15));
}

/* floating support card */

.floating-contact-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
}

.call-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6a00, #0062ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
    animation: pulseRing 2.5s infinite;
}

.call-icon i {
    color: #fff;
    font-size: 32px;
}

.floating-contact-card h4 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.floating-contact-card p {
    color: rgba(255, 255, 255, .75);
    margin: 0;
}

/* floating badge */

.floating-badge {
    position: absolute;
    top: 35px;
    right: 35px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: rotateBadge 8s linear infinite;
}

.floating-badge i {
    font-size: 30px;
    color: #ffb37d;
    margin-bottom: 10px;
}

.floating-badge span {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

/* animations */

@keyframes floatGlow {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(40px);
    }
}

@keyframes shineMove {
    0% {
        left: -40%;
    }

    100% {
        left: 140%;
    }
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, .5);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(255, 106, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
    }
}

@keyframes rotateBadge {
    100% {
        transform: rotate(360deg);
    }
}

/* responsive */

@media(max-width:991px) {

    .contact-head h2 {
        font-size: 38px;
    }

    .contact-image-box {
        min-height: 500px;
        margin-top: 40px;
    }

}

@media(max-width:767px) {

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-head h2 {
        font-size: 30px;
    }

    .floating-contact-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 20px;
    }

    .floating-contact-card h4 {
        font-size: 22px;
    }

}

/* ----------------testimonial section ---------------- */

.testimonial-section {
    background: linear-gradient(135deg, #eef3ff, #f9fbff);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial-two__shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes topBottom {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

.testimonial-two__shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    animation: leftRight 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes leftRight {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translate(10px);
    }

    100% {
        transform: translate(0);
    }
}

.testimonial-two__shape-1 img,
.testimonial-two__shape-2 img {
    width: auto;
}

/* background glow shapes */
.testimonial-section::before,
.testimonial-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #4f7cff33;
    filter: blur(80px);
    z-index: 0;
}

.testimonial-section::before {
    top: -50px;
    left: -80px;
}

.testimonial-section::after {
    bottom: -80px;
    right: -80px;
}

.section-title {
    position: relative;
    z-index: 2;
}

.sub-title {
    background: #4f7cff;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
}

.section-title h2 {
    font-weight: 700;
    margin-top: 15px;
}

.section-title h2 span {
    color: #4f7cff;
}

/* Card */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    margin: 15px;
    transition: 0.4s;
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* quote icon */
.quote-icon {
    font-size: 40px;
    color: #4f7cff;
    position: absolute;
    top: 10px;
    right: 20px;
    opacity: 0.2;
}

/* text */
.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* client */
.testimonial-card .client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-card .client-info .image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 12px;
    border: 3px solid #4f7cff;
    overflow: hidden;
}

.testimonial-card .client-info img {
    width: 100%;
    height: 100%;
}

/* owl dots */
.testimonial-section .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.testimonial-section .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    margin: 5px;
    transition: 0.3s;
}

.testimonial-section .owl-dot.active span {
    background: #4f7cff;
    transform: scale(1.3);
}

/* -------------------faq section -------------- */
.faqSection {
    position: relative;
    padding: 90px 0;
    overflow: hidden;

    /* BLUE GRADIENT BACKGROUND */
    background: linear-gradient(135deg, #0b1b3a, #1e2a78, #0d3b66);
}

/* animated moving light effect */
.faqSection::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.25), transparent 60%);
    top: -150px;
    left: -150px;
    animation: floatGlow 8s ease-in-out infinite;
}

.faqSection::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 60%);
    bottom: -150px;
    right: -150px;
    animation: floatGlow 10s ease-in-out infinite;
}

/* glow animation */
@keyframes floatGlow {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.1);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

/* container above background */
.faqSection .container {
    position: relative;
    z-index: 2;
}

/* LEFT IMAGE BOX */
.faqImageBox {
    position: relative;
    animation: fadeLeft 1s ease;
}

.faqImageBox img {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* floating shapes */
.floatingShape {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6a00, #ffb703);
    opacity: 0.4;
    filter: blur(2px);
    animation: floatShape 6s infinite ease-in-out;
}

.shape1 {
    top: 20px;
    left: -20px;
}

.shape2 {
    bottom: 20px;
    right: -20px;
    animation-delay: 2s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* HEADING */
.faqHeading span {
    color: #ffb703;
    font-weight: 600;
    letter-spacing: 1px;
}

.faqHeading h2 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
}

/* ACCORDION CARD */
.faqAccordion .accordion-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: fadeUp 0.8s ease;
}

/* BUTTON */
.faqAccordion .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 18px;
    box-shadow: none;
}

.faqAccordion .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #ff6a00, #1e2a78);
    color: #fff;
}

/* BODY */
.accordion-body {
    color: #dbeafe;
    line-height: 1.6;
    background: transparent;
}

/* ANIMATIONS */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
        MODERN FOOTER
========================= */

.modern-footer-section {
    position: relative;
    overflow: hidden;
    background: #07152f;
}

/* MAP */

.footer-map-area {
    position: relative;
    overflow: hidden;
}

.footer-map-area iframe {
    filter: grayscale(20%) contrast(1.1);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(7, 21, 47, .2),
            rgba(7, 21, 47, .7));
}

/* -------------------services page details ------------- */

.page-header {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.page-header__bg {
    background-image: url(/image/Gas\ Burner.png);
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-header__bg:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #05173d80, #002572e6);
}

.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
    padding: 175px 0;
    z-index: 1;
}

.page-header__img-1 {
    position: absolute;
    top: 95px;
    right: 20px;
    border-radius: 50%;
}

.page-header__img-1 {
    position: absolute;
    top: 95px;
    right: 20px;
    border-radius: 50%;
}

.page-header__img-1:before {
    content: "";
    position: absolute;
    inset: -14px;
    border: 14px double rgba(255, 255, 255, .15);
    border-radius: 50%;

    animation: borderBlink 1.5s infinite;

}

/* rotation */
/* blink effect */
@keyframes borderBlink {
    0% {
        opacity: 0.2;
        border-color: rgba(255, 106, 0, 0.2);
        transform: scale(1);
    }

    50% {
        opacity: 1;
        border-color: rgba(255, 106, 0, 0.9);
        transform: scale(1.02);
    }

    100% {
        opacity: 0.2;
        border-color: rgba(255, 106, 0, 0.2);
        transform: scale(1);
    }
}

.page-header__img-1 img {
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 50%;
}

.page-header__inner h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 66px;
    color: var(--white);
    text-transform: capitalize;
    margin-bottom: 10px;
}

.thm-breadcrumb__box {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.thm-breadcrumb {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-left: 0;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #e7e7e7;
    text-transform: uppercase;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.thm-breadcrumb li a {
    color: #fff;
    text-decoration: none;
}

/* ------------details section -------------- */
.services-details {
    position: relative;
    display: block;
    /* padding: 120px 0 0; */
    z-index: 1;
}

.services-details__left {
    position: relative;
    display: block;
}

.services-details__title-1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 56px;
    letter-spacing: -.03em;
}

.services-details__text-1 {
    margin-top: 18px;
    margin-bottom: 48px;
}

.services-details__img-box {
    height: 300px;
}

.services-details__img-box img,
.services-details__points-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-details__img-box,
.services-details__img {
    position: relative;
    display: block;
    height: 300px;
}

.services-details__points-img {
    height: 200px;
}

.services-details__img img {
    width: 100%;
    border-radius: 20px;
}

.services-details__title-2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -.03em;
    margin: 50px 0 21px;
}

.services-details__points-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 45px;
    margin: 28px 0 42px;
}

.services-details__points {
    position: relative;
    display: block;
}

.services-details__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.services-details__points li .icon {
    position: relative;
    display: inline-block;
}

.services-details__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--Blucolor);
}

.services-details__points-list-3 li {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.services-details__points-list-3 li .icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Blucolor);
    color: #fff;
    border-radius: 5px;
}


.services-details__right {
    position: relative;
    display: block;
    margin-left: 54px;
}

.services-details__service-list-box {
    position: relative;
    display: block;
    border: 1px solid #E7E7E7;
    background-color: #f36f1119;
    border-radius: 16px;
    padding: 40px 25px 30px;
    margin-bottom: 50px;
}

.services-details__service-list-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    font-family: var(--Freshflow-font);
    text-transform: uppercase;
    margin-bottom: 21px;
}

.services-details__service-list li {
    margin: 10px 0;
}

.services-details__service-list li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    color: var(--Freshflow-black);
    border: 1px solid #D5D5FF;
    border-radius: 8px;
    padding: 17px 20px;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.services-details__service-list li:hover a,
.services-details__service-list li.active a {
    color: var(--white);
}

.services-details__service-list li a:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background-color: var(--Blucolor);
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scaleY(0);
    z-index: -1;
}

.services-details__service-list li:hover a:before,
.services-details__service-list li.active a:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    transform-origin: top center;
}

.project-details__get-touch {
    background: linear-gradient(135deg, #0b1b3a, #1e2a78);
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: fadeUp 1s ease;
}

/* image */
.project-details__get-touch-img-1 img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* title */
.project-details__get-touch-title {
    font-size: 20px;
    margin-bottom: 15px;
}

/* form */
.getTouchForm input,
.getTouchForm textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: none;
    border-radius: 8px;
    outline: none;
}

/* textarea */
.getTouchForm textarea {
    height: 90px;
    resize: none;
}

/* button */
.getTouchForm .thm-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #ff6a00, #ffb703);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.getTouchForm .thm-btn:hover {
    transform: translateY(-3px);
}

/* call box */
.project-details__call-box {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.project-details__call-icon {
    font-size: 22px;
    color: #ff6a00;
}

.services-details__points .icon,
.services-details__services-icon {
    width: 38px;
    height: 38px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 106, 0, 0.12);
    color: #ff6a00;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
}

.services-details__points .icon:hover,
.services-details__services-icon:hover {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 106, 0, 0.25);
}

/* animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .services-details__right {
        margin-left: 0;
    }

    .page-header__inner {
        padding: 140px 0;
    }

    .page-header__inner h2 {
        font-size: 40px;
        line-height: 50px;
    }

    /* image reposition */
    .page-header__img-1 {
        top: 60px;
        right: 10px;
    }
}

@media (max-width: 768px) {

    .page-header__inner {
        padding: 120px 0;
    }

    .page-header__inner h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .thm-breadcrumb li {
        font-size: 14px;
    }

    /* image center & reduce */
    .page-header__img-1 {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto 0;
        display: flex;
        justify-content: center;
    }

    .page-header__img-1 img {
        width: 70px;
        height: 70px;
    }

    .services-details__title-1 {
    font-size: 26px;
    line-height: 35px;
}
.services-details__img-box,
 .services-details__img{
    height: auto;
}
}

@media (max-width: 576px) {

    .page-header__inner {
        padding: 100px 15px;
    }

    .page-header__inner h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .thm-breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .thm-breadcrumb li {
        font-size: 13px;
    }
}

/* =================FOOTER================ */

.whatsapp_icon {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 999;
}

/* main button */
.whatsapp_icon a {
    width: 60px;
    height: 60px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    position: relative;
    animation: bounce 2s infinite;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
}

.whatsapp_icon a:hover {
    transform: scale(1.15);
    background: #1ebe5d;
}

.whatsapp_icon a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: pulse 1.8s infinite;
    z-index: -1;
}

/* bounce animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.call_icon{
    position: fixed;
    bottom: 95px; 
    left: 25px;
    z-index: 999;
}

.call_icon a{
    width: 60px;
    height: 60px;
    background: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    position: relative;
    animation: bounce1 2s infinite;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

/* hover effect */
.call_icon a:hover{
    transform: scale(1.15);
    background: #0062cc;
}

/* pulse ring */
.call_icon a::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.4);
    animation: pulse 1.8s infinite;
    z-index: -1;
}

/* bounce */
@keyframes bounce1{
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* pulse */
@keyframes pulse{
    0%{
        transform: scale(1);
        opacity: 0.7;
    }
    100%{
        transform: scale(1.8);
        opacity: 0;
    }
}

.main-footer {
    position: relative;
    margin-top: -80px;
    z-index: 2;
    padding: 0 0 30px;
}

/* SHAPES */

.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
    animation: floatShape 8s infinite ease-in-out;
}

.shape-1 {
    width: 320px;
    height: 320px;
    background: #ff7a00;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 280px;
    height: 280px;
    background: #0057ff;
    right: -80px;
    bottom: 50px;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* TOP BAR */

.footer-top-bar {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 70px;
    position: relative;
    overflow: hidden;
}

.footer-top-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg,
            rgba(255, 122, 0, .15),
            rgba(0, 87, 255, .15));
}

.connect-content {
    position: relative;
    z-index: 2;
}

.mini-title {
    color: #ff7a00;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.connect-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.connect-content p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    margin: 0;
}

.top-contact-box {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.top-contact-box a {
    background: linear-gradient(135deg, #ff7a00, #ff9b3d);
    padding: 16px 24px;
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(255, 122, 0, .25);
}

.top-contact-box a:last-child {
    background: linear-gradient(135deg, #0057ff, #2c7cff);
    box-shadow: 0 10px 30px rgba(0, 87, 255, .25);
}

.top-contact-box a:hover {
    transform: translateY(-5px);
}

.top-contact-box i {
    margin-right: 10px;
}

/* MAIN ROW */

.footer-main-row {
    padding-bottom: 50px;
}

/* WIDGET */

.footer-widget {
    position: relative;
    z-index: 2;
}

.footer-logo {
    width: 180px;
    margin-bottom: 25px;
}

.footer-about {
    color: rgba(255, 255, 255, .72);
    line-height: 1.9;
    margin-bottom: 30px;
}

/* SOCIAL */

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .4s;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #ff7a00, #0057ff);
    transform: translateY(-6px) rotate(360deg);
}

/* HEADINGS */

.footer-widget h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 14px;
}

.footer-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    border-radius: 50px;
    background: linear-gradient(to right, #ff7a00, #0057ff);
}

/* LINKS */

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    transition: .4s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(10px);
}

.footer-links i {
    color: #ff7a00;
}

/* CONTACT */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item .icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, #ff7a00, #0057ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

.contact-item .text {
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
}

/* COPYRIGHT */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    padding-top: 30px;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .footer-top-bar {
        padding: 35px;
    }

    .connect-content h2 {
        font-size: 32px;
    }

    .top-contact-box {
        margin-top: 30px;
    }

    .footer-widget {
        margin-bottom: 40px;
    }
}

@media(max-width:767px) {

    .footer-top-bar {
        padding: 25px;
        border-radius: 20px;
    }

    .connect-content h2 {
        font-size: 26px;
    }

    .top-contact-box a {
        font-size: 14px;
        padding: 14px 18px;
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .contact-item {
        flex-direction: column;
    }
}