:root {
    --primary-color: #ff0000;
    --dark-primary-color: #be0000;
    --btn-hover-color: #8e0000;
    --black: #000;
    --secondary-black: #1a1a1a;
    --white: #ffffff;
    --service-red: #e62222;
    --dark-bg: #11141a;
    --dark-maroon: #800000;
    --footer-bg: #250000;
    --footer-text-color: #a69898;
    --footer-heading: #f2eae1;
}

html,
body {
    overflow-x: hidden;
}

/* ==========================
   NAVBAR
========================== */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    transition: all .45s ease;
    z-index: 999;
}

.custom-navbar.scrolled {
    background: var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    padding: 12px 0;
}

.logo-black {
    display: none;
}

.custom-navbar.scrolled .logo-white {
    display: none;
}

.custom-navbar.scrolled .logo-black {
    display: block;
}

/* Logo */
.logo {
    height: 50px;
    transition: .4s;
}

.custom-navbar.scrolled .logo {
    height: 50px;
}

/* Menu */
.navbar-nav {
    gap: 15px;
}

.nav-link {
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 15px 3px !important;
    transition: .35s;
}

.custom-navbar.scrolled .nav-link {
    color: #111 !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: .35s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link:hover::after {
    width: 70%;
}

/* ==========================
      BUTTON
========================== */

.connect-btn {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;

}

.custom-navbar.scrolled .connect-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);

}

.connect-btn:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}


@media(max-width: 1200px) {
    .connect-btn {
        border: 1px solid var(--white);
        color: var(--white);
        padding: 12px 10px;
        border-radius: 50px;
        font-weight: 600;
        transition: .35s;

    }

    .navbar-nav {
        gap: 8px;
    }

}

@media(max-width: 1100px) {
    .connect-btn {
        padding: 10px 8px;

    }

    .navbar-nav {
        gap: 6px;
    }

}

/* ==========================
      DROPDOWN
========================== */

.dropdown-menu {
    border: none;
    padding: 0;
    min-width: 260px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    display: block;
    transform: translateY(20px) scale(.95);
    transition: .35s;
    border-radius: 0 !important;
}

/* Desktop Hover */

@media(min-width:992px) {
    .custom-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
}

.dropdown-item {
    padding: 13px 22px;
    transition: .3s;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #fff4f4;
    color: var(--dark-primary-color);
    padding-left: 28px;
}

/* ==========================
      TOGGLER
========================== */

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon-custom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.navbar-toggler-icon-custom span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: .35s;
}

.custom-navbar.scrolled .navbar-toggler-icon-custom span {
    background: #111;
}

@media(max-width:991px) {

    .navbar-collapse {
        background: var(--white);
        margin-top: 20px;
        border-radius: 18px;
        padding: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    }

    .nav-link {

        color: #111 !important;
        padding: 14px 0 !important;
    }

    .connect-btn {

        display: block;
        text-align: center;
        margin-top: 15px;
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        padding-left: 10px;
    }

    .dropdown-menu.show {
        display: block;
    }

}


/*=========================================
    MOBILE Navbar
=========================================*/

.mobile-menu {
    width: 290px !important;
    border: 0 !important;
    background: var(--white);
}

.mobile-menu .offcanvas-header {
    padding: 20px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.mobile-menu .logo {
    height: 40px;
}

.mobile-menu .btn-close {
    box-shadow: none;
    opacity: 1;
    font-size: 14px;
}

.mobile-menu .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0 20px;
}

.mobile-nav li {
    border-bottom: 1px solid #f2f2f2;
}

.mobile-nav li:last-child {
    border-bottom: 0;
}

.mobile-nav a,
.mobile-dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    background: none;
    border: none;
    transition: .3s;
}

.mobile-nav a:hover,
.mobile-dropdown-btn:hover {

    color: var(--primary-color);

}

.mobile-dropdown-btn i {
    font-size: 13px;
    transition: .35s;
}

.mobile-dropdown.active .mobile-dropdown-btn i {
    transform: rotate(180deg);

}

.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    background: #fef7f7;
}

.mobile-submenu li {
    border: none;
}

.mobile-submenu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--secondary-black);
}

.mobile-submenu a:hover {
    color: var(--dark-primary-color);
    padding-left: 28px;
}

/*==========================
      BUTTON
==========================*/

.mobile-btn {
    width: 60%;
    margin: 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-align: center;
    border-radius: 50px;
    padding: 10px;
}

.mobile-btn:hover {
    background: var(--primary-color);
    color: var(--white) !important;

}

/*==========================
      SOCIAL
==========================*/

.mobile-social {
    padding: 10px 20px;
    display: flex;
    gap: 15px;

}

.mobile-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcf3f3f8;
    color: var(--dark-primary-color);
    transition: .3s;
    text-decoration: none;

}

.mobile-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);

}

/*==========================
    DESKTOP
==========================*/

@media(min-width:992px) {

    .mobile-menu {
        display: none;
    }

}

/* Active Page style */
.navbar-nav .nav-item.active .nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Active Dropdown */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    background: rgba(230, 34, 34, 0.08);
    color: var(--dark-primary-color);
}

/* Mobile */
.mobile-nav li.active>a {
    color: var(--dark-primary-color);
    font-weight: 600;
}

.mobile-dropdown.active .mobile-dropdown-btn {
    color: var(--dark-primary-color);
    font-weight: 600;
}

.mobile-submenu li.active>a,
.mobile-submenu a.active {
    color: var(--dark-primary-color);
    font-weight: 600;
    background: rgba(230, 34, 34, 0.08);
    border-radius: 6px;
    padding-left: 20px;
}

/*=================================
White background Navbar section
=================================== */
.terms-navbar {
    background: var(--white) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.terms-navbar .nav-item>a {
    color: #111 !important;
}

.terms-navbar .nav-item>a:hover,
.terms-navbar .nav-item>a.active {
    color: var(--primary-color) !important;
}

.terms-navbar .nav-item .connect-btn,
.terms-navbar .connect-btn.btn {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-color) !important;
}

.terms-navbar .nav-item .connect-btn:hover,
.terms-navbar .connect-btn.btn:hover {
    background-color: #111 !important;
    color: var(--white) !important;
    border-color: #111 !important;
}

/* Mobile */
.terms-mobile-navbar .btn-close {
    background-image: var(--bs-btn-close-bg) !important;
    filter: brightness(0) !important;
    opacity: 1 !important;
}


@media (max-width: 991.98px) {

    .terms-navbar .navbar-toggler-icon-custom span {
        background: #000 !important;
    }

}

