/* ===================================
   Sandesh Services - Stylesheet
   =================================== */

:root {
    /* Color Palette */
    --primary-color: #FF6B35;
    --primary-dark: #E55100;
    --primary-light: #FFF3E0;
    --secondary-color: #1976D2;
    --secondary-dark: #1565C0;
    --secondary-light: #E3F2FD;
    --accent-gold: #FFA726;
    --accent-green: #2a9d8f;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f0f0f0;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FFA726 100%);
    --gradient-secondary: linear-gradient(135deg, #1976D2 0%, #2196F3 100%);
    --gradient-brand: linear-gradient(135deg, #FF6B35 0%, #1976D2 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Spacing */
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-normal: 0.3s ease;
    
    /* Border Radius */
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

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

/* ===================================
   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 3rem;
    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;
}

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

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}


/* 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.9rem;
    padding: 0.75rem 1.5rem;
    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-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

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

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

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

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

/* WhatsApp Chat Button */
.whatsapp-btn {
    background: var(--accent-green);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(42, 157, 143, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background: #1e8a7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -1px rgba(42, 157, 143, 0.4);
}

.whatsapp-btn i {
    font-size: 1.1rem;
}

/* 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(--dark-gray);
    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(7px, -7px);
}

/* 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 var(--light-gray);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.mobile-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.mobile-menu-close {
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    color: var(--dark-gray);
    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: var(--light-gray);
    color: var(--primary-color);
}

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

.mobile-nav-item {
    border-bottom: 1px solid var(--light-gray);
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--dark-gray);
    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(--medium-gray);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

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

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

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

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

/* ===================================
   HERO SECTION
   =================================== */

.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 31, 58, 0.85) 50%, rgba(15, 20, 25, 0.85) 100%),
                url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-modern-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-modern-background .bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero-modern-background .bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

.hero-modern-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-modern-content {
    color: var(--white);
}

.hero-modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-modern-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.25);
}

.hero-modern-badge i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-modern-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -1px;
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-modern-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-modern-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-modern i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.hero-modern-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.visual-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.visual-card:hover::before {
    transform: scaleX(1);
}

.visual-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-brand);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.card-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* ===================================
   SECTION STYLES
   =================================== */

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    scroll-margin-top: 80px;
    overflow-x: hidden;
}

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

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px dashed var(--primary-color);
    border-radius: 50px;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   ABOUT OUR COMPANY SECTION
   =================================== */

