:root {
    --primary: #ef7f02;
    --primary-dark: #c36d0a;
    --primary-light: #faf5ef;
    --secondary: #bad701;
    --main-bg: #ffffff;
    --secondary-bg: #f8f9fa;
    --text-dark: #343a40;
    --text-muted: #6c757d;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --white: #ffffff;
    --black: #1a1a1a;
    /* Shadows */
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--main-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.logo:hover {
    transform: translateY(-2px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.75rem 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 60%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: transparent;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sidebar Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-close {
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-link i {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 2rem;
}

.mobile-nav-link:hover i {
    transform: translateX(5px);
    color: var(--primary);
}

.mobile-nav-link.active {
    background: var(--primary-light);
    color: var(--primary);
    border-left: 4px solid var(--primary);
}

.mobile-nav-link.active i {
    color: var(--primary);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-alt {
    background-color: var(--secondary-bg) !important;
}

/* Buttons */
.theme-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--primary);
}

.btn-style5 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-style5:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239, 127, 2, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

/* Hero */
.hero {
    padding-top: 150px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-action {
    display: flex;
    gap: 15px;
}

/* Page Hero Section */
.page-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #0c0c0e;
    padding: 180px 0 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: var(--font-heading);
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 2rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(239, 127, 2, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(239, 127, 2, 0.1);
    transform: translateY(-2px);
    border-color: rgba(239, 127, 2, 0.4);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.breadcrumb-current {
    color: var(--primary);
    font-weight: 600;
}

/* Typography matching sandesh/skone */
.section-title-wrapper {
    margin-bottom: 40px;
}

.sub-title-outer {
    margin-bottom: 10px;
}

.subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   OUR SERVICES SECTION (Sandesh Style)
   =================================== */
.our-services-section {
    padding: 100px 0 50px;
    background-image: url('assets/sec-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    border-radius: 50px;
    margin: 50px 0;
    overflow: hidden;
}

.our-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    z-index: 0;
}

.services-wrapper {
    position: relative;
    z-index: 1;
}

.our-services-section .section-title-wrapper {
    margin-bottom: 60px;
    text-align: center;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.our-services-section .subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.our-services-section .section-title-main {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.service-block-style18 .inner-box {
    position: relative;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-block-style18:last-child .inner-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-block-style18 .inner-box:hover .image-box,
.service-block-style18 .inner-box.active .image-box {
    visibility: visible;
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
}

.service-block-style18 .inner-box:hover .content-box,
.service-block-style18 .inner-box.active .content-box {
    padding-left: 265px;
}

.service-block-style18 .inner-box .image-box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 338px;
    height: 120px;
    opacity: 0;
    border-radius: 20px;
    visibility: hidden;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
    overflow: hidden;
    transition: all 300ms ease;
}

.service-block-style18 .inner-box .image-box .service-featured-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.service-block-style18 .inner-box .image-box .service-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-block-style18 .inner-box:hover .image-box .service-featured-img img {
    transform: scale(1.1);
}

.service-block-style18 .inner-box .content-box {
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    transition: all 300ms ease;
}

.service-block-style18 .inner-box .content-box .title-box {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-block-style18 .inner-box .content-box .title-box .number {
    font-size: 48px;
    font-weight: 400;
    line-height: 58px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.service-block-style18 .inner-box:hover .content-box .title-box .number {
    color: var(--primary);
}

.service-block-style18 .inner-box .content-box .title-box .service-title {
    font-size: 60px;
    font-weight: 600;
    line-height: 100%;
    margin: 0;
    font-family: var(--font-heading);
    color: var(--white);
    transition: all 0.3s ease;
}

.service-block-style18 .inner-box .content-box .title-box .service-title a {
    color: inherit;
    transition: all 0.3s ease;
}

.service-block-style18 .inner-box:hover .content-box .title-box .service-title a {
    color: var(--primary);
}

.service-block-style18 .inner-box .content-box .icon-box .icon {
    width: 58px;
    height: 58px;
    line-height: 58px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-32deg);
    transition: all 500ms ease;
}

.service-block-style18 .inner-box:hover .content-box .icon-box .icon {
    transform: rotate(0deg);
    background-color: var(--primary);
}

@media (max-width: 991px) {
    .service-block-style18 .inner-box .content-box .title-box .service-title {
        font-size: 40px;
    }

    .service-block-style18 .inner-box .image-box {
        width: 250px;
    }

    .service-block-style18 .inner-box:hover .content-box,
    .service-block-style18 .inner-box.active .content-box {
        padding-left: 280px;
    }
}

@media (max-width: 767px) {
    .our-services-section {
        padding: 60px 0;
        margin: 30px 10px;
        border-radius: 30px;
    }

    .our-services-section::before {
        border-radius: 30px;
    }

    .our-services-section .section-title-main {
        font-size: 32px;
    }

    .our-services-section .section-title-wrapper {
        text-align: left;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .service-block-style18 .inner-box .image-box {
        position: relative;
        width: 100%;
        height: 200px;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-bottom: 20px;
        top: 0;
    }

    .service-block-style18 .inner-box .content-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 0 30px;
        padding-left: 0 !important;
    }

    .service-block-style18 .inner-box .content-box .title-box {
        gap: 20px;
    }

    .service-block-style18 .inner-box .content-box .title-box .number {
        font-size: 32px;
    }

    .service-block-style18 .inner-box .content-box .title-box .service-title {
        font-size: 28px;
    }
}

/* Media Grid for Gallery and Videos */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
    box-shadow: var(--shadow-md);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.video-item {
    background: linear-gradient(135deg, rgba(239, 127, 2, 0.6), rgba(239, 127, 2, 0.1), rgba(239, 127, 2, 0.6));
    padding: 8px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(239, 127, 2, 0.18);
}

.video-item video {
    width: 100%;
    border-radius: 14px;
    display: block;
    background: #000;
}

/* Digital Coverage List */
.digital-coverage-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.coverage-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
}

.coverage-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.coverage-card p {
    margin-bottom: 20px;
    color: var(--text-muted);
    flex-grow: 1;
}

.coverage-card h3 {
    color: var(--black);
}

/* Contact Form */
.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: var(--text-dark);
    font-family: var(--font-body);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(239, 127, 2, 0.1);
}

.c-detail {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.c-detail i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ===================================
   NEW PREMIUM FOOTER (Skone Style)
   =================================== */
.footer-new {
    position: relative;
    width: 100%;
    margin-top: 20px;
    z-index: 1;
}

.footer-main {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    border-radius: 60px 60px 0 0;
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(239, 127, 2, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(186, 215, 1, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.footer-main .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

/* Company Section */
.footer-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-tagline {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.footer-social h5 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 15px 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(239, 127, 2, 0.3);
    border-color: var(--primary);
}

.social-icon i {
    color: #FFFFFF;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover i {
    color: #ffffff;
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
}

.footer-links-col h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links-col ul li a:hover::after {
    width: 100%;
}

/* Contact Section */
.footer-contact .contact-list li {
    display: flex;
    gap: 12px;
}

.contact-icon-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.footer-contact .contact-list li a {
    word-break: break-word;
    display: inline-block;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-contact .contact-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-contact .contact-list li a:hover {
    color: var(--primary);
}

.footer-contact .contact-list li a:hover::after {
    width: 100%;
}

/* Footer Separator */
.footer-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    margin: 50px 0 30px 0;
}

/* Footer Credits */
.footer-credits {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
}

.footer-credits p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 15px;
}

.footer-credits p a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credits p a:hover {
    color: var(--primary);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .footer-main {
        border-radius: 40px 40px 0 0;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 1rem;
        justify-content: center;
        color: var(--text-dark);
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-company {
        align-items: flex-start;
        text-align: left;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .footer-credits {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title-main {
        font-size: 2rem;
    }
}

/* ===================================
   COMPONENTS EXTRACTED FROM INLINE HTML
   =================================== */

/* Hero Image */
.hero-image img {
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


/* Mobile Sidebar Logo */
.mobile-logo {
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
}

/* Footer Logo H3 */
.footer-logo h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #FFFFFF;
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Utility Classes */
.flex-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.flex-row-center {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.flex-col {
    flex: 1;
    min-width: 300px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-30 {
    margin-top: 30px;
}

.img-rounded {
    border-radius: 20px;
    width: 100%;
}

.form-box {
    background: var(--secondary-bg);
    padding: 30px;
    border-radius: 20px;
}

/* ===================================
   NEW HERO BANNER (Reeni Style-4)
   =================================== */

.tmp-banner-one-area.style-4 {
    position: relative;
    background-color: #000000;
    padding: 180px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.tmp-banner-one-area .container {
    position: relative;
    z-index: 5;
}

/* ===================================
   NEW PREMIUM HERO SECTION
   =================================== */
.premium-hero {
    position: relative;
    background-color: #0c0c0e;
    padding: 220px 0 160px;
    overflow: hidden;
    z-index: 1;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.text-highlight {
    color: var(--primary);
}

.typewriter-text {
    position: relative;
    padding-right: 10px;
}

.typewriter-text:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #aebcb9;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-btn-group {
    display: flex;
    gap: 20px;
}

/* Button Global Style: Animated Interactive Button */
.theme-btn-animated {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    position: relative;
    transition: 0.4s;
    text-decoration: none;
}

.btn-animated-arrow-left {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    scale: 0;
    position: absolute;
    left: 0;
    transition: 0.4s;
    z-index: 2;
}

.btn-animated-arrow-left i {
    transform: rotate(45deg);
}

.btn-animated-text {
    background: var(--primary);
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    padding: 15px 40px;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    border-radius: 100px;
    text-transform: capitalize;
    transition: 0.4s;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.btn-animated-arrow-right {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -1px;
    background: var(--primary);
    border-radius: 50%;
    transition: 0.4s;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.btn-animated-arrow-right i {
    transform: rotate(-45deg);
}

.theme-btn-animated:hover .btn-animated-arrow-left {
    background-color: var(--white);
    color: var(--primary);
    scale: 1;
}

.theme-btn-animated:hover .btn-animated-text {
    background-color: var(--white);
    color: var(--primary);
    transform: translateX(56px);
}

.theme-btn-animated:hover .btn-animated-arrow-right {
    background-color: var(--white);
    color: var(--primary);
    scale: 0;
}

/* Button variant for White Background */
.section .theme-btn-animated:hover .btn-animated-arrow-left,
.section .theme-btn-animated:hover .btn-animated-text,
.section .theme-btn-animated:hover .btn-animated-arrow-right {
    background-color: var(--black);
    color: var(--white);
}

.cta-action .theme-btn-animated:hover .btn-animated-arrow-left,
.cta-action .theme-btn-animated:hover .btn-animated-text,
.cta-action .theme-btn-animated:hover .btn-animated-arrow-right {
    background-color: var(--white);
    color: var(--primary);
}


/* Image Card Styles with Gradient Border & Shadow */
.image-card-wrapper {
    position: relative;
    padding: 2.5px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.image-card {
    background: #111113;
    padding: 20px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-profile-img {
    width: 100%;
    max-width: 380px;
    border-radius: 15px;
    display: block;
    object-fit: cover;
    z-index: 2;
}

.vertical-text {
    position: absolute;
    right: -30%;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    letter-spacing: 10px;
    white-space: nowrap;
    text-transform: uppercase;
    z-index: 999;
    pointer-events: none;
}


/* Galaxy Grid */
.galaxy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, #19191b 1px, transparent 0),
        linear-gradient(180deg, #19191b 1px, transparent 0);
    background-size: 130px 130px;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .premium-hero {
        padding: 140px 0 80px;
    }

    .hero-wrapper {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btn-group {
        justify-content: center;
    }

    .hero-profile-img {
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-btn-group {
        flex-direction: column;
        align-items: center;
    }

    .theme-btn.btn-style-4,
    .btn-outline-white {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}


/* ===================================
   ABOUT ME SECTION (Premium Reference)
   =================================== */

@keyframes tmpFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.about-left {
    position: relative;
    z-index: 1;
    padding-left: 110px;
    padding-right: 72px;
}

.exp-card {
    background: hsla(0, 0%, 100%, .3);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 20px;
    border: .5px solid hsla(0, 0%, 100%, .05);
    -webkit-backdrop-filter: blur(35px);
    backdrop-filter: blur(35px);
    padding: 64px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.exp-card h2 {
    margin-bottom: .5rem;
    font-size: 80px;
    color: var(--primary);
}

.exp-card p {
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0;
}

.design-card {
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 20px;
    border: .5px solid hsla(0, 0%, 100%, .05);
    background: hsla(0, 0%, 100%, .3);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    -webkit-backdrop-filter: blur(35px);
    backdrop-filter: blur(35px);
    padding: 30px;
    margin-top: 30px;
}

.design-card .card-img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
}

.design-card .card-img i {
    color: var(--primary);
    font-size: 40px;
}

.design-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.design-card p {
    background: transparent;
    color: var(--black);
    font-size: 16px;
    margin-bottom: 0;
}

.bg-vactor-one:after {
    content: " ";
    position: absolute;
    left: 0;
    top: 197px;
    background: linear-gradient(0deg, rgba(239, 127, 2, 0) 15.49%, var(--primary) 100%);
    filter: blur(2px);
    border-radius: 100%;
    width: 410px;
    height: 410px;
    z-index: -1;
}


.section-head .subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 5px;
    font-family: var(--font-body);
    display: block;
    letter-spacing: 1px;
}

.section-head .title {
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .section-head .title {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .section-head .title {
        font-size: 32px;
    }
}

.section-head .description {
    margin-top: 10px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
}

.section-head.text-center .description {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 575px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.service-grid .service-card {
    border-radius: 20px;
    background: var(--secondary-bg);
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 2px 2px var(--primary);
    transition: .3s;
}

.service-grid .service-card:hover {
    box-shadow: none;
}


.service-card .card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-card .card-head i {
    width: 45px;
    height: 45px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: var(--white);
    font-size: 20px;
    min-width: 45px;
}

.service-card h3 {
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 0;
}

.service-card p {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 11px;
    margin-bottom: 0;
}

/* SPOTLIGHT EFFECT */
.tmponhover:before {
    content: "";
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    background: radial-gradient(var(--primary), transparent, transparent);
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: 0.5s, top 0s, left 0s;
    border-radius: 20px;
    z-index: -1;
}

.tmponhover:after {
    content: "";
    position: absolute;
    inset: 2px;
    background: var(--secondary-bg);
    border-radius: 20px;
    z-index: -1;
}

.tmponhover:hover:before {
    opacity: 1;
}

.tmponhover>* {
    position: relative;
    z-index: 2;
}


/* ODOMETER */
.odometer.odometer-auto-theme,
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default,
.odometer.odometer-theme-default .odometer-digit {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
    display: inline-block;
    vertical-align: middle;
    visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
    text-align: left;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
    display: block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* SCROLL ANIMATIONS */
.scroll-anim {
    opacity: 0.01;
}

.scroll-anim.animate {
    animation: tmpFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* UTILITIES */
.mb--50 {
    margin-bottom: 50px !important;
}

.mt--40 {
    margin-top: 40px !important;
}

@media (max-width: 767px) {
    .exp-card {
        padding: 40px 20px;
    }

    .exp-card h2 {
        font-size: 60px;
    }

    .exp-card p {
        font-size: 32px;
        line-height: normal;
    }

    .about-left {
        padding: 0;
    }

    .bg-vactor-one:after {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 575px) {
    .exp-card h2 {
        font-size: 48px;
    }

    .exp-card p {
        font-size: 28px;
    }
}

/* ===================================
   CERTIFICATE SECTION
   =================================== */
.certificate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.certificate-item {
    background: var(--secondary-bg);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 2px 2px var(--primary);
    transition: 0.3s;
}

.certificate-item:hover {
    box-shadow: none;
    transform: none;
    /* remove previous lift effect as we use spotlight now */
}

.certificate-item img {
    width: 100%;
    height: 300px;
    /* added height limit for consistency */
    object-fit: contain;
    /* ensures certificates don't crop */
    border-radius: 12px;
    display: block;
    background: #fff;
    /* white background for image if needed */
    padding: 10px;
}

@media (max-width: 991px) {
    .certificate-grid {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .certificate-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .certificate-item {
        padding: 5px;
        border-radius: 15px;
    }
}

/* ===================================
   MODERN VIDEO WRAPPER (TEDx Section)
   =================================== */
.tedx-video-section .hero-desc {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.modern-video-wrapper {
    max-width: 1000px;
    margin: 40px auto 0;
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(239, 127, 2, 0.6), rgba(239, 127, 2, 0.1), rgba(239, 127, 2, 0.6));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.modern-video-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(239, 127, 2, 0.2);
}

.yt-embed-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.yt-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* ===================================
   STATS / EXPERIENCE SECTION
   =================================== */
.stats-section.section-dark {
    background-color: var(--black);
    color: var(--white);
    padding: 100px 0;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.stats-featured-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 2px 2px var(--primary);
    /* Matched to service-card */
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.stats-featured-card:hover {
    box-shadow: none;
}

/* Override spotlight for dark section */
.stats-section.section-dark .tmponhover:after {
    background: #1a1a1a;
    inset: 2px;
    /* Matched to service-card */
}

.stats-featured-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.stats-featured-header .count {
    font-size: 110px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stats-featured-header .title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
}

.stats-featured-card .description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 2px 2px var(--primary);
    /* Matched to service-card */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: none;
    /* border-bottom-color: var(--primary); */
}

.stat-item .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    display: block;
}

.stat-item .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}


@media (max-width: 991px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-featured-card {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .stats-featured-header {
        align-items: center;
        gap: 10px;
    }

    .stats-featured-header .count {
        font-size: 80px;
    }

    .stats-featured-header .title {
        font-size: 32px;
    }

    .stat-item .stat-number {
        font-size: 36px;
    }
}

/* ===================================
   MARQUEE SECTION
   =================================== */
.marquee-section {
    position: relative;
    background-color: var(--primary);
    padding: 40px 0;
    overflow: hidden;
}

.marquee {
    position: relative;
    --duration: 20s;
    --gap: 30px;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: marquee-scroll var(--duration) linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.marquee-item .rotate {
    width: 40px;
    height: 40px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    animation: rotateme 6s linear infinite;
}

.marquee-item .title {
    font-size: 60px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
    font-family: var(--font-heading);
    border: 1px solid var(--white);
    padding: 23.5px 80px;
    border-radius: 100px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .marquee-item .title {
        font-size: 40px;
    }

    .marquee-item .rotate {
        width: 30px;
        height: 30px;
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .marquee-item .title {
        font-size: 30px;
    }

    .marquee-section {
        padding: 20px 0;
    }
}

/* ===================================
   DIGITAL COVERAGE SECTION
   =================================== */
.digital-coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.digital-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.digital-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.digital-card .card-image {
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.digital-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.digital-card:hover .card-image img {
    transform: scale(1.1);
}

.digital-card .card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.digital-card .card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
    font-family: var(--font-heading);
    line-height: 1.3;
}

.digital-card .card-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.digital-card .card-btn {
    margin-top: auto;
}

@media (max-width: 991px) {
    .digital-coverage-grid {
        grid-template-columns: 1fr;
    }

    .digital-card .card-image {
        height: 300px;
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.testimonial-card .quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: var(--primary);
    opacity: 0.1;
}

.testimonial-card .star-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-card .star-rating i {
    font-size: 14px;
    color: var(--secondary);
}

.testimonial-card .testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.testimonial-card .author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-card .author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    font-family: var(--font-heading);
    margin: 0;
}

.testimonial-card .author-position {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

@media (max-width: 1199px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px;
    }
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-wrapper {
    position: relative;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    padding: 80px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, rgba(255, 102, 0, 0) 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.cta-content .subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-content .title {
    color: var(--white);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.cta-content .description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.cta-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

@media (max-width: 1199px) {
    .cta-wrapper {
        padding: 60px;
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .cta-content {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-wrapper {
        padding: 40px 25px;
        border-radius: 30px;
    }

    .cta-content .title {
        font-size: 32px;
    }

    .cta-content .description {
        font-size: 16px;
    }
}

/* ===================================
   CONTACT PAGE STYLES (PORTED)
   =================================== */

.contact-wrapper {
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(239, 127, 2, 0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-card-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.contact-info-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-header h3 {
    font-size: 2.25rem;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.contact-form-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-modern .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-form-modern .form-group {
    position: relative;
    text-align: left;
}

.contact-form-modern .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--black);
    font-size: 0.95rem;
}

.contact-form-modern .form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    background: #fcfcfc;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.contact-form-modern .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(239, 127, 2, 0.1);
    background: var(--white);
}

.contact-form-modern .form-group.error .form-control {
    border-color: #e74c3c;
}

.contact-form-modern .error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.contact-form-modern .form-group.error .error-message {
    display: block;
}

.contact-form-modern textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form-modern .form-actions {
    margin-top: 1rem;
}

.contact-form-modern .btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(239, 127, 2, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-modern .btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(239, 127, 2, 0.4);
}

.contact-form-modern .btn-submit.loading {
    pointer-events: none;
    opacity: 0.8;
}

.contact-form-modern .btn-submit.loading .btn-text {
    display: none;
}

.contact-form-modern .btn-submit .btn-loader {
    display: none;
}

.contact-form-modern .btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    display: none;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.form-message-content h4 {
    margin: 0 0 5px 0;
    font-weight: 700;
}

.form-message-content p {
    margin: 0;
    font-size: 0.95rem;
}

.success-message {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
}

.error-message-box {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
}

@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-modern .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .contact-form-header h3 {
        font-size: 1.75rem;
    }
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

.premium-about-section {
    position: relative;
    overflow: hidden;
}

.about-me-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-me-image {
    flex: 1;
    position: relative;
    z-index: 1;
    width: 80%;
}

.image-bg-shape {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 100%;
    height: 100%;
    background: #f6dab7;
    border-radius: 30px;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
}

.about-me-image:hover .image-bg-shape {
    transform: translate(15px, 15px);
    background: var(--primary);
    opacity: 0.8;
}

.about-me-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.about-me-content {
    flex: 1.2;
}

.about-me-content .quote-box {
    background: var(--primary-light);
    padding: 30px;
    border-left: 5px solid var(--primary);
    border-radius: 0 15px 15px 0;
    margin-bottom: 30px;
    margin-top: 30px;
}

.about-me-content .quote-box p {
    font-style: italic;
    font-size: 18px;
    color: var(--black);
    margin: 0;
}

/* Vision & Mission */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vm-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(239, 127, 2, 0.1);
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.vm-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.vm-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
}

/* Modern Professional Expertise Section */
.modern-expertise-section {
    background: #fdfdfd;
    padding: 100px 0;
}

.expertise-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.expertise-card {
    position: relative;
    background: var(--white);
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    z-index: 1;
}

.expertise-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.expertise-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.expertise-card:hover .expertise-icon-box {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.expertise-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.expertise-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

.hover-shape {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: var(--primary);
    opacity: 0.03;
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: -1;
}

.expertise-card:hover .hover-shape {
    width: 300px;
    height: 300px;
    opacity: 0.05;
}

@media (max-width: 1200px) {
    .expertise-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .about-me-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .expertise-modern-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    /* Redundant grid rule removed */
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-us-card {
    background: var(--secondary-bg);
    padding: 50px 35px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 2px 2px var(--primary);
    transition: 0.3s;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-us-card:hover {
    box-shadow: none;
    transform: none;
}

.why-us-card>i {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.why-us-card:hover>i {
    transform: scale(1.1);
}

.why-us-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.why-us-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-us-card {
        padding: 40px 25px;
    }
}

/* Product/Service Detail Section */
.product-detail-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.product-detail-section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.product-detail-alt {
    background: var(--white);
}

.product-detail-header {
    max-width: 1100px;
    margin: 0 auto 5rem;
    text-align: center;
    position: relative;
}

.product-detail-header .product-number {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(239, 127, 2, 0.1);
    /* Primary color with low opacity */
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    font-family: var(--font-heading);
}

.product-detail-header .product-detail-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.product-detail-header .product-detail-subtitle {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.product-detail-header .product-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.product-detail-header .product-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.spec-item {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: rgba(239, 127, 2, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.spec-content h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.spec-content p {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.product-detail-image {
    position: relative;
}

.product-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: transform 0.4s ease;
}

.product-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(239, 127, 2, 0.2);
}

.product-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.product-image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(239, 127, 2, 0.3);
    backdrop-filter: blur(10px);
}

.product-detail-content {
    position: relative;
}

.product-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.benefits-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.benefits-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.product-uses h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.uses-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.use-tag {
    background: var(--secondary-bg);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.use-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

@media (max-width: 968px) {
    .product-detail-section {
        padding: 4rem 0;
    }

    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-detail-header {
        margin-bottom: 3rem;
    }

    .product-detail-header .product-number {
        font-size: 6rem;
    }

    .product-detail-header .product-detail-title {
        font-size: 2.2rem;
    }

    .product-image-container img {
        height: 350px;
    }

    .product-detail-header .product-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .product-detail-header .product-specs-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Service Sections (Redesign) */
.modern-service-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.modern-service-section:nth-child(even) {
    background-color: var(--secondary-bg);
}

.modern-service-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.modern-service-section:nth-child(even) .modern-service-grid {
    grid-template-columns: 0.9fr 1.1fr;
}

.modern-service-section:nth-child(even) .modern-service-content {
    order: 2;
}

.modern-service-section:nth-child(even) .modern-service-image-box {
    order: 1;
}

.modern-service-content {
    position: relative;
    z-index: 2;
}

.modern-service-content .tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}

.modern-service-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--black);
}

.modern-service-content .desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 600px;
}

.modern-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 45px;
}

.feature-pill {
    background: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.feature-pill:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(239, 127, 2, 0.1);
}

.feature-pill i {
    color: var(--primary);
    font-size: 18px;
}

.modern-service-image-box {
    position: relative;
    z-index: 1;
}

.image-frame {
    position: relative;
    padding: 15px;
    background: var(--white);
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    overflow: hidden;
}

.image-frame:hover {
    transform: translateY(-10px) rotate(1deg);
}

.image-frame img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 30px;
}

.decorative-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(239, 127, 2, 0.1) 0%, rgba(186, 215, 1, 0.05) 100%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

.modern-service-section:nth-child(odd) .decorative-shape {
    top: -50px;
    right: -50px;
}

.modern-service-section:nth-child(even) .decorative-shape {
    bottom: -50px;
    left: -50px;
}

@media (max-width: 1200px) {
    .modern-service-grid {
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .modern-service-section {
        padding: 80px 0;
    }

    .modern-service-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .modern-service-content {
        order: 1 !important;
    }

    .modern-service-image-box {
        order: 2 !important;
        max-width: 600px;
        margin: 0 auto;
    }

    .modern-service-content .desc {
        margin-left: auto;
        margin-right: auto;
    }

    .modern-service-features {
        justify-content: center;
    }

    .image-frame img {
        height: 450px;
    }

    .modern-service-content .tag {
        margin-bottom: 20px;
        display: inline-block;
    }
}

@media (max-width: 575px) {
    .modern-service-section {
        padding: 60px 0;
    }

    .feature-pill {
        width: 100%;
        justify-content: flex-start;
    }

    .image-frame img {
        height: 350px;
    }
}



/* ===================================
   HOW IT WORKS SECTION (EXACT REPLICATE)
   =================================== */
.how-it-work-section {
    padding: 100px 0 50px;
    background-image: url('assets/sec-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    margin: 40px 0;
}

.how-it-work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
}

.how-it-work-section .section-title-wrapper {
    margin-bottom: 60px;
    text-align: center;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-work-wrapper {
    position: relative;
    z-index: 1;
}

.how-it-work-section .subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.how-it-work-section .section-title-main {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.working-blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 70px;
}

.working-block-style4 {
    margin-bottom: 0;
}

.working-block-style4 .inner-box {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 300ms ease;
    height: 100%;
}

.working-block-style4 .inner-box:hover {
    background-color: #FF6B35;
    transform: translateY(-5px);
}

.working-block-style4 .inner-box:hover .content-box .working-count {
    background-color: #FFA726;
    border-color: transparent;
    color: #ffffff;
}

.working-block-style4 .inner-box:hover .content-box .working-title {
    color: #ffffff;
}

.working-block-style4 .inner-box:hover .content-box .working-details .item {
    background-color: rgba(0, 0, 0, 0.1);
    color: #ffffff;
    border-color: transparent;
}

.working-block-style4 .inner-box:hover .shape-image1 img {
    animation: rotateX 30s linear infinite;
}

.working-block-style4 .content-box {
    position: relative;
    padding: 62px 40px;
    transition: all 300ms ease;
    z-index: 2;
}

.working-block-style4 .content-box .working-count {
    position: absolute;
    right: 30px;
    top: -30px;
    background: #37334b;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 36px;
    line-height: 1;
    padding: 9px 25px 13px;
    color: #fff;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    transition: all 300ms ease;
    font-weight: 700;
}

.working-block-style4 .content-box .working-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    transition: all 300ms ease;
}

.working-block-style4 .content-box .working-details {
    position: relative;
}

.working-block-style4 .content-box .working-details .list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.working-block-style4 .content-box .working-details .item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    display: block;
    font-weight: 400;
    padding: 9px 35px;
    margin-bottom: 15px;
    margin-right: 0;
    transition: all 300ms ease;
    font-size: 14px;
    width: fit-content;
}

.working-block-style4 .shape-image1 {
    position: absolute;
    right: 8px;
    bottom: 8px;
    display: flex;
    opacity: 0.3;
    z-index: 0;
}

.working-block-style4 .shape-image1 img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.working-block-style4 .inner-box:hover .shape-image1 {
    opacity: 0.5;
}

@keyframes rotateX {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .how-it-work-section {
        margin: 40px 15px;
        padding: 60px 0;
        border-radius: 30px;
    }

    .how-it-work-section::before {
        border-radius: 30px;
    }

    .working-blocks-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 50px;
    }

    .working-block-style4 .content-box {
        padding: 40px 25px;
    }

    .working-block-style4 .content-box .working-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .how-it-work-section .section-title-main {
        font-size: 32px;
    }

    .how-it-work-section .section-title-wrapper {
        text-align: left;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .working-block-style4 .shape-image1 {
        display: none;
    }

    .working-block-style4 .content-box .working-title {
        margin-bottom: 20px;
    }

    .working-block-style4 .content-box .working-count {
        font-size: 28px;
        padding: 7px 20px 11px;
        right: 20px;
        top: -25px;
    }
}

/* ===================================
   GALLERY & LIGHTBOX STYLES
   =================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(239, 127, 2, 0.85);
    /* Using var(--primary) equivalent */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10001;
}

.lightbox-counter {
    color: var(--white);
    font-size: 16px;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.lightbox-close {
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-body {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: calc(100% - 120px);
    padding: 60px 20px 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    user-select: none;
    padding: 30px;
    z-index: 10000;
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary);
}

.lightbox-thumbnails-container {
    height: 110px;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.lightbox-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    max-width: 90%;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.1);
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.lightbox-thumb {
    height: 70px;
    width: 90px;
    min-width: 90px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
    border: 2px solid transparent;
    border-radius: 10px;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--primary);
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 15px;
        font-size: 30px;
    }

    .lightbox-thumbnails-container {
        height: 90px;
    }

    .lightbox-thumb {
        height: 50px;
        width: 70px;
        min-width: 70px;
    }
}

/* ===================================
   MEDIA COVERAGE VIDEO GRID
   =================================== */
.video-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.video-card {
    background: linear-gradient(135deg, rgba(239, 127, 2, 0.6), rgba(239, 127, 2, 0.1), rgba(239, 127, 2, 0.6));
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(239, 127, 2, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 991px) {
    .video-grid-2 {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .video-grid-2 {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
}

/* ===================================
   DIGITAL COVERAGE GRID
   =================================== */
.digital-coverage-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .digital-coverage-list {
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .digital-coverage-list {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
}

.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* DIGITAL COVERAGE LOGO STYLES */
.logo-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
}

.coverage-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.4s ease;
}

.why-us-card:hover .logo-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(239, 127, 2, 0.15);
}

.why-us-card:hover .coverage-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* 404 PAGE STYLES */
.error-404-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--white);
}

.error-404-content {
    position: relative;
    z-index: 2;
}

.error-code-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.error-code {
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -5px;
    margin: 0;
    font-family: var(--font-heading);
}

.error-shape-1 {
    position: absolute;
    top: -20px;
    right: -30px;
    width: 60px;
    height: 60px;
    background: rgba(239, 127, 2, 0.1);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.error-shape-2 {
    position: absolute;
    bottom: -10px;
    left: -40px;
    width: 80px;
    height: 80px;
    background: rgba(239, 127, 2, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.error-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.error-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 120px;
    }

    .error-title {
        font-size: 32px;
    }
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulseWhatsApp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.call-float {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 123, 255, 0.6);
}

@keyframes pulseWhatsApp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 180px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(239, 127, 2, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(239, 127, 2, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .call-float {
        bottom: 85px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .scroll-top {
        bottom: 150px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}