/*==============================
    HERO BANNER SECTION
==============================*/

.hero-section,
.heroSwiper,
.swiper-slide {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 7s ease;
}

.swiper-slide-active .hero-bg {
    transform: scale(1.12);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .78) 0%,
            rgba(0, 0, 0, .45) 45%,
            rgba(0, 0, 0, .65) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 720px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .92);
}

.hero-content h1,
.hero-content p {
    opacity: 0;
    transform: translateY(80px);
}

.swiper-slide-active .hero-content h1 {
    animation: textUp .9s ease forwards;
}

.swiper-slide-active .hero-content p {
    animation: textUp .9s .25s ease forwards;
}

@keyframes textUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/*==============================
        PAGINATION
==============================*/

.hero-section .swiper-pagination {

    bottom: 35px !important;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

}

.swiper-pagination-bullet {

    width: 8px;

    height: 8px;

    margin: 0 !important;

    border-radius: 50%;

    background: var(--white);

    opacity: .45;

    transition: all .35s ease;

}

.swiper-pagination-bullet-active {

    width: 28px;

    border-radius: 30px;

    background: var(--primary-color);

    opacity: 1;

}


@media(max-width:991px) {

    .hero-section,
    .heroSwiper,
    .swiper-slide {

        height: 90vh;

    }

    .hero-content {

        max-width: 100%;

    }

    .hero-content h1 {

        font-size: 48px;

    }

    .hero-content p {

        font-size: 18px;

    }

}

@media(max-width:767px) {

    .hero-section,
    .heroSwiper,
    .swiper-slide {

        height: 80vh;

    }

    .hero-section .container {

        justify-content: center;

        text-align: center;

    }

    .hero-content h1 {

        font-size: 34px;

        line-height: 1.2;

    }

    .hero-content p {

        font-size: 16px;

        line-height: 1.7;

    }

    .hero-section .swiper-pagination {

        bottom: 20px !important;

    }

}


/*==================================
        INNER BANNER
==================================*/

.inner-banner {

    position: relative;

    height: 50vh;

    min-height: 420px;

    overflow: hidden;

    display: flex;

    align-items: center;

}

.inner-banner-bg {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    animation: bannerZoom 15s ease-in-out infinite alternate;

}

@keyframes bannerZoom {

    from {

        transform: scale(1);

    }

    to {

        transform: scale(1.12);

    }

}

.inner-banner-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to right,
            rgba(0, 0, 0, .72),
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .65));

}

.inner-banner .container {

    position: relative;

    z-index: 2;

}

.inner-banner-content {

    color: var(--white);

    max-width: 700px;

    padding-top: 90px;

}

.page-subtitle {

    display: inline-block;

    color: var(--primary-color);

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 15px;

}

.inner-banner-content h1 {

    font-size: 60px;

    font-weight: 700;

    margin-bottom: 20px;

}

.breadcrumb-custom {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;

}

.breadcrumb-custom a {

    color: var(--white);

    text-decoration: none;

    transition: .3s;

}

.breadcrumb-custom a:hover {

    color: var(--primary-color);

}

.breadcrumb-custom span {

    color: #ddd;

}

@media(max-width:991px) {

    .inner-banner {

        height: 42vh;

        min-height: 340px;

    }

    .inner-banner-content {

        padding-top: 70px;

    }

    .inner-banner-content h1 {

        font-size: 42px;

    }

}

@media(max-width:767px) {

    .inner-banner {

        height: 38vh;

        min-height: 300px;

    }

    .inner-banner-content {

        text-align: center;

        padding-top: 60px;

    }

    .inner-banner-content h1 {

        font-size: 34px;

    }

    .page-subtitle {

        font-size: 12px;

        letter-spacing: 2px;

    }

    .breadcrumb-custom {

        justify-content: center;

        font-size: 14px;

    }

}

/* ================= SERVICES ================= */
.trading-section {
    height: 80vh;
    background-color: #ececec;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-transform: capitalize;
}

.trading-cta {
    text-align: center;
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: var(--white);
    padding: 50px 20px;
    border-radius: 12px;
}

.trading-cta h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.trading-cta p {
    font-size: 16px;
    margin-bottom: 25px;
}

.trading-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--white);
    color: #0d47a1;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.trading-btn:hover {
    background: #e3f2fd;
}

/* Title Section Dark Theme */
.section-title-wrapper-dark .sub-title-dark {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    display: block;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title-wrapper-dark .main-title-dark {
    color: var(--white);
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

@media(max-width:767px) {

    .section-title-wrapper-dark .main-title-dark {
        font-size: 38px;
    }
}

.section-title-wrapper-dark .main-title-dark span {
    color: var(--primary-color);
}

.title-separator-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.title-separator-dark-left-align {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 15px;
}

.title-separator-dark .dots-dark {
    display: flex;
    gap: 6px;
}

.title-separator-dark .dots-dark span {
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
}

.title-separator-dark .line-dark {
    width: 120px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
}

/* Title Section Light Theme*/
.section-title-wrapper .sub-title {
    font-size: 20px;
    font-weight: 600;
    display: block;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--dark-primary-color);
}

.section-title-wrapper .main-title {
    color: var(--dark-bg);
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-title-wrapper .main-title span {
    color: var(--dark-primary-color);
}

.title-separator {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 15px;
}

.title-separator-center-align {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.title-separator .dots {
    display: flex;
    gap: 6px;
}

.title-separator .dots span {
    width: 6px;
    height: 6px;
    background-color: var(--dark-primary-color);
    border-radius: 50%;
}

.title-separator .line {
    width: 120px;
    height: 3px;
    background-color: var(--dark-primary-color);
    border-radius: 2px;
}

/* =========================
 Service section 
============================ */
.services-section {
    background-color: var(--dark-bg);
    padding: 100px 0;
    overflow: hidden;
}

.services-section-inner {
    background-color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.service-card {
    position: relative;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px 30px 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: scale(1) grayscale(0.2);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
    z-index: 1;
}

.card-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 12, 16, 0.9) 0%,
            rgba(10, 12, 16, 0.4) 0%,
            transparent 100%);
    z-index: 2;
    transition: all 0.5s ease;
}

.service-card:hover .card-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 12, 16, 0.95) 15%, rgba(10, 12, 16, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.service-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: rgba(230, 34, 34, 0.15);
    border: 1px solid rgba(230, 34, 34, 0.3);
    color: var(--service-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: all 0.4s ease;
}

.service-content h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: -20px;
    transition: color 0.3s ease;
}