.about-company-section {
    padding: 100px 0;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.about-company-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-company-visual {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Animated Layers */
.tm-sc-animated-layer-advanced {
    position: relative;
    max-width: 100%;
    min-height: 580px;
}

.animated-layer-advanced-inner {
    position: relative;
    width: 100%;
    min-height: 580px;
}

.animated-layer-advanced-inner .layer-image-wrapper {
    position: relative;
    display: block;
    width: inherit;
    max-width: 100%;
    height: inherit;
    max-height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.animated-layer-advanced-inner .layer-image-wrapper:not(:first-child) {
    position: absolute;
}

.animated-layer-advanced-inner .layer-image-wrapper.layer-image {
    transition: all 1s ease;
    display: inline-block;
    position: relative;
}

.animated-layer-advanced-inner .layer-image-wrapper.layer-image .layer-image-inner-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.animated-layer-advanced-inner .layer-image-wrapper.layer-image .layer-image-inner-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

/* Image Hover Effect - Shine */
.image-hover-effect-shine:before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    transition: all 0.3s ease;
    z-index: 1;
}

.image-hover-effect-shine:hover:before {
    animation: shine 1s;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Floating Animation */
.tm-animation-floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Spin Animation */
.tm-animation-spin {
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Layer Positioning - Matching Template1 Layout */
.animated-layer-advanced-inner .layer-image-wrapper:nth-child(1) {
    width: 437px;
    max-width: 100%;
    height: auto;
    z-index: 1;
    position: relative;
}

.animated-layer-advanced-inner .layer-image-wrapper:nth-child(2) {
    width: 350px;
    max-width: 60%;
    height: auto;
    position: absolute;
    top: 360px;
    right: -170px;
    z-index: 2;
}

.animated-layer-advanced-inner .layer-image-wrapper:nth-child(2) img {
    border: solid 6px #fff;
}

.animated-layer-advanced-inner .layer-image-wrapper:nth-child(3) {
    width: 0;
    height: 0;
    position: absolute;
    top: 200px;
    right: 100px;
    z-index: 0;
    opacity: 0;
}

.animated-layer-advanced-inner .layer-image-wrapper:nth-child(4) {
    width: 209px;
    max-width: 48%;
    height: auto;
    position: absolute;
    bottom: 350px;
    left: 350px;
    z-index: 3;
}

/* Content Styles */
.about-company-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-title-wrapper {
    position: relative;
}

.sub-title-outer {
    position: relative;
    margin-bottom: 10px;
    display: inline-block;
}

.subtitle {
    position: relative;
    display: block;
    z-index: 1;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-top: 0;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.subtitle:before {
    position: absolute;
    right: -70px;
    bottom: 10px;
    content: "";
    background: var(--primary-color);
    height: 3px;
    width: 54px;
}

/* Hide subtitle line on smaller screens - moved to responsive section */

.section-title-main {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
    margin-bottom: 0;
}


.about-company-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.about-company-text p {
    margin: 0;
}

/* Actions Wrapper - List and Button */
.about-company-actions-wrapper {
    margin-top: 1rem;
}

.about-company-actions-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* List Styles */
.about-company-list {
    margin: 0;
}

.tm-sc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}

.tm-sc-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.tm-sc-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tm-sc-list li:hover i {
    transform: rotate(360deg);
}

.tm-sc-list li span {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Button Style 5 */
.theme-btn {
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    transition: all 300ms ease;
    text-decoration: none;
}

.btn-style5 {
    align-items: center;
    background-color: var(--primary-color);
    border-radius: 30px;
    color: var(--white);
    display: inline-flex;
    font-weight: 700;
    height: 56px;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
    transition: all 400ms ease;
    z-index: 0;
}

.btn-style5 .left-arrow {
    left: 7px;
    transform: scale(0);
    position: absolute;
}

.btn-style5 .btn-title {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    padding: 0px 70px 0 26px;
    text-transform: uppercase;
    transition: all 400ms ease;
}

.btn-style5 .left-arrow,
.btn-style5 .right-arrow {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 10px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    text-align: center;
    width: 40px;
    transition: all 400ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-style5 .right-arrow {
    left: auto;
    right: 7px;
    transform: scale(1);
}

.btn-style5:hover .left-arrow {
    transform: scale(1);
}

.btn-style5:hover .btn-title {
    transform: translateX(37px);
}

.btn-style5:hover .right-arrow {
    transform: scale(0);
}


/* ===================================
   ABOUT SANDESH SERVICES SECTION
   =================================== */

.about-sandesh-section {
    padding: 100px 0;
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}

/* Section Header */
.about-sandesh-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 1;
}

.about-sandesh-intro {
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.about-sandesh-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--medium-gray);
    margin: 0;
}

/* Experience Card in Header */
.about-sandesh-header .experience-highlight-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: left;
    justify-content: flex-start;
}

/* Main Content Grid - Professional Layout */
.about-sandesh-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Left Column: Image and Experience */
.about-sandesh-left {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-sandesh-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background: var(--white);
    padding: 8px;
}

.about-sandesh-image-wrapper .image-hover-effect-shine {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.about-sandesh-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.6s ease;
}

.about-sandesh-image-wrapper:hover .about-sandesh-image {
    transform: scale(1.02);
}

/* Experience Card - Professional Design */
.experience-highlight-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.experience-highlight-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.experience-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--gradient-brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

.experience-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

.experience-content {
    flex: 1;
}

.experience-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin: 0;
}

.experience-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.3;
}

.experience-description {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

/* Right Column: Vision, Mission, and Features */
.about-sandesh-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Vision and Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.vision-mission-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vision-mission-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.vm-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.vm-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.vm-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

.vision-mission-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
}

/* Key Functionality - Professional Design */
.key-functionality-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.key-functionality-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.key-functionality-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.key-functionality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.functionality-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.functionality-item:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(5px);
}

.functionality-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.functionality-icon i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.functionality-item span {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
}

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

.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-wrapper {
    position: relative;
    z-index: 1;
}

.how-it-work-section .section-title-wrapper .section-title-main {
    color: var(--white);
}

.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: var(--primary-color);
    transform: translateY(-5px);
}

.working-block-style4 .inner-box:hover .content-box .working-count {
    background-color: var(--accent-gold);
    border-color: transparent;
    color: var(--white);
}

.working-block-style4 .inner-box:hover .content-box .working-title {
    color: var(--white);
}

.working-block-style4 .inner-box:hover .content-box .working-details .item {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--white);
    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;
}

.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);
    }
}

/* ===================================
   OUR SERVICES SECTION (ABOUT PAGE)
   =================================== */
.our-services-about-section {
    padding: 100px 0;
    background: var(--white);
}

.services-about-wrapper {
    position: relative;
}

.our-services-about-section .section-title-wrapper {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 4rem;
}

.our-services-about-section .sub-title-outer {
    display: inline-block;
    margin: 0 auto;
}

.services-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-about-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 107, 53, 0.2);
}

.service-about-card:hover::before {
    transform: scaleX(1);
}

.service-about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(25, 118, 210, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-about-card:hover .service-about-icon {
    background: var(--gradient-brand);
    transform: scale(1.1);
}

.service-about-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-about-card:hover .service-about-icon i {
    color: var(--white);
}

.service-about-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 1rem 0;
    transition: color 0.3s ease;
}

.service-about-card:hover .service-about-title {
    color: var(--primary-color);
}

.service-about-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0;
}

.services-about-button-wrapper {
    text-align: center;
    margin-top: 3.5rem;
}

/* ===================================
   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);
}

/* Centered Header Section */
.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(255, 107, 53, 0.1);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    font-family: var(--font-primary);
}

.product-detail-header .product-detail-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--dark-gray);
    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-color);
    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(--medium-gray);
    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;
}