.service-content p {
    color: #b0b4bc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-bottom 0.5s ease;
}

.service-link {
    color: var(--service-red);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 34, 34, 0.4);
    box-shadow: 0 20px 40px rgba(230, 34, 34, 0.15);
    padding: 30px;
}

.service-card:hover .card-bg-img {
    transform: scale(1.1);
    filter: scale(1.1) grayscale(0);
}

.service-card:hover .service-icon {
    background: var(--service-red);
    color: var(--white);
    transform: rotateY(180deg);
    margin-bottom: 15px;
}

.service-card:hover .service-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card:hover .service-content p {
    max-height: 80px;
    opacity: 1;
    margin-bottom: 15px;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

/* Hover Dot */
.border-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 5;
    pointer-events: none;
    opacity: 0.6;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot-left {
    bottom: -10px;
    left: calc(50% - 10px);
}

.dot-right {
    bottom: -10px;
    left: 50%;
}

.service-card:hover .dot-left {
    animation: smoothMoveLeft 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 1;
}

.service-card:hover .dot-right {
    animation: smoothMoveRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 1;
}


@keyframes smoothMoveLeft {
    0% {
        bottom: 0;
        left: calc(50% - 10px);
        box-shadow: none;
    }

    30% {
        bottom: 0;
        left: 0;
    }

    70% {
        bottom: calc(100% - 10px);
        left: 0;
    }

    100% {
        bottom: calc(100% - 10px);
        left: calc(50% - 10px);
    }
}

@keyframes smoothMoveRight {
    0% {
        bottom: 0;
        left: 50%;
        box-shadow: none;
    }

    30% {
        bottom: 0;
        left: calc(100% - 10px);
    }

    70% {
        bottom: calc(100% - 10px);
        left: calc(100% - 10px);
    }

    100% {
        bottom: calc(100% - 10px);
        left: 50%;
    }
}

@media (max-width:991px) {
    .services-section {
        padding: 60px 0;
    }

    .service-card {
        transform: none;
        padding: 30px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .4);
        border-color: rgba(255, 255, 255, .05);
    }

    .service-content h3 {
        color: var(--white);
        margin-bottom: 0;
    }

    .service-content p {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin-bottom: 0;
    }

    .service-link {
        opacity: 0;
        transform: translateY(10px);
    }

    .border-dot {
        opacity: 0;
    }

    .section-title-wrapper .main-title {
        font-size: 38px;
    }

    .service-content p {
        max-height: 100px;
        opacity: 1;
        margin-bottom: 15px;
    }
}