.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: var(--radius-lg);
    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(255, 107, 53, 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: var(--gradient-brand);
    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(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.product-image-badge i {
    font-size: 1rem;
}

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

.product-benefits {
    margin-bottom: 2.5rem;
}

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

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.product-uses {
    margin-bottom: 2.5rem;
}

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

.uses-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.use-tag {
    background: rgba(255, 255, 255, 0.8);
    color: var(--dark-gray);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1.5px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.use-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.product-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-brand);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.product-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.product-cta-btn i {
    transition: transform 0.3s ease;
}

.product-cta-btn:hover i {
    transform: translateX(5px);
}

.spec-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.spec-content {
    text-align: left;
}

.spec-content h4 {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.spec-content p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

/* ===================================
   OUR SERVICES SECTION
   =================================== */

.our-services-section {
    padding: 100px 0 50px;
    background-image: url('images/sec-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    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: 50px;
    text-align: center;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.our-services-section .section-title-wrapper .subtitle {
    text-align: center;
    color: var(--primary-color);
}

.our-services-section .section-title-wrapper .section-title-main {
    text-align: center;
    color: var(--white);
}

.service-blocks-list {
    margin-top: 50px;
    max-width: 100%;
}

.service-item {
    margin-bottom: 0;
}

.service-item:not(:last-child) {
    margin-bottom: 0;
}

/* Service Block Style 18 */
.service-block-style18 .inner-box {
    position: relative;
    padding: 20px 0;
    border-top: 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;
    max-width: 338px;
    height: 120px;
    opacity: 0;
    border-radius: 20px;
    visibility: hidden;
    margin-right: 15px;
    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.3s 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: 35px;
    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;
}

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

.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-primary);
    color: var(--white);
    transition: all 0.3s ease;
}

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

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

.service-block-style18 .inner-box .content-box .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

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

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

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

.why-choose-us-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(25, 118, 210, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

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

.why-choose-us-section .section-title-wrapper {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.why-choose-us-section .section-title-wrapper .subtitle {
    color: var(--primary-color);
}

.why-choose-us-section .section-title-wrapper .section-title-main {
    color: var(--dark-gray);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-choose-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(25, 118, 210, 0.08) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.why-choose-card:hover .icon-bg {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(25, 118, 210, 0.15) 100%);
}

.card-icon-wrapper i {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-icon-wrapper i {
    color: var(--primary-color);
    transform: scale(1.05);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.why-choose-card:hover .card-title {
    color: var(--primary-color);
}

.card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0;
    transition: color 0.3s ease;
}

.why-choose-card:hover .card-description {
    color: var(--dark-gray);
}

/* ===================================
   FUNFACT SECTION
   =================================== */

.funfact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.funfact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(25, 118, 210, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.funfact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.funfact-content {
    color: var(--white);
}

.funfact-section .section-title-wrapper {
    margin-bottom: 1.5rem;
}

.funfact-section .section-title-wrapper .subtitle {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.funfact-section .section-title-wrapper .section-title-main {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.funfact-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.funfact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.funfact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.funfact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.funfact-card:hover::before {
    transform: scaleX(1);
}

.funfact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.funfact-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.funfact-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.funfact-card:hover .funfact-icon i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.8));
}

.funfact-counter {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin: 0 0 1rem 0;
    font-family: var(--font-primary);
}

.funfact-counter .animate-number {
    display: inline-block;
}

.funfact-title-wrapper {
    margin-top: 0.5rem;
}

.funfact-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

/* ===================================
   MOVING TEXT SECTION
   =================================== */

.moving-text-section {
    padding: 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.moving-text-wrapper {
    padding: 0;
    margin: 0;
}

.tm-marquee-parent {
    overflow: hidden;
    width: 100%;
    padding: 25px 0;
}

.tm-marquee-repeater {
    position: relative;
    --tm-marquee-animation-duration: 100s;
    --gap: 0px;
    display: flex;
    user-select: none;
    gap: var(--gap);
}

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

.tm-marquee-repeater .text {
    position: relative;
    color: #000;
    font-size: 24px;
    /* font-weight: 600; */
    line-height: 1.3;
    padding: 0 30px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-family: var(--font-primary);
    gap: 10px;
}

.tm-marquee-repeater .text i {
    font-size: 20px;
    color: #000;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}


/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.testimonials-wrapper {
    position: relative;
}

.testimonials-section .section-title-wrapper {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.testimonials-section .section-title-wrapper .subtitle {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.testimonials-section .section-title-wrapper .section-title-main {
    color: var(--dark-gray);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 60px;
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04); */
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    /* transform: translateY(-2px); */
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.05); */
    border-color: rgba(255, 107, 53, 0.1);
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.star-rating i {
    font-size: 20px;
    color: #f1c40f;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0 0 8px 0;
}

.author-position {
    font-size: 14px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.slider-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.slider-btn:active {
    transform: translateY(-1px);
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: var(--primary-color);
    width: 14px;
    height: 14px;
    border-color: var(--primary-color);
}

.slider-dots .dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: floatShape 8s ease-in-out infinite;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.3) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-delay: 2s;
}

.cta-shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

.cta-pattern-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: 50px 50px;
    opacity: 0.4;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.cta-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content {
    color: var(--white);
    text-align: center;
    width: 100%;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.cta-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.cta-badge i {
    color: var(--primary-color);
    font-size: 1rem;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.cta-title .title-line-1 {
    display: block;
}

.cta-title .title-line-2 {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 100%;
}

.cta-icon-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-grid-item {
    position: relative;
}

.cta-icon-box {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.cta-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.cta-icon-box i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.cta-icon-box:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.cta-icon-box:hover::before {
    opacity: 0.2;
}

.cta-icon-box:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-color);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section .section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-section .section-description {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 1rem;
    line-height: 1.8;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 107, 53, 0.2);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

.faq-question {
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.02);
}

.faq-item.active .faq-question {
    background: rgba(255, 107, 53, 0.05);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.5;
    flex: 1;
    padding-right: 2rem;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--primary-color);
    transform: rotate(45deg);
}

.faq-item.active .faq-icon i {
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
    padding-top: 1rem;
}

/* ===================================
   FOOTER SECTION
   =================================== */

.footer-modern {
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    color: var(--white);
    overflow: hidden;
}

.footer-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: inline-block;
    width: fit-content;
}

.footer-logo-img {
    height: 130px;
    object-fit: contain;
    /* margin-bottom: 1.5rem; */
    background: var(--white);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.footer-logo-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 20px rgba(255, 107, 53, 0.3);
    border-color: var(--primary-color);
    border-width: 4px;
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

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

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-menu li a i {
    font-size: 0.7rem;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-menu li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-menu li a:hover i {
    color: var(--white);
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact li:hover .contact-icon {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.contact-details a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 3rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 2rem;
}

.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-copyright p span {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   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);
}

@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: 110px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: var(--gradient-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(255, 107, 53, 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(255, 107, 53, 0.5);
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

/* Page Hero */
.page-hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 120px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(26, 26, 26, 0.80) 50%, rgba(15, 15, 15, 0.85) 100%),
                radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(25, 118, 210, 0.15) 0%, transparent 50%);
    z-index: 0;
}


.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.breadcrumb-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.breadcrumb-link:hover {
    color: var(--primary-color);
    transform: translateX(-2px);
}

.breadcrumb-link i {
    color: var(--primary-color);
    font-size: 1rem;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    font-weight: 300;
}

.breadcrumb-current {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Policy Section Styles */
.policy-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.policy-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.policy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.policy-section-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.policy-section-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section-item h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.policy-section-item h3 {
    font-size: 1.35rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-section-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.policy-section-item ul,
.policy-section-item ol {
    margin: 1rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.policy-section-item li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.policy-section-item ul li {
    list-style-type: disc;
}

.policy-section-item ol li {
    list-style-type: decimal;
}

.policy-section-item a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition-normal);
}

.policy-section-item a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.policy-section-item strong {
    color: var(--black);
    font-weight: 600;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
    text-align: center;
}

.policy-footer p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    font-style: italic;
}

/* Contact Section Title Wrapper */
.section .section-title-wrapper {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.section .section-title-wrapper .sub-title-outer {
    display: inline-block;
    margin: 0 auto;
}

.section .section-title-wrapper .subtitle {
    color: var(--primary-color);
}

.section .section-title-wrapper .section-title-main {
    color: var(--dark-gray);
}

.section .section-title-wrapper .section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 1rem auto 0;
    text-align: center;
}

/* Contact Wrapper */
.contact-wrapper {
    margin-top: 3rem;
}

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

.contact-info-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

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

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

.contact-info-card h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card p a.address-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.contact-info-card p a.address-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

/* Contact Social Media Section */
.contact-social-section {
    margin: 3rem 0 4rem;
}

.contact-social-wrapper {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(25, 118, 210, 0.05) 100%);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.contact-social-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.contact-social-wrapper h3 {
    font-size: 1.75rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-social-wrapper p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--light-gray);
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    min-width: 100px;
    box-shadow: var(--shadow-sm);
}

.contact-social-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-social-icon span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    background: var(--white);
}

.contact-social-icon:hover i {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.contact-social-icon:hover span {
    color: var(--primary-color);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-gray);
}

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

.contact-form-header h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
}

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

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

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--off-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    background: var(--white);
}

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

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    min-height: 0;
}

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

.error-message:empty {
    display: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Form Consent Checkboxes */
.form-consent {
    margin: 2rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
}

.consent-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.consent-checkbox label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.6;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
    user-select: none;
}

.consent-checkbox:hover label {
    color: var(--primary-color);
}

/* Form Link Styles */
.consent-checkbox label a,
.contact-form-modern a,
.form-consent a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease;
}

.consent-checkbox label a:hover,
.contact-form-modern a:hover,
.form-consent a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.consent-checkbox label a:focus,
.contact-form-modern a:focus,
.form-consent a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

.consent-checkbox.error input[type="checkbox"] {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

.consent-checkbox .error-message {
    position: absolute;
    bottom: -20px;
    left: 28px;
    font-size: 0.85rem;
    color: #e74c3c;
    display: none;
}

.consent-checkbox.error .error-message {
    display: block;
}

/* Form Actions */
.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-submit i {
    transition: transform 0.3s ease;
    margin-right: 10px;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

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

.btn-submit .btn-loader {
    display: none;
}

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

/* Form Messages */
.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: none;
    align-items: center;
    gap: 1rem;
}

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

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

.form-message h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

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

.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.success-message i {
    color: #28a745;
}

.error-message-box {
    background: #f8d7da;
    border: 2px solid #e74c3c;
    color: #721c24;
}

.error-message-box i {
    color: #e74c3c;
}

/* Map Container */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.map-container iframe {
    display: block;
    border: none;
}

.map-actions {
    text-align: center;
    margin-top: 2rem;
}

.map-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.map-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.map-actions .btn-primary {
    background: var(--gradient-primary);
}


.section-alt {
    background: var(--off-white);
    padding: 5rem 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet and below (1200px) */
@media (max-width: 1200px) {
    /* Product/Service Detail Section */
    .product-detail-wrapper {
        gap: 3rem;
    }
    
    .product-detail-header .product-detail-title {
        font-size: 2.5rem;
    }
    
    .product-image-container img {
        height: 450px;
    }
    
    .product-detail-header .product-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
    /* Subtitle */
    .subtitle:before {
        display: none;
    }
    
    /* Hero Modern Section */
    .hero-modern-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-modern-description {
        max-width: 100%;
    }
    
    .hero-modern-actions {
        justify-content: center;
    }
    
    .visual-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* About Company Section */
    .about-company-section {
        padding: 80px 0;
    }
    
    .about-company-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-company-visual {
        order: -1;
        min-height: 400px;
    }
    
    .tm-sc-animated-layer-advanced {
        min-height: 400px;
    }
    
    .animated-layer-advanced-inner {
        min-height: 400px;
    }
    
    .animated-layer-advanced-inner .layer-image-wrapper:nth-child(1) {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
    
    .animated-layer-advanced-inner .layer-image-wrapper:nth-child(2) {
        width: 100%;
        max-width: 250px;
        height: auto;
        top: 260px;
        right: -140px;
    }
    
    .animated-layer-advanced-inner .layer-image-wrapper:nth-child(4) {
        width: 100%;
        max-width: 150px;
        height: auto;
        bottom: 315px;
        left: 300px;
    }
    
    .about-company-actions-wrapper {
        margin-top: 1rem;
    }
    
    /* About Sandesh Section */
    .about-sandesh-section {
        padding: 80px 0;
    }
    
    .about-sandesh-header {
        margin-bottom: 50px;
    }
    
    .about-sandesh-wrapper {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .about-sandesh-left {
        order: 1;
    }
    
    .about-sandesh-right {
        order: 2;
    }
    
    .experience-highlight-card {
        padding: 2rem;
    }
    
    .experience-number {
        font-size: 2rem;
    }
    
    .key-functionality-grid {
        grid-template-columns: 1fr;
    }
    
    /* Our Services About Section */
    .our-services-about-section {
        padding: 80px 0;
    }
    
    .services-about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-about-button-wrapper {
        margin-top: 2.5rem;
    }
    
    /* How It Works Section */
    .how-it-work-section {
        margin: 0 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;
    }
    
    .working-block-style4 .content-box {
        padding: 40px 25px;
    }
    
    .working-block-style4 .content-box .working-title {
        font-size: 20px;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Navigation */
    .whatsapp-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Why Choose Us Section */
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Contact Page */
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Tablet and below (968px) */
@media (max-width: 968px) {
    /* Product/Service Detail Section */
    .product-detail-section {
        padding: 4rem 0;
    }
    
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-detail-header {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .product-detail-header .product-number {
        font-size: 8rem;
        top: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .product-detail-header .product-detail-title {
        font-size: 2.2rem;
    }
    
    .product-image-container img {
        height: 400px;
    }
    
    .product-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-header .product-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile and below (768px) */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .whatsapp-btn {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 55px;
    }
    
    /* Hero Modern Section */
    .hero-modern {
        min-height: auto;
        padding: 140px 0 60px;
    }
    
    .visual-card {
        padding: 1.5rem;
    }
    
    .hero-modern-visual {
        grid-template-columns: 1fr;
    }
    
    .about-company-section {
        padding: 60px 0;
    }
    
    .about-company-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-company-visual {
        order: -1;
        height: 300px;
    }
    
    .tm-sc-animated-layer-advanced {
        height: 300px;
    }
    
    .animated-layer-advanced-inner .layer-image-wrapper:nth-child(1) {
        width: 100%;
        max-width: 280px;
        height: auto;
    }
    
    .animated-layer-advanced-inner .layer-image-wrapper:nth-child(2) {
        width: 100%;
        max-width: 150px;
        height: auto;
        top: 230px;
        right: -80px;
    }
    
    .animated-layer-advanced-inner .layer-image-wrapper:nth-child(4) {
        width: 100%;
        max-width: 120px;
        height: auto;
        bottom: 270px;
        left: 230px;
    }
    
    .section-title-main {
        font-size: 2rem;
    }
    
    .about-company-text {
        font-size: 0.95rem;
    }
    
    .about-company-actions-wrapper {
        margin-top: 1rem;
    }
    
    /* Our Services Section */
    .our-services-section {
        padding: 50px 0;
        margin: 30px 15px;
        border-radius: 30px;
    }
    
    .our-services-section::before {
        border-radius: 30px;
    }
    
    .our-services-section .section-title-wrapper {
        text-align: left;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .our-services-section .section-title-wrapper .subtitle {
        text-align: left;
    }
    
    .our-services-section .section-title-wrapper .section-title-main {
        text-align: left;
    }
    
    .service-block-style18 .inner-box {
        padding: 20px 0;
    }
    
    .service-block-style18 .inner-box:hover .content-box,
    .service-block-style18 .inner-box.active .content-box {
        padding-left: 0;
    }
    
    .service-block-style18 .inner-box .image-box {
        position: relative;
        max-width: 100%;
        height: 120px;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-bottom: 20px;
        margin-right: 0;
        top: 0;
        left: 0;
    }
    
    .service-block-style18 .inner-box:hover .image-box,
    .service-block-style18 .inner-box.active .image-box {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .service-block-style18 .inner-box .content-box {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }
    
    .service-block-style18 .inner-box .content-box .title-box {
        gap: 15px;
        align-items: flex-start;
    }
    
    .service-block-style18 .inner-box .content-box .title-box .number {
        display: none;
    }
    
    .service-block-style18 .inner-box .content-box .title-box .service-title {
        font-size: 24px;
        line-height: 1.2;
        text-align: left;
    }
    
    .service-block-style18 .inner-box .content-box .icon-box {
        align-self: flex-start;
    }
    
    .service-block-style18 .inner-box:hover .content-box .icon-box .icon,
    .service-block-style18 .inner-box.active .content-box .icon-box .icon {
        transform: none;
    }
    
    .tm-sc-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Why Choose Us Section */
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .why-choose-us-section .section-title-wrapper {
        margin-bottom: 40px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .card-icon-wrapper i {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    /* Funfact Section */
    .funfact-section {
        padding: 60px 0;
    }
    
    .funfact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .funfact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .funfact-card {
        padding: 2rem 1.5rem;
    }
    
    .funfact-icon i {
        font-size: 2.5rem;
    }
    
    .funfact-counter {
        font-size: 2.5rem;
    }
    
    .funfact-title {
        font-size: 1rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-icon-grid {
        gap: 1rem;
    }
    
    .cta-icon-box {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Moving Text Section */
    .tm-marquee-parent {
        padding: 20px 0;
    }
    
    .tm-marquee-repeater .text {
        font-size: 20px;
        padding: 0 20px;
    }
    
    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .section-title-wrapper {
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .testimonial-text {
        font-size: 18px;
        line-height: 1.7;
    }
    
    .quote-icon i {
        font-size: 50px;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .slider-controls {
        gap: 20px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* About Sandesh Section */
    .about-sandesh-section {
        padding: 60px 0;
    }
    
    .about-sandesh-header {
        margin-bottom: 40px;
    }
    
    .about-sandesh-intro {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .about-sandesh-intro p {
        font-size: 1rem;
    }
    
    .about-sandesh-header .experience-highlight-card {
        padding: 1.75rem 1.5rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-sandesh-wrapper {
        gap: 2.5rem;
    }
    
    .about-sandesh-left {
        gap: 2rem;
    }
    
    .about-sandesh-right {
        gap: 2rem;
    }
    
    .experience-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .experience-icon i {
        font-size: 1.5rem;
    }
    
    .experience-header {
        flex-direction: row;
        /* align-items: flex-start; */
        gap: 0.5rem;
        justify-content: center;
    }
    
    .experience-number {
        font-size: 1.75rem;
    }
    
    .experience-title {
        font-size: 1.1rem;
    }
    
    .experience-description {
        font-size: 0.9rem;
    }
    
    .vision-mission-card {
        padding: 1.5rem;
    }
    
    .vision-mission-card p {
        font-size: 0.95rem;
    }
    
    .key-functionality-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .key-functionality-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .key-functionality-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .functionality-item {
        padding: 0.75rem;
    }
    
    .functionality-item span {
        font-size: 0.9rem;
    }
    
    /* How It Works Section */
    .how-it-work-section {
        margin: 0 15px;
        padding: 60px 0;
        border-radius: 30px;
    }
    
    .how-it-work-section::before {
        border-radius: 30px;
    }
    
    .working-blocks-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .working-block-style4 .shape-image1 {
        display: none;
    }
    
    .working-block-style4 .content-box {
        padding: 40px 25px;
    }
    
    .working-block-style4 .content-box .working-title {
        font-size: 20px;
    }
    
    .working-block-style4 .content-box .working-count {
        font-size: 28px;
        padding: 7px 20px 11px;
        right: 20px;
        top: -25px;
    }
    
    /* Our Services About Section */
    .our-services-about-section {
        padding: 60px 0;
    }
    
    .services-about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-about-card {
        padding: 2rem 1.5rem;
    }
    
    .service-about-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .service-about-icon i {
        font-size: 1.75rem;
    }
    
    .service-about-title {
        font-size: 1.25rem;
    }
    
    .service-about-description {
        font-size: 0.9rem;
    }
    
    .services-about-button-wrapper {
        margin-top: 2rem;
    }
    
    /* Product/Service Detail Section */
    .product-detail-section {
        padding: 3rem 0;
    }
    
    .product-detail-header {
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .product-detail-header .product-number {
        font-size: 6rem;
        top: -1rem;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .product-detail-header .product-detail-title {
        font-size: 1.8rem;
    }
    
    .product-detail-header .product-detail-subtitle {
        font-size: 1.1rem;
    }
    
    .product-detail-header .product-detail-description {
        font-size: 1rem;
    }
    
    .product-image-container img {
        height: 350px;
    }
    
    .product-image-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .spec-item {
        padding: 1.2rem;
    }
    
    .product-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .product-detail-header .product-specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-wrapper {
        max-width: 100%;
    }
    
    .faq-section .section-title-wrapper {
        margin-bottom: 3rem;
    }
    
    .faq-question {
        padding: 1.5rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
        padding-right: 1.5rem;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-container {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }
    
    /* Contact Page */
    .page-hero {
        min-height: 400px;
        padding: 160px 0px 90px;
        background-attachment: scroll;
    }
    
    .page-hero-title {
        font-size: 3rem;
        margin-bottom: 1.75rem;
    }
    
    .breadcrumb-nav {
        padding: 0.875rem 1.75rem;
        gap: 0.75rem;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.9rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-social-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-social-icons {
        gap: 1rem;
    }
    
    .contact-social-icon {
        min-width: 80px;
        padding: 1rem;
    }
    
    /* Policy Section */
    .policy-section {
        padding: 60px 0;
    }
    
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .policy-section-item h2 {
        font-size: 1.5rem;
    }
    
    .policy-section-item h3 {
        font-size: 1.2rem;
    }
    
    .policy-section-item p,
    .policy-section-item li {
        font-size: 1rem;
    }
    
    /* Floating Buttons */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 80px;
        right: 20px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-icon-grid {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .cta-icon-box {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Page Hero */
    .page-hero {
        min-height: 350px;
        padding: 140px 0px 80px;
        background-attachment: scroll;
    }
    
    .page-hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .breadcrumb-nav {
        padding: 0.75rem 1.5rem;
        gap: 0.5rem;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.85rem;
    }
    
    .breadcrumb-sep {
        font-size: 0.85rem;
    }
    
    /* Policy Section */
    .policy-section {
        padding: 40px 0;
    }
    
    .policy-content {
        padding: 1.5rem 1rem;
    }
    
    .policy-intro {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .policy-section-item {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .policy-section-item h2 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    
    .policy-section-item h3 {
        font-size: 1.1rem;
        margin-top: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .policy-section-item p,
    .policy-section-item li {
        font-size: 0.95rem;
    }
    
    .policy-section-item ul,
    .policy-section-item ol {
        margin-left: 1.5rem;
        padding-left: 0.5rem;
    }
    
    .policy-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 1.25rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .faq-icon {
        width: 32px;
        height: 32px;
    }
    
    .faq-icon i {
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .product-image-container img {
        height: 210px;
    }
}

/* 404 Error Page Styles */
.error-404-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.90) 50%, rgba(15, 15, 15, 0.95) 100%),
                radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(25, 118, 210, 0.12) 0%, transparent 50%);
}

.error-404-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.error-404-background .bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(25, 118, 210, 0.1) 100%);
}

.error-404-background .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.error-404-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.error-404-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.error-404-number {
    font-size: clamp(8rem, 15vw, 12rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
}

.error-404-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.error-404-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.error-404-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.error-404-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.error-404-links {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-404-links p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.error-links-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-links-list li {
    margin: 0;
}

.error-links-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.error-links-list a:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.error-links-list a i {
    font-size: 0.9rem;
}

/* Responsive Styles for 404 Page */
@media (max-width: 768px) {
    .error-404-section {
        padding: 120px 0 80px;
        min-height: 70vh;
    }
    
    .error-404-icon {
        font-size: 3rem;
    }
    
    .error-404-number {
        font-size: 6rem;
    }
    
    .error-404-title {
        font-size: 2rem;
    }
    
    .error-404-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .error-404-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .error-404-actions .theme-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .error-links-list {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .error-links-list a {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .error-404-section {
        padding: 100px 0 60px;
    }
    
    .error-404-icon {
        font-size: 2.5rem;
    }
    
    .error-404-number {
        font-size: 5rem;
    }
    
    .error-404-title {
        font-size: 1.75rem;
    }
    
    .error-404-description {
        font-size: 0.95rem;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .tm-marquee-repeater .tm-marquee-group {
        animation-play-state: paused;
    }
    
    .error-404-icon {
        animation: none;
    }
}