/* Mobile scroll action */
@media (max-width: 991px) {
    .service-card.active-scroll .card-gradient-overlay {
        background: linear-gradient(to top, rgba(10, 12, 16, 0.95) 15%, rgba(10, 12, 16, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
        opacity: 1;
    }

    .service-card.active-scroll {
        transform: translateY(-8px);
        border-color: rgba(230, 34, 34, 0.4);
        box-shadow: 0 20px 40px rgba(230, 34, 34, 0.15);
        padding: 30px;
    }

    .service-card.active-scroll .card-bg-img {
        transform: scale(1.1);
        filter: scale(1.1) grayscale(0);
    }

    .service-card.active-scroll .service-icon {
        background: var(--service-red);
        color: var(--white);
        transform: rotateY(180deg);
        margin-bottom: 15px;
    }

    .service-card.active-scroll .service-content h3 {
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .service-card.active-scroll .service-content p {
        max-height: 80px;
        opacity: 1;
        margin-bottom: 15px;
    }

    .service-card.active-scroll .service-link {
        opacity: 1;
        transform: translateY(0);
    }

    .service-card.active-scroll .dot-left {
        animation: smoothMoveLeft 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        opacity: 1;
    }

    .service-card.active-scroll .dot-right {
        animation: smoothMoveRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        opacity: 1;
    }
}

/* ==========================
 About us 
============================= */
.about-section {
    background-color: var(--white);
    overflow: hidden;
    padding: 50px 0;
}

.about-lead-text {
    font-size: 17px;
    line-height: 1.5;
}

.about-image-collage {
    position: relative;
    overflow: hidden;
    height: 520px;
    width: 100%;
}

.collage-img {
    position: absolute;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #eee;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collage-img:hover img {
    transform: scale(1.06);
}

.img-main {
    width: 60%;
    height: 340px;
    left: 10%;
    top: 5%;
    z-index: 2;
}

.img-top-left {
    width: 35%;
    height: 260px;
    left: 0;
    top: -60px;
    z-index: 1;

}

.img-top-right {
    width: 40%;
    height: 200px;
    right: 0;
    top: 0;
    z-index: 1;
}

.img-floating-moving {
    width: 45%;
    height: 240px;
    right: 5%;
    bottom: 5%;
    z-index: 4;
    border: 6px solid var(--white);
    animation: luxuriousFloatingMotion 5s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(230, 34, 34, 0.2);
}

.img-bottom-left {
    width: 35%;
    height: 160px;
    left: 0;
    bottom: 8%;
    z-index: 3;
    border: 4px solid var(--white);
}

.accent-box-red {
    position: absolute;
    width: 280px;
    height: 390px;
    background-color: rgba(230, 34, 34, 0.08);
    left: 4%;
    top: 0;
    border-radius: 8px;
    z-index: 0;
}

@keyframes luxuriousFloatingMotion {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }
}

.btn-footer-connect {
    color: var(--white);
    border: 1px solid var(--white);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 15px 35px;
    box-shadow: 0 6px 20px rgba(230, 34, 34, 0.25);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.btn-about-connect {
    position: relative;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 15px 35px;
    border-radius: 30px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 1;
    border: none;
    box-shadow: 0 6px 20px rgba(230, 34, 34, 0.25);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.btn-about-connectdarkbg {
    position: relative;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 15px 35px;
    border-radius: 30px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 1;
    border: none;
    box-shadow: 0 6px 20px rgba(230, 34, 34, 0.25);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.btn-about-connect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--dark-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        height 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-about-connectdarkbg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--dark-primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        height 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.button-icon-move {
    font-size: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
    will-change: transform;
}

.btn-about-connect:hover,
.btn-about-connectdarkbg:hover {
    color: var(--white) !important;
    background: var(--primary-color);
    transform: translateY(-3px);
    border: none;
    box-shadow: 0 10px 25px rgba(14, 14, 14, 0.4);
}

.btn-footer-connect:hover {
    color: var(--white) !important;
    background: var(--footer-bg);
    box-shadow: 0 10px 25px rgba(14, 14, 14, 0.4);
}

.btn-about-connect:hover::before,
.btn-about-connectdarkbg:hover::before {
    width: 320px;
    height: 320px;
}

.btn-about-connect:hover .button-icon-move,
.btn-about-connectdarkbg:hover .button-icon-move {
    transform: translateX(6px);
}

.btn-about-connect:active,
.btn-about-connectdarkbg:active {
    transform: translateY(-1px) scale(0.97);
}

.call-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(230, 34, 34, 0.1);
    color: var(--service-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

@media (max-width:767px) {
    .about-section {
        padding: 50px 0 60px;
    }

    .about-image-collage {
        height: 400px;
    }

    .collage-img {
        border-radius: 10px;
    }

    .accent-box-red {
        position: absolute;
        width: 280px;
        height: 380px;
        background-color: rgba(230, 34, 34, 0.08);
        left: 4%;
        top: 0;
        border-radius: 8px;
        z-index: 0;
    }

    .about-content-wrapper {
        padding-left: 0 !important;
    }

    .about-lead-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-content-wrapper p.text-muted {
        font-size: 14px;
        line-height: 1.8;
    }

    .main-title {
        font-size: 30px;
        line-height: 1.25;
    }

    .section-title-wrapper {
        margin-bottom: 25px !important;
    }

    .about-stats-row {
        margin-bottom: 30px !important;
    }


    .about-stats-row h4 {
        font-size: 28px;
    }

    .about-stats-row span {
        font-size: 13px;
    }

    .call-icon-circle {
        width: 45px;
        height: 45px;
    }
}

/* ======================
 CTA Section
========================= */
.cta-advanced-section {
    position: relative;
    background-image: url('../images/banner/cta-banner.webp');
    background-size: cover;
    background-position: start;
    background-attachment: fixed;
    padding: 100px 0;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cta-left-content {
    text-align: left;
}

.z-index-3 {
    z-index: 3;
}

.cta-gradient-overlay {
    position: absolute;
    inset: 0;
    /* background: radial-gradient(circle, rgba(17, 17, 17, 0.75) 0%, rgba(10, 12, 16, 0.92) 100%); */
    z-index: 1;
    background: rgba(18, 18, 18, 0.436);
}

.cta-badge {
    display: inline-block;
}

.cta-title {
    font-size: 46px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 16px;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
    color: rgb(232, 232, 232);
}

@media (max-width:768px) {

    .cta-advanced-section {
        background-attachment: scroll;
        padding: 80px 0;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-left-content {
        text-align: center;
    }

    .cta-title {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .cta-desc {
        max-width: 100%;
        margin: 0 auto;
        font-size: 15px;
    }

    .cta-action-btn-wrapper {
        width: 100%;
    }

    .cta-advanced-section {
        padding: 60px 0;
        background-position: center;
    }

    .cta-action-btn-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .cta-action-btn-wrapper .btn-about-connect {
        padding: 14px 28px;
        font-size: 14px;
    }

}

@media (max-width:480px) {

    .cta-advanced-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-desc {
        font-size: 13px;
    }

    .cta-action-btn-wrapper .btn-about-connect {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

/* ====================
  WHY CHOOSE US
======================= */
.why-choose-section {
    position: relative;
    padding: 120px 0;
    background-color: #fafafa;
    overflow: hidden;
}

.why-image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.why-image-main {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    position: relative;
    background-color: rgba(230, 34, 34, 0.08);
    padding: 10px;
    animation: premiumFloat 6s ease-in-out infinite;
}

.why-image-main img {
    width: 100%;
    display: block;
    border-radius: 16px;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-image-main:hover img {
    transform: scale(1.05);
}

@keyframes premiumFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

.experience-floating-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 140px;
    height: 140px;
    background: rgba(230, 34, 34, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(230, 34, 34, 0.25);
    transform: rotate(-6deg);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 5;
}

.why-image-wrapper:hover .experience-floating-badge {
    transform: rotate(0deg) scale(1.05);
}

.badge-inner-glow {
    text-align: center;
}

.experience-floating-badge h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.experience-floating-badge h3 sup {
    font-size: 20px;
    top: -15px;
}

.experience-floating-badge span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-top: 5px;
    line-height: 1.3;
}

.premium-lead-text {
    font-size: 16px;
    line-height: 1.8;
    max-width: 90%;
    color: gray;
}

.why-premium-card {
    position: relative;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    overflow: hidden;
}

.why-premium-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    pointer-events: none;
    z-index: 2;
    clip-path: polygon(50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%);
    transition: clip-path 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

.why-premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(230, 34, 34, 0.05);
}

.why-premium-card:hover::before {
    clip-path: polygon(50% 100%, 0% 100%, 0% 0%, 50% 0%, 100% 0%, 100% 100%);
}

.card-icon-frame {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: #fff4f4;
    color: var(--primary-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-premium-card:hover .card-icon-frame {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05) rotate(-6deg);
}

.why-premium-card h5 {
    font-size: 19px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.why-premium-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.card-watermark-number {
    position: absolute;
    right: 20px;
    bottom: -5px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.015);
    transition: color 0.4s ease;
    z-index: -1;
    user-select: none;
}

.why-premium-card:hover .card-watermark-number {
    color: rgba(230, 34, 34, 0.04);
}

@media (max-width: 991px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .why-image-wrapper {
        margin-bottom: 50px;
        padding-right: 0;
    }

    .premium-lead-text {
        max-width: 100%;
    }

    .section-title {
        text-align: center;
    }

    .premium-section-tag {
        padding-left: 0;
    }

    .premium-section-tag::before {
        display: none;
    }

    .action-footer {
        text-align: center;
    }

    .why-image-wrapper {
        width: 60%;
        margin: 0 auto 50px;
        padding: 0;
        position: relative;
    }

    .why-image-main {
        width: 100%;
        animation: none;
    }

    .why-image-main img {
        width: 100%;
        display: block;
    }

    .experience-floating-badge {
        width: 120px;
        height: 120px;
        right: -20px;
        bottom: -20px;
    }

    .action-footer {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .why-premium-card {
        padding: 20px;
    }

    .experience-floating-badge {
        width: 110px;
        height: 110px;
        border-radius: 20px;
    }

    .experience-floating-badge h3 {
        font-size: 28px;
    }

    .experience-floating-badge span {
        font-size: 10px;
    }


    .why-image-wrapper {
        width: 100%;
        margin: 0 auto 50px;
        padding: 0;
        position: relative;
    }

    .why-image-main {
        width: 100%;
        animation: none;
    }

    .why-image-main img {
        width: 100%;
        display: block;
    }

    .experience-floating-badge {
        width: 120px;
        height: 120px;
        right: 20px;
        bottom: -20px;
    }
}

/* Scroll effect- Mobile */
.why-premium-card.active-scroll {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(230, 34, 34, 0.08);
}

.why-premium-card.active-scroll::before {
    clip-path: polygon(50% 100%, 0% 100%, 0% 0%, 50% 0%, 100% 0%, 100% 100%);
}

.why-premium-card.active-scroll .card-icon-frame {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05) rotate(-6deg);
}

.why-premium-card.active-scroll .card-watermark-number {
    color: rgba(230, 34, 34, 0.08);
}

/* ====================
portfolio 
====================== */
.miruthika-portfolio {
    background-color: var(--white);
    padding: 40px 0;
}

.portfolio-fluid-grid {
    column-count: 4;
    column-gap: 5px;
    width: 100%;
}

.portfolio-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 1px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f8f9fa;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}


.portfolio-img-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-img-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 11, 11, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
    transition: clip-path 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.portfolio-card:hover .portfolio-hover-overlay {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.zoom-icon-wrapper {
    width: 55px;
    height: 55px;
    background-color: var(--service-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transform: scale(0.4);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s,
        opacity 0.4s ease 0.15s;
    box-shadow: 0 10px 25px rgba(230, 34, 34, 0.35);
}

.portfolio-card:hover .zoom-icon-wrapper {
    opacity: 1;
    transform: scale(1);
}

/* --- LIGHTBOX FULLSCREEN ENGINE --- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content-box {
    max-width: 85%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1);
}

.lightbox-overlay.active .lightbox-content-box {
    transform: scale(1);
}

.lightbox-content-box img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10005;
}

.lightbox-btn:hover {
    background-color: var(--service-red);
    border-color: var(--service-red);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(230, 34, 34, 0.35);
}

.close-btn {
    top: 30px;
    right: 30px;
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}


/* Portfolio filter */
.portfolio-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 40px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .08);
    color: #444;
    font-size: 15px;
    font-weight: 600;
    transition: .35s;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--dark-maroon);
    color: var(--white);
    border-color: var(--dark-maroon);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(107, 0, 0, 0.221);
}

.portfolio-card {
    transition: .45s;
}

.portfolio-card.hide {
    opacity: 0;
    transform: scale(.8);
    pointer-events: none;
    position: absolute;

}


@media (max-width: 1199px) {
    .portfolio-fluid-grid {
        column-count: 3;
        column-gap: 15px;
    }

    .portfolio-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .portfolio-fluid-grid {
        column-count: 2;
        column-gap: 12px;
    }

    .portfolio-card {
        margin-bottom: 12px;
    }

    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }

    .lightbox-btn {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .close-btn {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .portfolio-filter {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 12px;
        padding-bottom: 10px;
        margin-bottom: 40px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .portfolio-filter::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 20px;
        font-size: 14px;
    }

    .filter-btn:hover,
    .filter-btn.active {
        transform: none;
        box-shadow: rgba(122, 0, 0, 0.251) 0px 2px 8px 0px;
    }
}

@media (max-width: 480px) {
    .portfolio-fluid-grid {
        column-count: 1;
    }
}



/* Testimonials section style */
.miruthika-testimonial-cta-section {
    position: relative;
    padding: 120px 0;
    background-image: url('../images/aboutus/testimonial-banner.webp');
    background-size: cover;
    background-position: start;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.testimonial-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 14, 19, 0.95) 0%, rgba(10, 14, 19, 0.85) 50%, rgba(10, 14, 19, 0.7) 100%);
    z-index: 1;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.premium-testimonial-card {
    background: #192229;
    padding: 45px 40px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}


.quote-icon-frame {
    font-size: 38px;
    color: var(--service-red);
    line-height: 1;
    margin-bottom: 25px;
    opacity: 0.8;
}

.testimonial-feedback-text {
    font-size: 15.5px;
    line-height: 1.8;
    color: #cccccc;
    font-style: italic;
    margin-bottom: 35px;
    font-weight: 400;
}

.client-avatar-wrapper {
    overflow: hidden;
}

.client-avatar-wrapper img {
    width: 70%;
    height: 70%;
    object-fit: cover;
}

.client-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
}

.client-designation {
    font-size: 13px;
    color: var(--dark-primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.photography-cta-content {
    padding-left: 20px;
}

.cta-main-title {
    width: 100%;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.cta-main-title .highlight-text {
    color: var(--primary-color);
}

.decorative-separator-block {
    margin-bottom: 35px;
}

.decorative-separator-block .dot {
    color: var(--white);
    font-size: 24px;
    line-height: 0;
    position: relative;
    top: -6px;
}

.decorative-separator-block .horizontal-line {
    width: 100px;
    height: 2px;
    background-color: var(--white);
    display: inline-block;
}

/* ==========================
   TESTIMONIAL SWIPER
========================== */

.testimonialSwiper {
    width: 100%;
    overflow: hidden;
}

.testimonialSwiper .swiper-wrapper {
    height: auto !important;
}

.testimonialSwiper .swiper-slide {
    height: auto !important;
    display: flex;
}

.testimonialSwiper .premium-testimonial-card {
    width: 100%;
}

.testimonial-desc {
    color: rgb(182, 182, 182);
}

@media (max-width: 991px) {
    .miruthika-testimonial-cta-section {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .photography-cta-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .cta-main-title {
        font-size: 32px;
    }

    .premium-testimonial-card {
        padding: 35px 30px;
    }
}

@media (max-width: 575px) {
    .cta-main-title {
        font-size: 26px;
    }

    .premium-testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-feedback-text {
        font-size: 14px;
    }
}

/* Inner Page Testimonials */
.inner-testimonial-section {
    background: rgb(250, 241, 241);
    padding: 100px 0;
}

.inner-testimonial-section .testimonialSwiper {
    max-width: 850px;
    margin: auto;
}

.inner-testimonial-section .premium-testimonial-card {
    background: #192229;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.inner-testimonial-section .quote-icon-frame {
    color: var(--primary-color);
    font-size: 42px;
    margin-bottom: 20px;
}

.inner-testimonial-section .testimonial-feedback-text {
    color: #aaaaaa;
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 30px;
}

.inner-testimonial-section .client-name {
    color: #807f7f;
}

.inner-testimonial-section .client-designation {
    color: var(--primary-color);
}

@media(max-width:991px) {

    .inner-testimonial-section {
        padding: 80px 0;
    }

    .inner-testimonial-section .premium-testimonial-card {
        padding: 35px;
        margin: 20px;
    }

}

@media(max-width:576px) {

    .inner-testimonial-section .premium-testimonial-card {
        padding: 25px;
        margin: 10px;
    }

}


/* Contact */
.miruthika-contact-section {
    background-color: var(--white);
}

.premium-section-tag {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info-wrapper {
    background-color: var(--white);
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.info-item {
    text-decoration: none;
}

.info-icon-box {
    width: 42px;
    height: 42px;
    background-color: rgba(230, 34, 34, 0.08);
    color: var(--dark-primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.info-text-box h5 {
    font-size: 19px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 6px;
}

.info-text-box .lead-text {
    font-size: 15.5px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease-in-out;
}

.info-item:hover .lead-text {
    color: rgb(130, 130, 130);
}

.info-item:hover .info-icon-box {
    background-color: var(--dark-primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.mini-map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eeeeee;
}

iframe {
    display: block;
    border: none;
}

.contact-form-card-overlay-bg {
    background-image: url('../images/portfolio/portfolio-4.webp');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: auto;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.contact-form-glass-container {
    background: rgba(15, 23, 30, 0.854);
    /* backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); */
    padding: 45px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
}

.form-group-custom {
    position: relative;
    margin-bottom: 20px;
}

.form-control-custom {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 15px;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    outline: none;
}

.text-area-custom {
    resize: none;
}

.form-label-custom {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaaaaa;
    font-size: 15px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

textarea.form-control-custom+.form-label-custom {
    top: 25px;
}

.form-control-custom:focus {
    border-color: #c6c6c6;
    background: rgba(255, 255, 255, 0.12);
    /* box-shadow: 0 0 0 4px rgba(230, 34, 34, 0.25); */
}

.form-control-custom:focus+.form-label-custom,
.form-control-custom:not(:placeholder-shown)+.form-label-custom {
    top: 0;
    left: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    background-color: #ec2b2b7e;
    padding: 2px 8px;
    border-radius: 4px;
    transform: translateY(-50%);
}

.form-control-custom:-webkit-autofill {
    -webkit-text-fill-color: var(--white) !important;
    transition: background-color 5000s ease-in-out 0s;
}

@media (max-width: 991px) {

    .contact-info-wrapper,
    .contact-form-glass-container {
        padding: 30px 20px;
    }
}


/*=====================================
        VISION & MISSION
======================================*/
.vision-mission-section {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    background-color: #08090c;
    color: var(--white);
}

.vision-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: bgSmoothZoom 20s ease-in-out infinite alternate;
    filter: brightness(0.7) contrast(1.1);
}

.vision-mission-heading-desc,
.testimonial-desc {
    width: 100%;
    margin-top: 30px;
}

.vision-mission-heading-desc p {
    max-width: 60%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #b3b8c5;
    text-align: center;
}

.testimonial-desc p {
    max-width: 60%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #6e6e6e;
    text-align: center;
}

@media (max-width: 991px) {
    .testimonial-desc p {
        max-width: 100%;
    }
}

@keyframes bgSmoothZoom {
    0% {
        transform: scale(1.05) rotate(0deg);
    }

    100% {
        transform: scale(1.15) rotate(0.5deg);
    }
}

.vision-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(8, 9, 12, 0.75) 0%, rgba(8, 9, 12, 0.95) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.grid-lines-overlay {
    position: absolute;
    inset: 0;
    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: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
    animation: ambientFloat 12s ease-in-out infinite alternate;
}

.glow-1 {
    width: 350px;
    height: 350px;
    background: #e6222287;
    top: 50%;
    left: 40%;
}

@keyframes ambientFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -30px) scale(1.15);
    }
}

.vision-mission-section .container {
    position: relative;
    z-index: 5;
}

.glass-card {
    position: relative;
    padding: 48px 42px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.56),
        0 18px 36px -18px rgba(0, 0, 0, 0.72),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.glass-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 40px 80px -15px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(230, 34, 34, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.card-border-glow {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 60%, rgba(230, 34, 34, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.glass-card:hover .card-border-glow {
    opacity: 1;
}

.spotlight-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(230, 34, 34, 0.12) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glass-card:hover .spotlight-glow {
    opacity: 1;
}

.glass-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.glass-icon {
    position: relative;
    width: 65px;
    height: 65px;
    min-width: 65px;
    min-height: 65px;
    flex-shrink: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: var(--primary-color, --service-red);
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.icon-ring {
    position: absolute;
    inset: -6px;
    border: 1px dashed rgba(230, 34, 34, 0.4);
    border-radius: 22px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.glass-card:hover .glass-icon {
    transform: scale(1.05) rotate(5deg);
    background: var(--primary-color, --service-red);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(230, 34, 34, 0.4);
}

.glass-card:hover .icon-ring {
    opacity: 1;
    transform: scale(1) rotate(90deg);
}

.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glass-tag {
    color: var(--primary-color, --service-red);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
    line-height: 1;
}

.glass-card h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.glass-card p {
    color: #b3b8c5;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.glass-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
}

.link-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.4s ease;
}

.glass-card:hover .glass-link {
    color: var(--primary-color, --service-red);
}

.glass-card:hover .link-arrow {
    background: var(--primary-color, --service-red);
    color: var(--white);
    transform: translateX(6px);
}

.center-camera {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camera-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ring-1 {
    width: 140px;
    height: 140px;
    border-color: rgba(230, 34, 34, 0.3);
    animation: ringRotate 20s linear infinite;
}

.ring-2 {
    width: 105px;
    height: 105px;
    border-color: rgba(255, 255, 255, 0.2);
    animation: ringRotate 12s linear infinite reverse;
}

.ring-dashed {
    width: 122px;
    height: 122px;
    border: 1px dashed rgba(230, 34, 34, 0.5);
    animation: ringRotate 25s linear infinite;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.camera-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color, --service-red), #b30000);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    z-index: 2;
    box-shadow: 0 0 25px rgba(230, 34, 34, 0.5);
    animation: pulseCamera 2.5s infinite ease-in-out;
}

@keyframes pulseCamera {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(230, 34, 34, 0.5);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 45px rgba(230, 34, 34, 0.8);
    }
}

.floating-photo {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    transition: all 0.5s ease;
}

.photo-inner {
    position: relative;
    padding: 8px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(230, 34, 34, 0.15);
}

.photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: brightness(0.85) contrast(1.1);
}

.photo-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: var(--primary-color, --service-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(230, 34, 34, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.photo-1 {
    top: 8%;
    left: 4%;
    width: 150px;
    height: 190px;
    transform: rotate(-10deg);
    animation: floatImage1 9s ease-in-out infinite alternate;
}

.photo-3 {
    top: 10%;
    right: 4%;
    width: 160px;
    height: 200px;
    transform: rotate(12deg);
    animation: floatImage3 10s ease-in-out infinite alternate;
    animation-delay: -4s;
}

@keyframes floatImage1 {
    0% {
        transform: translateY(0px) rotate(-10deg) scale(1);
    }

    50% {
        transform: translateY(-25px) rotate(-5deg) scale(1.03);
    }

    100% {
        transform: translateY(15px) rotate(-14deg) scale(0.98);
    }
}

@keyframes floatImage3 {
    0% {
        transform: translateY(0px) rotate(12deg) scale(1);
    }

    50% {
        transform: translateY(-30px) rotate(6deg) scale(1.02);
    }

    100% {
        transform: translateY(10px) rotate(15deg) scale(0.99);
    }
}

@media (max-width: 991px) {
    .vision-mission-section {
        padding: 80px 0;
    }

    .vision-mission-heading-desc p {
        max-width: 90%;
    }

    .glass-card {
        padding: 35px 28px;
    }

    .floating-photo {
        opacity: 0.3;
    }

    .photo-1 {
        width: 110px;
        height: 140px;
        top: 3%;
        left: 2%;
    }

    .photo-3 {
        width: 110px;
        height: 140px;
        top: 3%;
        right: 2%;
    }
}

@media (max-width: 576px) {
    .glass-card {
        padding: 28px 20px;
        border-radius: 28px;
    }

    .glass-card-header {
        gap: 15px;
    }

    .glass-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        min-height: 55px;
        font-size: 22px;
        border-radius: 14px;
    }

    .glass-card h3 {
        font-size: 19px;
    }

    .glass-tag {
        font-size: 11px;
    }

    .vision-mission-heading-desc {
        max-width: 100%;
        font-size: 14px;
    }

    .floating-photo {
        display: none;
    }
}






/*=====================================
    FOOTER
======================================*/
.miruthika-footer {
    width: 100%;
    color: var(--footer-heading);
    background-color: var(--footer-bg);
    box-sizing: border-box;
}

.footer-logo {
    width: 200px;
    height: auto;
    padding-bottom: 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-photo-strip {
    display: flex;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.photo-item {
    flex: 1;
    height: 100%;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-box {
    width: 160px;
    background-color: var(--footer-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--footer-heading);
    flex-shrink: 0;
    text-decoration: none;
}

.insta-box span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 0 10px;
    text-align: center;
}

/* 2. CTA Banner Section */
.footer-cta-banner {
    background-color: var(--dark-maroon);
    padding: 50px 0;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-heading {
    font-size: 30px;
    font-weight: 500;
    margin: 0;
    color: var(--footer-heading);
    letter-spacing: -0.5px;
}

.subscribe-form {
    display: flex;
    width: 100%;
    max-width: 420px;
    border: 1px solid #f2eae12e;
    border-radius: 2px;
    background: transparent;
}

.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 18px;
    color: var(--footer-heading);
    font-size: 14px;
    outline: none;
}

.subscribe-form input::placeholder {
    color: var(--footer-text-color);
}

.subscribe-form button {
    background: transparent;
    border: none;
    border-left: 1px solid #f2eae12e;
    color: var(--footer-heading);
    padding: 0 24px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.subscribe-form button:hover {
    background: var(--footer-heading);
    color: var(--dark-maroon);
}

/* 3. Main Footer Links */
.footer-main-content {
    background-color: var(--footer-bg);
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 40px;
}

.brand-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    letter-spacing: 2px;
    margin: 0 0 16px 0;
    color: var(--footer-heading);
}

.brand-subtext {
    color: var(--footer-text-color);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px 0;
    max-width: 260px;
}

.brand-detail {
    font-size: 13px;
    font-weight: 600;
    color: var(--footer-heading);
    margin: 0;
}

.footer-contact-info,
.footer-contact-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-info a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--footer-text-color);
    font-size: 14px;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info i {
    color: #7b5656;
    font-size: 15px;
    width: 16px;
}

.footer-contact-info a:hover {
    color: var(--white);
}

.col-heading {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 24px 0;
    color: var(--footer-heading);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: var(--footer-text-color);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--footer-heading);
}

/* 4. Bottom Legal Bar */
.footer-bottom-bar {
    background-color: var(--footer-bg);
    padding: 25px 0 35px 0;
    border-top: 1px solid rgba(242, 234, 225, 0.08);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    color: var(--footer-text-color);
    font-size: 12px;
    margin: 0;
}

.copyright-text a {
    color: #8c6a62;
    text-decoration: none;
}

.copyright-text a:hover {
    color: var(--footer-heading);
    text-decoration: none;
}

.legal-nav {
    display: flex;
    gap: 20px;
}

.legal-nav a {
    color: var(--footer-text-color);
    text-decoration: none;
    font-size: 12px;
}

.legal-nav a:hover {
    color: var(--footer-heading);
}

@media (max-width: 900px) {
    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .subscribe-form {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-photo-strip {
        height: 90px;
    }

    .insta-box {
        width: 100px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .cta-heading {
        font-size: 22px;
    }
}



/*=====================================
    Inner Services
======================================*/

/* Intro section */
.photography-intro-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.photography-intro-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(220, 20, 60, 0.04);
    border-radius: 50%;
    top: -180px;
    left: -180px;
}

.photography-intro-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(220, 20, 60, 0.04);
    border-radius: 50%;
    right: -150px;
    bottom: -150px;
}

.photography-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.photography-intro-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 25px;
    transition: .6s;
}

.photography-intro-image:hover img {
    transform: scale(1.08);
}

.photography-intro-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, 0));
    border-radius: 25px;
}

.photography-intro-content {
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-tag::before {
    content: "";
    width: 45px;
    height: 2px;
    background: var(--primary-color);
}

.photography-intro-content h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}

.photography-intro-content h2 span {
    color: var(--dark-primary-color);
}

.photography-intro-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

.intro-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid #ededed;
    border-radius: 14px;
    background: var(--white);
    transition: .35s;
}

.intro-feature i {
    color: var(--primary-color);
    font-size: 18px;
}

.intro-feature span {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
}

.intro-feature:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 18px 35px rgba(220, 20, 60, .10);
}

.intro-feature:hover i {
    transform: rotate(360deg);
    transition: .6s;
}

.photography-intro-content .btn-primary {
    padding: 15px 34px;
    border-radius: 50px;
}


@media(max-width:991px) {

    .photography-intro-image img {
        height: 500px;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        right: 20px;
        bottom: 20px;
    }

    .experience-badge span {
        font-size: 34px;
    }

    .photography-intro-content {
        margin-top: 20px;
    }

    .photography-intro-content h2 {
        font-size: 38px;
    }

    .intro-feature-list {
        grid-template-columns: 1fr;
    }

}

@media(max-width:767px) {

    .photography-intro-image img {
        height: 420px;
    }

    .section-tag {
        justify-content: center;
    }

    .photography-intro-content h2 {
        font-size: 30px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
    }

    .experience-badge span {
        font-size: 28px;
    }

    .experience-badge small {
        font-size: 11px;
    }

}


/* Service Inner Section Styling */
.service-inner-section {
    background-color: var(--dark-bg);
    padding: 80px 20px;
    color: var(--white);
}

.photography-service {
    width: 100%;
    text-align: center;
}

.photography-service h2 {
    width: 70%;
    margin: auto;
}

.service-inner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    justify-content: center;
}

.service-inner-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 380px;
    background-color: #120a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}

.service-inner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.service-inner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(10, 5, 5, 0.7) 0%,
            rgba(10, 5, 5, 0.85) 50%,
            rgba(10, 5, 5, 0.95) 100%);
    z-index: 2;
    transition: background 0.5s ease;
}

.service-inner-content {
    position: relative;
    z-index: 3;
    padding: 28px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-inner-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(230, 34, 34, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(230, 34, 34, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-inner-icon-box i {
    color: var(--primary-color);
    font-size: 20px;
}

.service-inner-card h3 {
    font-size: 22px;
    margin: 0 0 10px 0;
    color: var(--white);
}

.service-inner-card p {
    color: rgb(228, 228, 228);
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.service-inner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 5px;
}

.service-inner-tags span {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s ease;
}

.service-inner-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 34, 34, 0.5);
    box-shadow: 0 15px 35px rgba(230, 34, 34, 0.18);
}

.service-inner-card:hover .service-inner-bg {
    transform: scale(1.08);
}

.service-inner-card:hover .service-inner-icon-box {
    background: var(--service-red);
    border-color: var(--service-red);
    box-shadow: 0 0 15px rgba(230, 34, 34, 0.5);
}

.service-inner-card:hover .service-inner-icon-box i {
    color: var(--white);
}

.service-inner-card:hover .service-inner-tags span {
    background: rgba(230, 34, 34, 0.25);
    border-color: rgba(230, 34, 34, 0.4);
}

@media (max-width: 768px) {
    .service-inner-section {
        padding: 60px 15px;
    }

    .service-inner-title {
        font-size: 28px;
    }

    .service-inner-card {
        min-height: 350px;
    }

    .photography-service h2 {
        width: 100%;
        margin: auto;
    }
}

.service-inner-card.hide {
    display: none;
}

@media (max-width: 532px) {
    .service-inner-grid {
        grid-template-columns: 1fr;
    }
}










/* why choose */
/*==================================
 WHY CHOOSE US
==================================*/
.inner-choose-section {
    position: relative;
    padding: 120px 0 60px;
    background: var(--white);
    overflow: hidden;
}

.inner-choose-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(rgba(226, 34, 34, .08), transparent 70%);
    top: -180px;
    right: -180px;
}

/* LEFT */

.inner-choose-content {
    position: relative;
    z-index: 2;
}

.inner-choose-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.inner-choose-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin-bottom: 25px;
}

.inner-choose-title span {
    color: var(--primary-color);
}

.inner-choose-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.inner-choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.inner-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.inner-feature i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 34, 34, .12);
    color: var(--primary-color);
    transition: .4s;
}

.inner-feature:hover i {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(360deg);
}

/* RIGHT */

.inner-choose-image {
    position: relative;
    margin: auto;
    width: 80%;
    height: 100%;
}

.inner-choose-image img {
    width: 100%;
    border-radius: 25px;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .18);
    animation: floatImage 5s ease-in-out infinite;
}

.image-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 25px;
    top: 18px;
    left: 18px;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    left: -25px;
    bottom: 40px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
    font-size: 20px;
}

.floating-badge span {
    font-weight: 600;
    color: #111;
    font-size: 15px;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive */

@media(max-width:991px) {

    .inner-choose-title {
        font-size: 36px;
    }

    .inner-choose-features {
        grid-template-columns: 1fr;
    }

    .inner-choose-image {
        margin-top: 20px;
    }

    .image-border {
        display: none;
    }

    .floating-badge {
        display: none;
    }

}

@media(max-width:576px) {

    .inner-choose-section {
        padding: 80px 0;
    }

    .inner-choose-title {
        font-size: 30px;
    }


}



/*==============================
PRIVACY POLICY
==============================*/

.privacy-section {
    padding: 120px 0 80px;
    background: var(--white);
}

.privacy-content {
    max-width: 75%;
    margin: auto;
}

.privacy-date {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9e9e9;
}

.privacy-item {
    margin-bottom: 40px;
}

.privacy-item:last-child {
    margin-bottom: 0;
}

.privacy-item h3 {
    font-size: 25px;
    color: var(--secondary-black);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.privacy-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
}

@media(max-width:991px) {

    .privacy-section {
        padding: 120px 0;
    }

    .privacy-item h3 {
        font-size: 24px;
    }

    .privacy-content {
        max-width: 100%;
    }

}

@media(max-width:576px) {

    .privacy-item h3 {
        font-size: 21px;
    }

    .privacy-item p {
        font-size: 15px;
        line-height: 1.8;
    }

}

/* Sitemap */
.sitemap-section .privacy-item a {
    color: #666;
    text-decoration: none;
    line-height: 2;
    transition: .3s;
}

.sitemap-section .privacy-item a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

/* Loader */
#preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 65px;
    height: 65px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #d62828;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Back to Top */
.prgoress_indicator {
    position: fixed;
    right: 30px;
    bottom: 50px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(22, 93, 245, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: var(--primary-color);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    font-weight: 900;
    opacity: 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear !important;
}

.prgoress_indicator:hover ::after {
    color: var(--primary-color);
}

.prgoress_indicator:hover ::before {
    opacity: 1;
}

.prgoress_indicator svg path {
    fill: none;
}

.prgoress_indicator svg.progress-circle path {
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear !important;
}

/* 404 Error */
.error-image {
    width: 400px;
    height: auto;
}

.error-page {
    margin-top: 80px;
}