/* ============================
   HIND IT SOLUTION - 3D CREATIVE DESIGN
   Inspired by Growtele.com
   ============================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #F47721;
    --primary-dark: #D96A1B;
    --primary-light: #FFA54F;
    --navy: #1B2A4A;
    --navy-light: #2C3E5A;
    --dark: #1a1a2e;
    --gray: #6B7B8D;
    --light: #F8F9FC;
    --white: #FFFFFF;
    --gradient-orange: linear-gradient(135deg, #F47721 0%, #FFA54F 100%);
    --gradient-navy: linear-gradient(135deg, #1B2A4A 0%, #2C3E5A 100%);
    --shadow-3d: 0 20px 60px rgba(27, 42, 74, 0.15);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(244, 119, 33, 0.2);
    --radius: 20px;
    --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--navy);
}

.section-title span {
    color: var(--primary);
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(244, 119, 33, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::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: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(244, 119, 33, 0.45);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--navy);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.btn-link:hover { gap: 14px; }

/* ============================
   TOP BAR
   ============================ */
.top-bar {
    background: var(--navy);
    padding: 8px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 20px;
}

.top-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-left span i { color: var(--primary); }

.top-right {
    display: flex;
    gap: 15px;
}

.top-right a {
    color: var(--white);
    text-decoration: none;
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: background 0.3s;
}

.top-right a:hover { background: var(--primary-dark); }

/* ============================
   HEADER
   ============================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.logo a { text-decoration: none; display: flex; align-items: center; }

.logo img {
    height: 42px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.nav-cta {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: all 0.3s;
}

/* ============================
   HERO SECTION - 3D
   ============================ */
.hero {
    position: relative;
    padding: 80px 0 40px;
    overflow: hidden;
    background: var(--light);
}

.inner-hero {
    padding: 60px 0 40px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(244, 119, 33, 0.06);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(27, 42, 74, 0.04);
    bottom: -50px;
    left: -80px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(244, 119, 33, 0.08);
    top: 50%;
    left: 40%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 20px;
}

.hero-content h1 span { color: var(--primary); }

.hero-content p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero 3D Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-3d-card {
    position: relative;
    width: 380px;
    height: 380px;
}

.hero-main-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(244, 119, 33, 0.3), inset 0 -5px 15px rgba(0,0,0,0.1);
    animation: float3d 4s ease-in-out infinite;
}

.hero-main-circle i {
    font-size: 4rem;
    color: var(--white);
}

@keyframes float3d {
    0%, 100% { transform: translate(-50%, -50%) translateY(0) rotateX(0); }
    50% { transform: translate(-50%, -50%) translateY(-15px) rotateX(5deg); }
}

.hero-float {
    position: absolute;
    animation: floatCard 3s ease-in-out infinite;
}

.float-inner {
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(244, 119, 33, 0.1);
}

.float-inner i {
    color: var(--primary);
    font-size: 1.1rem;
}

.float-inner span {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--navy);
}

.float-1 { top: 20px; right: 30px; animation-delay: 0s; }
.float-2 { bottom: 60px; left: 10px; animation-delay: 1s; }
.float-3 { bottom: 20px; right: 20px; animation-delay: 2s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

/* Client Logos */
.client-logos {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.logos-track {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.logo-item i { color: var(--primary); font-size: 1.1rem; }

/* ============================
   PRODUCTS SECTION - 3D Icons
   ============================ */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

.products-icons-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.product-icon-card {
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s;
}

.product-icon-card:hover {
    transform: translateY(-8px);
}

.product-icon-3d {
    width: 110px;
    height: 110px;
    background: var(--gradient-orange);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 10px 30px rgba(244, 119, 33, 0.25), inset 0 -4px 8px rgba(0,0,0,0.1);
    transform: perspective(500px) rotateX(5deg) rotateY(-5deg);
    transition: all 0.3s;
}

.product-icon-card:hover .product-icon-3d {
    transform: perspective(500px) rotateX(0deg) rotateY(0deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(244, 119, 33, 0.35);
}

.product-icon-3d i {
    font-size: 2.8rem;
    color: var(--white);
}

.product-icon-3d.email-bg {
    background: linear-gradient(135deg, #1B2A4A, #34495E);
    box-shadow: 0 10px 30px rgba(27, 42, 74, 0.25), inset 0 -4px 8px rgba(0,0,0,0.1);
}

.product-icon-3d.web-bg {
    background: linear-gradient(135deg, #F47721, #E8650F);
    box-shadow: 0 10px 30px rgba(244, 119, 33, 0.25), inset 0 -4px 8px rgba(0,0,0,0.1);
}

.product-icon-3d.seo-bg {
    background: linear-gradient(135deg, #1B2A4A, #2C3E5A);
    box-shadow: 0 10px 30px rgba(27, 42, 74, 0.25), inset 0 -4px 8px rgba(0,0,0,0.1);
}

.product-icon-3d.software-bg {
    background: linear-gradient(135deg, #FFA54F, #F47721);
    box-shadow: 0 10px 30px rgba(244, 119, 33, 0.25), inset 0 -4px 8px rgba(0,0,0,0.1);
}

.product-icon-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

/* Featured Service */
.featured-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--light);
    padding: 50px;
    border-radius: var(--radius);
}

.featured-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.featured-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.featured-visual {
    display: flex;
    justify-content: center;
}

/* 3D Box */
.featured-3d-box {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(800px) rotateX(-10deg) rotateY(20deg);
    animation: rotate3d 6s ease-in-out infinite;
}

@keyframes rotate3d {
    0%, 100% { transform: perspective(800px) rotateX(-10deg) rotateY(20deg); }
    50% { transform: perspective(800px) rotateX(-5deg) rotateY(15deg); }
}

.box-face {
    position: absolute;
    border-radius: 16px;
}

.box-face.front {
    width: 180px;
    height: 180px;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(244, 119, 33, 0.3);
    z-index: 3;
}

.box-face.front i {
    font-size: 4rem;
    color: var(--white);
}

.box-face.side {
    width: 20px;
    height: 180px;
    background: var(--primary-dark);
    right: -10px;
    top: 10px;
    transform: skewY(-40deg);
    border-radius: 0 8px 8px 0;
    z-index: 2;
}

.box-face.top {
    width: 180px;
    height: 20px;
    background: var(--primary-light);
    top: -10px;
    left: 10px;
    transform: skewX(-40deg);
    border-radius: 8px 8px 0 0;
    z-index: 1;
}

/* ============================
   JOURNEY / INDUSTRIES
   ============================ */
.journey-section {
    padding: 100px 0;
    background: var(--light);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.journey-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.journey-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: var(--shadow-3d);
}

.journey-card-img {
    margin-bottom: 20px;
}

.journey-icon-3d {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(244, 119, 33, 0.2), inset 0 -3px 6px rgba(0,0,0,0.1);
    transform: perspective(500px) rotateX(5deg) rotateY(-5deg);
}

.journey-icon-3d i {
    font-size: 1.6rem;
    color: var(--white);
}

.journey-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.journey-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonial-featured {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-badge {
    width: 180px;
    height: 180px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(244, 119, 33, 0.3), inset 0 -5px 10px rgba(0,0,0,0.1);
    transform: perspective(500px) rotateY(-10deg);
}

.testimonial-badge span {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    line-height: 1.4;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author .author-avatar i {
    font-size: 2.5rem;
    color: var(--primary);
}

.testimonial-author h5 {
    font-weight: 600;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ============================
   WHY SECTION
   ============================ */
.why-section {
    padding: 100px 0;
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.why-card:hover {
    transform: translateY(-10px) perspective(500px) rotateX(3deg);
    box-shadow: var(--shadow-hover);
}

.why-card-3d {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 8px 20px rgba(244, 119, 33, 0.25), inset 0 -3px 6px rgba(0,0,0,0.15);
    transform: perspective(400px) rotateX(8deg) rotateY(-8deg);
    transition: transform 0.3s;
}

.why-card:hover .why-card-3d {
    transform: perspective(400px) rotateX(0deg) rotateY(0deg);
}

.why-card-3d i {
    font-size: 1.8rem;
    color: var(--white);
}

.why-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ============================
   STATS - 3D Cards (Growtele Style)
   ============================ */
.stats-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600'%3E%3Cpath fill='none' stroke='%23e8e8e8' stroke-width='1' d='M0 300 C300 200 500 400 720 300 S1200 200 1440 300'/%3E%3Cpath fill='none' stroke='%23e8e8e8' stroke-width='1' d='M0 350 C300 250 500 450 720 350 S1200 250 1440 350'/%3E%3Cpath fill='none' stroke='%23e8e8e8' stroke-width='1' d='M0 250 C300 150 500 350 720 250 S1200 150 1440 250'/%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.5;
}

.stats-3d-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-3d-card {
    perspective: 600px;
}

.stat-3d-inner {
    width: 180px;
    height: 180px;
    background: var(--white);
    border: 3px solid var(--primary);
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 8px 8px 0 var(--primary);
    position: relative;
}

.stat-3d-card:nth-child(2) .stat-3d-inner {
    transform: rotate(3deg);
    border-color: #3B82F6;
    box-shadow: 8px 8px 0 #3B82F6;
}

.stat-3d-card:nth-child(3) .stat-3d-inner {
    transform: rotate(-3deg);
    border-color: #F47721;
    box-shadow: 8px 8px 0 #F47721;
}

.stat-3d-card:nth-child(4) .stat-3d-inner {
    transform: rotate(5deg);
    border-color: #EF4444;
    box-shadow: 8px 8px 0 #EF4444;
}

.stat-3d-inner:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.05);
    box-shadow: 12px 12px 0 var(--primary);
}

.stat-3d-card:nth-child(2) .stat-3d-inner:hover {
    box-shadow: 12px 12px 0 #3B82F6;
}

.stat-3d-card:nth-child(3) .stat-3d-inner:hover {
    box-shadow: 12px 12px 0 #F47721;
}

.stat-3d-card:nth-child(4) .stat-3d-inner:hover {
    box-shadow: 12px 12px 0 #EF4444;
}

.stat-3d-inner i {
    font-size: 2.2rem;
    color: #EF4444;
    margin-bottom: 10px;
}

.stat-3d-card:nth-child(2) .stat-3d-inner i {
    color: #3B82F6;
}

.stat-3d-card:nth-child(3) .stat-3d-inner i {
    color: #10B981;
}

.stat-3d-card:nth-child(4) .stat-3d-inner i {
    color: #F59E0B;
}

.stat-3d-inner h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 3px;
    font-style: italic;
}

.stat-3d-inner p {
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 600;
    font-style: italic;
}

/* ============================
   CONTACT CTA - Wave Design
   ============================ */
.contact-cta {
    padding: 80px 0;
    background: var(--gradient-navy);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(244, 119, 33, 0.08);
    border-radius: 50%;
}

.contact-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: rgba(244, 119, 33, 0.05);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-content ul li {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.cta-content ul li i {
    color: var(--primary);
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand h3 span { color: var(--primary); }

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand > p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
}
.social-links a:nth-child(1) { background: #1877F2; }
.social-links a:nth-child(2) { background: #000; }
.social-links a:nth-child(3) { background: #0A66C2; }
.social-links a:nth-child(4) { background: #E4405F; }
.social-links a:nth-child(5) { background: #25D366; }

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.85;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.social-links a:hover { background: var(--primary); }

.footer-col h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--primary); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.footer-contact li i { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--primary); }

/* ============================
   PAGE BANNER (Inner Pages)
   ============================ */
.page-banner {
    padding: 140px 0 70px;
    background: var(--gradient-navy);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Banner with background image */
.page-banner.has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-banner.has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(27, 42, 74, 0.7);
    z-index: 1;
}

/* No overlay - show image clearly */
.page-banner.no-overlay::before {
    display: none;
}

.page-banner.no-overlay {
    padding: 0;
    min-height: 350px;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(244, 119, 33, 0.06);
    border-radius: 50%;
    z-index: 0;
}

.page-banner h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.page-banner h1 span { color: var(--primary); }

.page-banner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 550px;
    margin: 0 auto;
}

/* ============================
   SERVICES PAGE - 3D Blocks
   ============================ */
.services-detail {
    padding: 80px 0;
}

.services-detail.alt-bg {
    background: var(--light);
}

.service-block {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-block-icon { flex: 0 0 200px; display: flex; justify-content: center; }

.service-icon-box {
    width: 160px;
    height: 160px;
    background: var(--gradient-orange);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(244, 119, 33, 0.3), inset 0 -5px 10px rgba(0,0,0,0.1);
    transform: perspective(500px) rotateX(5deg) rotateY(-5deg);
    transition: transform 0.4s;
}

.service-icon-box:hover {
    transform: perspective(500px) rotateX(0) rotateY(0);
}

.service-icon-box i { font-size: 3.5rem; color: var(--white); }

.service-icon-box.navy-bg {
    background: var(--gradient-navy);
    box-shadow: 0 20px 50px rgba(27, 42, 74, 0.3), inset 0 -5px 10px rgba(0,0,0,0.15);
}

.service-block-text { flex: 1; }

.service-block-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy);
}

.service-block-text p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--dark);
    font-size: 0.95rem;
}

.service-features li i { color: var(--primary); font-size: 1rem; }

/* ============================
   INDUSTRIES PAGE
   ============================ */
.industries-page { padding: 80px 0; }

.industries-page .industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.industry-card-full {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    display: flex;
    gap: 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.industry-card-full:hover {
    transform: translateY(-8px) perspective(500px) rotateX(2deg);
    box-shadow: var(--shadow-3d);
    border-color: var(--primary);
}

.industry-card-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: var(--gradient-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(244, 119, 33, 0.2), inset 0 -3px 6px rgba(0,0,0,0.1);
    transform: perspective(400px) rotateX(5deg) rotateY(-5deg);
}

.industry-card-icon i { font-size: 1.5rem; color: var(--white); }

.industry-card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
}

.industry-card-content p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.industry-card-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.industry-card-content ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--dark);
}

.industry-card-content ul li i { color: var(--primary); font-size: 0.75rem; }

/* ============================
   ABOUT PAGE
   ============================ */
.about-content { padding: 80px 0; }

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text { flex: 1; }

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-illustration { flex: 1; display: flex; justify-content: center; }

.about-illus-box {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-illus-box .illus-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(244, 119, 33, 0.08);
    position: absolute;
}

.about-illus-box .illus-icon { position: relative; z-index: 2; }

.about-illus-box .illus-icon i {
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.7;
}

.about-float-card {
    position: absolute;
    background: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatCard 3s ease-in-out infinite;
}

.about-float-card i { color: var(--primary); }
.about-float-card span { font-weight: 600; font-size: 0.8rem; color: var(--navy); }
.float-1 { top: 30px; right: 10px; }
.float-2 { bottom: 40px; left: 0; animation-delay: 1.5s; }

/* Mission Vision */
.mission-vision { padding: 80px 0; background: var(--light); }

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.4s;
    border: 1px solid rgba(0,0,0,0.03);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.mv-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(244, 119, 33, 0.25), inset 0 -3px 6px rgba(0,0,0,0.1);
}

.mv-icon i { font-size: 1.4rem; color: var(--white); }

.mv-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; color: var(--navy); }
.mv-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; }

/* Why Us */
.why-us { padding: 80px 0; }

.why-us-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-us-text { flex: 1; }
.why-us-text .section-title { text-align: left; margin-bottom: 20px; }
.why-us-text > p { color: var(--gray); margin-bottom: 25px; }

.why-list { list-style: none; display: grid; gap: 12px; }

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--dark);
}

.why-list li i { color: var(--primary); font-size: 1.1rem; }

.why-us-illustration { flex: 1; display: flex; justify-content: center; }

.illustration-box {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-box .illus-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(244, 119, 33, 0.08);
    position: absolute;
}

.illus-person { position: relative; z-index: 2; }
.illus-person i { font-size: 7rem; color: var(--primary); opacity: 0.7; }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-page { padding: 80px 0; }

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-section { display: grid; gap: 18px; }

.contact-info-card {
    background: var(--light);
    padding: 22px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.contact-info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 5px 15px rgba(244, 119, 33, 0.2);
}

.contact-info-icon i { color: var(--white); font-size: 1rem; }

.contact-info-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-info-card p { color: var(--gray); font-size: 0.85rem; }

.contact-form-section {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
}

.contact-form-section h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.contact-form-section > p { color: var(--gray); margin-bottom: 25px; font-size: 0.9rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    background: var(--white);
    transition: border-color 0.3s;
    outline: none;
    color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
}

.form-group textarea { resize: vertical; }

.contact-form .btn-primary { width: 100%; padding: 15px; font-size: 1rem; }

.contact-why { padding: 80px 0; background: var(--light); }

.contact-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-why-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
}

.contact-why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.contact-why-card i { font-size: 2.2rem; color: var(--primary); margin-bottom: 12px; }
.contact-why-card h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.contact-why-card p { color: var(--gray); font-size: 0.82rem; line-height: 1.6; }

/* ============================
   CTA Section (shared)
   ============================ */
.cta-section { padding: 80px 0; background: var(--white); }

.cta-box {
    background: var(--gradient-navy);
    padding: 55px 40px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: rgba(244, 119, 33, 0.08);
    border-radius: 50%;
}

.cta-box h2 { font-size: 1.9rem; font-weight: 700; color: var(--white); margin-bottom: 12px; position: relative; }
.cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 25px; font-size: 1rem; position: relative; }
.cta-box .btn-primary { position: relative; }

/* ============================
   TESTIMONIALS PAGE GRID
   ============================ */
.testimonials { padding: 80px 0; background: var(--light); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: all 0.4s;
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-3d);
}

.testimonial-header { margin-bottom: 12px; }
.stars { margin-bottom: 6px; }
.stars i { color: var(--primary); font-size: 0.85rem; }
.testimonial-header h4 { font-size: 1.05rem; font-weight: 600; color: var(--navy); }

.testimonial-card > p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .stats-3d-grid { flex-wrap: wrap; gap: 20px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-why-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-service { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-card);
        z-index: 999;
    }

    .nav-links.active { display: flex; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero-content h1 { font-size: 2rem; }
    .hero-3d-card { width: 280px; height: 280px; }
    .hero-main-circle { width: 130px; height: 130px; }
    .hero-main-circle i { font-size: 2.8rem; }

    .section-title { font-size: 1.8rem; }
    .page-banner h1 { font-size: 2rem; }

    .products-icons-row { gap: 20px; }
    .product-icon-3d { width: 60px; height: 60px; }
    .product-icon-3d i { font-size: 1.4rem; }

    .journey-grid { grid-template-columns: 1fr; }
    .testimonial-featured { grid-template-columns: 1fr; text-align: center; }
    .testimonial-badge { margin: 0 auto; width: 140px; height: 140px; }
    .testimonial-content p { border-left: none; padding-left: 0; text-align: center; }
    .testimonial-author { justify-content: center; }

    .why-grid { grid-template-columns: 1fr 1fr; }
    .stats-3d-grid { grid-template-columns: 1fr 1fr; }

    .service-block, .service-block.reverse { flex-direction: column; text-align: center; }
    .about-grid { flex-direction: column; }
    .why-us-content { flex-direction: column; }
    .why-us-text .section-title { text-align: center; }

    .industries-page .industry-grid { grid-template-columns: 1fr; }
    .contact-page-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    .cta-content h2 { font-size: 1.6rem; }
    .cta-content ul { flex-direction: column; align-items: center; gap: 10px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.6rem; }
    .products-icons-row { gap: 15px; }
    .product-icon-3d { width: 50px; height: 50px; border-radius: 14px; }
    .product-icon-3d i { font-size: 1.2rem; }
    .product-icon-card span { font-size: 0.7rem; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-3d-grid { grid-template-columns: 1fr; }
    .contact-why-grid { grid-template-columns: 1fr; }
    .contact-form-section { padding: 25px; }
    .page-banner { padding: 110px 0 50px; }
    .page-banner h1 { font-size: 1.5rem; }
}

/* ============================
   SERVICES ROW (3 cards)
   ============================ */
.services-row-section {
    padding: 60px 0;
    background: var(--white);
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-row-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-3d);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary);
}

.service-row-card:hover {
    transform: translateY(-10px) perspective(500px) rotateX(2deg);
    box-shadow: var(--shadow-hover);
}

.src-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(244, 119, 33, 0.25), inset 0 -3px 6px rgba(0,0,0,0.1);
}

.src-icon i { font-size: 1.4rem; color: var(--white); }

.service-row-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-row-card p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ============================
   QUALITY STRIP
   ============================ */
.quality-strip {
    padding: 25px 0;
    background: var(--light);
    border-top: 2px solid rgba(244, 119, 33, 0.1);
    border-bottom: 2px solid rgba(244, 119, 33, 0.1);
}

.strip-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.strip-title i { color: var(--primary); }

/* ============================
   FEATURES GRID
   ============================ */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: var(--light);
    padding: 25px 15px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 5px 15px rgba(244, 119, 33, 0.2), inset 0 -2px 4px rgba(0,0,0,0.1);
    transform: perspective(400px) rotateX(5deg) rotateY(-5deg);
}

.feature-icon i { font-size: 1.3rem; color: var(--white); }

.feature-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.feature-card.center-card {
    background: var(--white);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-logo h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.feature-logo h3 span:not(.logo-icon) { color: var(--primary); }
.feature-logo .logo-icon { color: var(--primary); font-size: 1rem; }
.feature-logo p { font-size: 0.7rem; color: var(--gray); margin-top: 4px; }

/* ============================
   ABOUT CONTENT SECTION
   ============================ */
.about-content-section {
    padding: 60px 0;
    background: var(--navy);
    color: var(--white);
}

.about-content-section .section-title {
    color: var(--primary);
    font-size: 1.5rem;
}

.about-text-block {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text-block p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

.about-text-block p strong {
    color: var(--primary);
}

/* ============================
   THREE SERVICES
   ============================ */
.three-services {
    padding: 80px 0;
    background: var(--light);
}

.three-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    overflow: visible;
}

.ts-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.4s;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.ts-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.ts-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 10px 25px rgba(244, 119, 33, 0.25), inset 0 -3px 6px rgba(0,0,0,0.1);
    transform: perspective(500px) rotateX(5deg) rotateY(-5deg);
}

.ts-icon i { font-size: 1.7rem; color: var(--white); }

.ts-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.ts-card p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
}

.ts-cta { text-align: center; margin-top: 20px; }

/* ============================
   RESPONSIVE for new sections
   ============================ */
@media (max-width: 768px) {
    .services-row { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .three-services-grid { grid-template-columns: 1fr; }
    .services-row-section { margin-top: 0; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
    .strip-title { font-size: 1.1rem; }
}


/* ============================
   3D ENHANCEMENT & ATTRACTIVE EFFECTS
   ============================ */

/* Animated gradient background for hero */
.hero {
    background: linear-gradient(-45deg, #F8F9FC, #FFF5ED, #F0F4FF, #FFF8F0);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glowing pulse on hero circle */
.hero-main-circle {
    animation: float3d 4s ease-in-out infinite, glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% { box-shadow: 0 20px 60px rgba(244, 119, 33, 0.3), inset 0 -5px 15px rgba(0,0,0,0.1), 0 0 0 0 rgba(244, 119, 33, 0); }
    100% { box-shadow: 0 20px 60px rgba(244, 119, 33, 0.4), inset 0 -5px 15px rgba(0,0,0,0.1), 0 0 40px 10px rgba(244, 119, 33, 0.15); }
}

/* Glassmorphism floating cards */
.float-inner {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* 3D Transform on service-row-cards */
.service-row-card {
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-row-card:hover {
    transform: perspective(1000px) rotateX(-5deg) rotateY(5deg) translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(244, 119, 33, 0.2), 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-row-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: rgba(244, 119, 33, 0.1);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-row-card:hover::after {
    opacity: 1;
}

/* Animated border glow on product icons */
.product-icon-3d {
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-icon-3d::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(244, 119, 33, 0.5), rgba(27, 42, 74, 0.5), rgba(244, 119, 33, 0.5));
    background-size: 200% 200%;
    animation: borderRotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.product-icon-card:hover .product-icon-3d::before {
    opacity: 1;
}

@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 3D Depth on stats cards with color shift */
.stat-3d-inner {
    position: relative;
    overflow: hidden;
}

.stat-3d-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 119, 33, 0.03) 0%, transparent 70%);
    transform: rotate(0deg);
    transition: transform 0.6s;
}

.stat-3d-inner:hover::before {
    transform: rotate(90deg);
}

.stat-3d-inner:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.05);
}

/* Enhanced 3D for journey cards */
.journey-card {
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.journey-card:hover::before {
    transform: scaleX(1);
}

/* Attractive page banner with 3D text effect */
.page-banner h1 {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: rgba(244, 119, 33, 0.04);
    border-radius: 50%;
}

/* 3D Icon boxes on service pages */
.service-icon-box {
    animation: iconFloat 5s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: perspective(500px) rotateX(5deg) rotateY(-5deg) translateY(0); }
    50% { transform: perspective(500px) rotateX(2deg) rotateY(-2deg) translateY(-8px); }
}

.service-icon-box:hover {
    animation: none;
    transform: perspective(500px) rotateX(0) rotateY(0) scale(1.05);
}

/* Glassmorphism testimonial badge */
.testimonial-badge {
    position: relative;
    animation: float3d 5s ease-in-out infinite;
}

.testimonial-badge::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(244, 119, 33, 0.3);
    animation: spinSlow 10s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced why-card with shimmer */
.why-card {
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(244, 119, 33, 0.03) 50%, transparent 60%);
    transform: rotate(0deg);
    transition: transform 0.8s;
}

.why-card:hover::before {
    transform: rotate(180deg);
}

/* Industry cards enhanced */
.industry-card-full {
    position: relative;
    overflow: hidden;
}

.industry-card-full::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s;
}

.industry-card-full:hover::after {
    transform: scaleX(1);
}

/* Three services 3D cards */
.ts-card::before {
    content: none;
}

/* Attractive section title underline */
.section-title {
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 4px;
}

/* Contact info card 3D */
.contact-info-card {
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-info-card:hover {
    transform: translateY(-8px) perspective(500px) rotateX(3deg);
    box-shadow: 0 20px 40px rgba(244, 119, 33, 0.15);
}

/* MV cards with 3D depth */
.mv-card {
    transform-style: preserve-3d;
    position: relative;
}

.mv-card:hover {
    transform: translateY(-10px) perspective(600px) rotateX(3deg);
}

.mv-card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 15%;
    width: 70%;
    height: 15px;
    background: rgba(244, 119, 33, 0.08);
    border-radius: 50%;
    filter: blur(8px);
    transition: all 0.3s;
}

.mv-card:hover::after {
    bottom: -12px;
    filter: blur(12px);
    background: rgba(244, 119, 33, 0.12);
}

/* Footer social links 3D */
.social-links a {
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-links a:hover {
    transform: translateY(-5px) rotateY(10deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(244, 119, 33, 0.3);
}

/* Quality strip enhancement */
.quality-strip {
    position: relative;
    overflow: hidden;
}

.quality-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 119, 33, 0.05), transparent);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Features grid center card glow */
.feature-card.center-card {
    position: relative;
    animation: centerGlow 3s ease-in-out infinite alternate;
}

@keyframes centerGlow {
    0% { box-shadow: 0 0 0 0 rgba(244, 119, 33, 0); }
    100% { box-shadow: 0 0 30px 5px rgba(244, 119, 33, 0.1); }
}

/* About content section text highlight */
.about-content-section .about-text-block p:first-child::first-letter {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    float: left;
    margin-right: 8px;
    line-height: 1;
}

/* Contact CTA enhanced */
.contact-cta {
    position: relative;
}

.contact-cta .btn-primary {
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(244, 119, 33, 0.35); }
    50% { box-shadow: 0 8px 25px rgba(244, 119, 33, 0.35), 0 0 0 10px rgba(244, 119, 33, 0.1); }
}

/* Smooth page transitions feel */
section {
    position: relative;
}

/* Enhanced header with subtle bottom gradient */
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}


/* ============================
   WHATSAPP FLOATING BUTTON
   ============================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 90px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================
   SCROLL TO TOP BUTTON
   ============================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(27, 42, 74, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 119, 33, 0.3);
}


/* ============================
   AI ASSISTANT WIDGET
   ============================ */
.ai-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9998;
    font-family: 'Poppins', sans-serif;
}

.ai-toggle {
    background: var(--primary);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 0 8px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.3s;
    user-select: none;
}

.ai-toggle:hover {
    background: var(--primary-dark);
}

.ai-toggle i:first-child {
    font-size: 1rem;
    animation: botBounce 2s ease-in-out infinite;
}

@keyframes botBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.ai-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.ai-widget.open .ai-arrow {
    transform: rotate(180deg);
}

.ai-chat-box {
    display: none;
    width: 220px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-top: none;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.ai-widget.open .ai-chat-box {
    display: flex;
    flex-direction: column;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-chat-header {
    background: var(--gradient-navy);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-avatar {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-avatar i {
    color: var(--white);
    font-size: 0.75rem;
}

.ai-chat-header h5 {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0;
}

.ai-status {
    color: rgba(255,255,255,0.7);
    font-size: 0.6rem;
}

.ai-status i {
    color: #25D366;
    font-size: 0.5rem;
    margin-right: 3px;
}

.ai-chat-messages {
    height: 130px;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ai-msg {
    max-width: 85%;
}

.ai-msg p {
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    line-height: 1.4;
}

.ai-msg.bot p {
    background: var(--light);
    color: var(--dark);
    border-bottom-left-radius: 4px;
}

.ai-msg.user {
    align-self: flex-end;
}

.ai-msg.user p {
    background: var(--primary);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.ai-quick-btns {
    padding: 6px 10px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.ai-quick-btns button {
    padding: 3px 8px;
    font-size: 0.62rem;
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    border: 1px solid rgba(244, 119, 33, 0.2);
    border-radius: 20px;
    cursor: pointer;
    color: var(--navy);
    font-weight: 500;
    transition: all 0.2s;
}

.ai-quick-btns button:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.ai-chat-input {
    display: flex;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.ai-chat-input input {
    flex: 1;
    padding: 8px 10px;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
}

.ai-chat-input button {
    padding: 8px 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 0.75rem;
}

.ai-chat-input button:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .ai-chat-box {
        width: 200px;
    }
    .ai-chat-messages {
        height: 110px;
    }
}


/* ============================
   NAVIGATION DROPDOWN
   ============================ */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown > a i {
    font-size: 0.6rem;
    margin-left: 3px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0,0,0,0.05);
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 18px;
    font-size: 0.85rem;
    color: var(--navy) !important;
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background: var(--light);
    color: var(--primary) !important;
    padding-left: 22px;
}

/* ============================
   PROMOTION SMS PAGE STYLES
   ============================ */
.banner-breadcrumb {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.page-banner h1 span {
    color: var(--primary);
    margin-right: 10px;
}

.promo-sms-content {
    padding: 80px 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.promo-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.promo-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.promo-text h3,
.promo-visual h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 25px 0 15px;
}

.features-list,
.advantages-list {
    list-style: none;
}

.features-list li,
.advantages-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.88rem;
    color: var(--dark);
    line-height: 1.6;
}

.features-list li i,
.advantages-list li i {
    color: var(--primary);
    font-size: 0.4rem;
    margin-top: 8px;
}

.promo-3d-box {
    text-align: center;
    margin-bottom: 30px;
}

.promo-icon-main {
    width: 120px;
    height: 120px;
    background: var(--gradient-orange);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 15px 40px rgba(244, 119, 33, 0.3), inset 0 -4px 8px rgba(0,0,0,0.1);
    transform: perspective(500px) rotateX(5deg) rotateY(-5deg);
    animation: iconFloat 5s ease-in-out infinite;
}

.promo-icon-main.navy-icon {
    background: var(--gradient-navy);
    box-shadow: 0 15px 40px rgba(27, 42, 74, 0.3), inset 0 -4px 8px rgba(0,0,0,0.1);
}

.promo-icon-main i {
    font-size: 3rem;
    color: var(--white);
}

.promo-3d-box h3 {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Pricing Table */
.pricing-table-section {
    padding: 60px 0;
    background: var(--light);
}

.pricing-table {
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.pricing-table thead {
    background: var(--primary);
}

.pricing-table th {
    padding: 14px 20px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
}

.pricing-table td {
    padding: 12px 20px;
    font-size: 0.85rem;
    color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-table tbody tr:hover {
    background: rgba(244, 119, 33, 0.03);
}

@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-links .dropdown:hover .dropdown-menu,
    .nav-links.active .dropdown .dropdown-menu,
    .nav-links .dropdown.open .dropdown-menu,
    .nav-links .mega-dropdown.open .mega-menu {
        display: block;
    }
}


/* ============================
   TRANSACTIONAL SMS VISUAL
   ============================ */
/* Trans banner - uses standard page-banner now */

.trans-visual-box {
    background: var(--white);
    border: 2px dashed rgba(27, 42, 74, 0.2);
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: center;
    box-shadow: none;
}

.trans-visual-box h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trans-icons-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.trans-icon-circle {
    width: 65px;
    height: 65px;
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.trans-icon-circle i {
    font-size: 1.5rem;
    color: var(--primary);
}

.trans-arrow i {
    color: var(--navy);
    font-size: 1.2rem;
}

.trans-icon-bottom {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}


/* ============================
   ENHANCED BANNER CONTENT
   ============================ */
.banner-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.banner-text-left {
    position: relative;
    z-index: 2;
}

.banner-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
}

.banner-heading span {
    color: var(--primary);
}

.banner-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 20px;
}

.banner-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.banner-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 500;
}

.banner-feat i {
    width: 32px;
    height: 32px;
    background: rgba(244, 119, 33, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.8rem;
}

.banner-text-right {
    text-align: center;
    position: relative;
    z-index: 2;
}

.banner-text-right .banner-breadcrumb {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.banner-text-right h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.banner-text-right h1 span {
    color: var(--primary);
    margin-right: 8px;
}

@media (max-width: 768px) {
    .banner-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-features {
        justify-content: center;
    }

    .banner-heading {
        font-size: 1.5rem;
    }

    .banner-text-right h1 {
        font-size: 1.8rem;
    }
}


/* ============================
   MEGA MENU DROPDOWN
   ============================ */
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 500px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    padding: 25px 30px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    margin-top: 0;
}

.mega-dropdown > a {
    padding-bottom: 20px !important;
}

.mega-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}

.mega-dropdown:hover .mega-menu {
    display: grid;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mega-col h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(244, 119, 33, 0.15);
}

.mega-col ul {
    list-style: none;
}

.mega-col ul li {
    margin-bottom: 4px;
}

.mega-col ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--navy) !important;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.mega-col ul li a:hover {
    background: var(--light);
    color: var(--primary) !important;
    padding-left: 16px;
}

.mega-col ul li a i {
    width: 28px;
    height: 28px;
    background: rgba(244, 119, 33, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.8rem;
    transition: all 0.2s;
}

.mega-col ul li a:hover i {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 768px) {
    .mega-menu {
        position: static;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        border: none;
        padding: 10px;
        grid-template-columns: 1fr;
        gap: 15px;
        display: none;
    }

    .mega-dropdown:hover .mega-menu,
    .nav-links.active .mega-dropdown .mega-menu,
    .nav-links .mega-dropdown.open .mega-menu {
        display: grid;
    }
}


/* ============================
   INDUSTRY DROPDOWN ICON COLORS
   ============================ */
.dropdown-menu li a i.fa-shopping-cart { color: #7C3AED; }
.dropdown-menu li a i.fa-university { color: #1B2A4A; }
.dropdown-menu li a i.fa-store { color: #F47721; }
.dropdown-menu li a i.fa-building { color: #D97706; }
.dropdown-menu li a i.fa-box { color: #10B981; }
.dropdown-menu li a i.fa-heartbeat { color: #EF4444; }


/* ============================
   PRODUCT MEGA MENU ICON COLORS
   ============================ */
/* Channel */
.mega-col ul li a i.fa-sms { color: #F47721; background: rgba(244, 119, 33, 0.1); }
.mega-col ul li a i.fa-envelope { color: #7C3AED; background: rgba(124, 58, 237, 0.1); }
.mega-col ul li a i.fa-phone-volume { color: #10B981; background: rgba(16, 185, 129, 0.1); }
.mega-col ul li a i.fa-chart-line { color: #3B82F6; background: rgba(59, 130, 246, 0.1); }

/* Solution */
.mega-col ul li a i.fa-bullhorn { color: #EF4444; background: rgba(239, 68, 68, 0.1); }
.mega-col ul li a i.fa-shield-alt { color: #1B2A4A; background: rgba(27, 42, 74, 0.1); }
.mega-col ul li a i.fa-envelope-open-text { color: #8B5CF6; background: rgba(139, 92, 246, 0.1); }
.mega-col ul li a i.fa-paper-plane { color: #06B6D4; background: rgba(6, 182, 212, 0.1); }
.mega-col ul li a i.fa-mail-bulk { color: #D97706; background: rgba(217, 119, 6, 0.1); }


/* ============================
   COMPANY DROPDOWN ICON COLORS
   ============================ */
.dropdown-menu li a i.fa-info-circle { color: #7C3AED; }
.dropdown-menu li a i.fa-user-tie { color: #EF4444; }
.dropdown-menu li a i.fa-blog { color: #F47721; }
.dropdown-menu li a i.fa-users { color: #3B82F6; }


/* ============================
   GROWTELE-STYLE HOME HERO
   ============================ */
.growtele-hero .hero-grid {
    grid-template-columns: 1.2fr 1fr;
}

.growtele-hero .hero-content h1 {
    font-size: 2.6rem;
}

.home-stats {
    background: var(--light);
}

.home-stats .section-title {
    color: var(--navy);
}

@media (max-width: 768px) {
    .growtele-hero .hero-grid {
        grid-template-columns: 1fr;
    }
    .growtele-hero .hero-content h1 {
        font-size: 1.8rem;
    }
}


/* ============================
   BULK SMS PAGE - ENHANCED DESIGN
   ============================ */
.promo-sms-content,
.services-detail {
    position: relative;
}

.promo-sms-content .promo-text h2,
.services-detail .promo-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.promo-sms-content .promo-text h2::after,
.services-detail .promo-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 4px;
}

.promo-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 25px 0 12px;
    padding-left: 15px;
    position: relative;
}

.promo-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-orange);
    border-radius: 4px;
}

.promo-text p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 12px;
    text-align: justify;
}

.promo-text p em {
    color: var(--navy);
    font-style: italic;
}

.promo-grid {
    gap: 50px;
    align-items: start;
}

/* Sticky visual on scroll */
.promo-visual {
    position: sticky;
    top: 90px;
    align-self: start;
}

/* Better feature/advantages list */
.features-list,
.advantages-list {
    background: var(--light);
    padding: 20px 25px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
}

.features-list li,
.advantages-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 0.88rem;
}

.features-list li:last-child,
.advantages-list li:last-child {
    border-bottom: none;
}

.features-list li i,
.advantages-list li i {
    color: var(--primary);
    font-size: 0.45rem;
    margin-top: 7px;
}

/* Section divider */
.services-detail + .services-detail {
    border-top: none;
}

.services-detail.alt-bg {
    background: var(--light);
    border-left: none;
}

/* Enhanced promo-3d-box */
.promo-3d-box {
    padding: 35px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

/* Right side section headings */
.promo-visual > h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 25px 0 10px;
    padding: 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.promo-visual > h3::before {
    display: none;
}

.promo-visual > p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Service features enhanced */
.service-features {
    background: transparent;
    padding: 0;
    border-left: none;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: all 0.2s;
}

.service-features li:hover {
    padding-left: 8px;
}

.service-features li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0;
}

/* Service block text headings */
.service-block-text h2 {
    position: relative;
    padding-bottom: 15px;
}

.service-block-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 4px;
    margin-top: 12px;
}

/* Pricing table enhanced */
.pricing-table-section {
    padding: 80px 0;
    background: var(--white);
}

.pricing-table table {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
}

.pricing-table thead {
    background: var(--navy);
}

.pricing-table th {
    padding: 16px 20px;
    font-weight: 600;
}

.pricing-table td {
    padding: 14px 20px;
}

.pricing-table tbody tr {
    transition: all 0.2s;
}

.pricing-table tbody tr:hover {
    background: rgba(244, 119, 33, 0.04);
    transform: scale(1.01);
}

.pricing-table tbody tr:nth-child(even) {
    background: var(--light);
}

.pricing-table tbody tr:nth-child(even):hover {
    background: rgba(244, 119, 33, 0.06);
}


/* ============================
   INDEX PAGE - PREMIUM 3D DESIGN
   ============================ */

/* Hero Section 3D Enhancement */
.growtele-hero {
    background: linear-gradient(135deg, #FFF8F0 0%, #F8F9FC 50%, #FFF5ED 100%);
    min-height: 90vh;
}

.growtele-hero .hero-content h1 {
    font-size: 2.8rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

/* 3D Product Cards for Home */
.products-section .product-icon-card {
    position: relative;
    padding: 20px 15px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.products-section .product-icon-card:hover {
    transform: translateY(-12px) perspective(500px) rotateX(3deg);
    box-shadow: 0 20px 40px rgba(244, 119, 33, 0.12);
    border-color: var(--primary);
}

/* Featured Service 3D */
.featured-service {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 50px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.featured-service::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(244, 119, 33, 0.03);
    border-radius: 50%;
}

/* Journey Cards 3D */
.journey-section .journey-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.journey-section .journey-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.journey-section .journey-card:hover::after {
    transform: scaleX(1);
}

.journey-section .journey-card:hover {
    transform: translateY(-12px) perspective(600px) rotateX(2deg) rotateY(-1deg);
    box-shadow: 0 25px 50px rgba(27, 42, 74, 0.1);
}

/* Testimonial Section 3D */
.testimonials-section .testimonial-badge {
    width: 140px;
    height: 140px;
    position: relative;
}

.testimonials-section .testimonial-badge::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--navy));
    opacity: 0.2;
    animation: rotateBorder 6s linear infinite;
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.testimonials-section .testimonial-badge i {
    font-size: 2.5rem;
    color: var(--white);
}

/* Why Section Cards 3D */
.why-section .why-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.why-section .why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.why-section .why-card:hover::before {
    transform: scaleX(1);
}

.why-section .why-card:hover {
    transform: translateY(-10px) perspective(500px) rotateX(3deg);
    box-shadow: 0 20px 50px rgba(244, 119, 33, 0.12);
}

/* Stats 3D Cards Enhancement */
.home-stats .stat-3d-card .stat-3d-inner {
    background: var(--white);
    border: 2px solid rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.home-stats .stat-3d-card .stat-3d-inner:hover {
    transform: rotateX(0) rotateY(0) translateY(-8px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(244, 119, 33, 0.1);
}

.home-stats .stat-3d-card .stat-3d-inner i {
    width: 50px;
    height: 50px;
    background: rgba(244, 119, 33, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.4rem;
}

/* Contact CTA 3D */
.contact-cta {
    position: relative;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
}

/* Floating elements on Home page */
.growtele-hero .hero-main-circle {
    width: 160px;
    height: 160px;
    box-shadow: 
        0 25px 60px rgba(244, 119, 33, 0.3),
        inset 0 -8px 20px rgba(0,0,0,0.1),
        0 0 0 8px rgba(244, 119, 33, 0.08),
        0 0 0 16px rgba(244, 119, 33, 0.04);
}

.growtele-hero .hero-main-circle i {
    font-size: 3.5rem;
}

.growtele-hero .float-inner {
    background: var(--white);
    border: 1px solid rgba(244, 119, 33, 0.08);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

/* 3D Depth for Section Titles on Home */
.products-section .section-title,
.journey-section .section-title,
.why-section .section-title,
.testimonials-section .section-title,
.home-stats .section-title {
    position: relative;
}

.products-section .section-title::before,
.journey-section .section-title::before,
.why-section .section-title::before {
    content: attr(data-text);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(244, 119, 33, 0.04);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

/* Smooth section transitions */
.products-section,
.journey-section,
.why-section,
.testimonials-section {
    position: relative;
    overflow: hidden;
}

/* Decorative background dots */
.journey-section::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 50px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(244, 119, 33, 0.15) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.5;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 50px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(27, 42, 74, 0.1) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.5;
}


/* ============================
   GROWTELE-STYLE TILTED STAT CARDS
   ============================ */
.stats-tilted-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
}

.stat-tilted-card {
    width: 180px;
    height: 180px;
    position: relative;
}

.stat-tilted-card:nth-child(1) { transform: rotate(-8deg); }
.stat-tilted-card:nth-child(2) { transform: rotate(5deg); margin-top: -20px; }
.stat-tilted-card:nth-child(3) { transform: rotate(-4deg); margin-top: 20px; }
.stat-tilted-card:nth-child(4) { transform: rotate(7deg); margin-top: -10px; }
.stat-tilted-card:nth-child(5) { transform: rotate(-6deg); margin-top: 10px; }

.stat-tilted-inner {
    width: 100%;
    height: 100%;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    box-shadow: 8px 8px 0 var(--primary);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-tilted-card:hover .stat-tilted-inner {
    transform: rotate(0deg) scale(1.08);
    box-shadow: 12px 12px 0 var(--primary);
}

.stat-tilted-card:hover {
    transform: rotate(0deg) !important;
}

.stat-tilted-inner h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin: 8px 0 4px;
}

.stat-tilted-inner p {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 500;
    font-style: italic;
}

/* ============================
   FULL RESPONSIVE - PHONE & TABLET
   ============================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container { padding: 0 25px; }
    
    .hero-grid { gap: 30px; }
    .hero-content h1 { font-size: 2.2rem; }
    .growtele-hero .hero-content h1 { font-size: 2.2rem; }
    
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 0.82rem; }
    .nav-cta { padding: 8px 18px; font-size: 0.8rem; }
    
    .products-icons-row { gap: 25px; }
    .product-icon-3d { width: 90px; height: 90px; }
    .product-icon-3d i { font-size: 2.2rem; }
    
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-3d-grid { grid-template-columns: repeat(2, 1fr); }
    .three-services-grid { grid-template-columns: repeat(2, 1fr); }
    
    .featured-service { grid-template-columns: 1fr; padding: 30px; }
    
    .stat-tilted-card { width: 150px; height: 150px; }
    .stat-tilted-inner h3 { font-size: 1.2rem; }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    
    .mega-menu { min-width: 420px; padding: 20px; }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 25px 30px;
        box-shadow: 5px 0 30px rgba(0,0,0,0.1);
        z-index: 9999;
        overflow-y: auto;
        gap: 0;
    }

    .nav-links.active { display: flex; }
    
    .nav-links li { 
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 12px 0;
    }
    
    .nav-links a { font-size: 0.95rem; }
    
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    
    /* Mobile Dropdowns */
    .dropdown-menu,
    .mega-menu {
        position: static !important;
        transform: none !important;
        min-width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding: 5px 0 5px 15px !important;
        display: none;
        border-radius: 0 !important;
    }

    .dropdown:hover .dropdown-menu,
    .mega-dropdown:hover .mega-menu {
        display: block !important;
    }

    .mega-menu {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .mega-col ul li a { padding: 6px 10px; font-size: 0.82rem; }
    .mega-col h5 { font-size: 0.8rem; margin-bottom: 8px; }

    /* Hero Mobile */
    .hero { padding: 50px 0 30px; }
    .hero-grid { grid-template-columns: 1fr !important; text-align: center; gap: 30px; }
    .hero-content h1 { font-size: 1.7rem; }
    .growtele-hero .hero-content h1 { font-size: 1.7rem; }
    .hero-content p { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    
    .hero-3d-card { width: 250px; height: 250px; }
    .hero-main-circle { width: 120px; height: 120px; }
    .hero-main-circle i { font-size: 2.5rem; }
    .float-inner { padding: 8px 12px; }
    .float-inner span { font-size: 0.7rem; }

    /* Sections Mobile */
    .section-title { font-size: 1.5rem; margin-bottom: 30px; }
    
    .products-icons-row { gap: 15px; }
    .product-icon-3d { width: 70px; height: 70px; border-radius: 16px; }
    .product-icon-3d i { font-size: 1.6rem; }
    .product-icon-card span { font-size: 0.72rem; }
    
    .journey-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-3d-grid { grid-template-columns: 1fr 1fr; }
    .three-services-grid { grid-template-columns: 1fr !important; }
    
    .testimonial-featured { grid-template-columns: 1fr; text-align: center; gap: 25px; }
    .testimonial-badge { width: 100px; height: 100px; margin: 0 auto; }
    .testimonial-badge i { font-size: 1.8rem; }
    .testimonial-content p { border-left: none; padding-left: 0; text-align: center; }
    .testimonial-author { justify-content: center; }
    
    /* Stats tilted - Mobile */
    .stats-tilted-grid { gap: 20px; padding: 20px 0; }
    .stat-tilted-card { width: 140px; height: 140px; }
    .stat-tilted-card:nth-child(1),
    .stat-tilted-card:nth-child(2),
    .stat-tilted-card:nth-child(3),
    .stat-tilted-card:nth-child(4),
    .stat-tilted-card:nth-child(5) {
        margin-top: 0;
        transform: rotate(-3deg);
    }
    .stat-tilted-inner { padding: 15px; }
    .stat-tilted-inner i { font-size: 1.8rem !important; }
    .stat-tilted-inner h3 { font-size: 1.1rem; }
    .stat-tilted-inner p { font-size: 0.68rem; }
    
    /* Service blocks Mobile */
    .service-block,
    .service-block.reverse { flex-direction: column !important; text-align: center; }
    .service-block-icon { flex: none; }
    .service-icon-box { width: 120px; height: 120px; }
    .service-icon-box i { font-size: 2.5rem; }
    
    /* Promo grid */
    .promo-grid { grid-template-columns: 1fr !important; }
    .promo-visual { position: static !important; }
    
    /* Contact CTA */
    .contact-cta { padding: 50px 0; }
    .cta-content h2 { font-size: 1.4rem; }
    .cta-content ul { flex-direction: column; align-items: center; gap: 8px; }
    
    /* Footer Mobile */
    .footer { padding: 50px 0 25px; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 25px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    
    /* Widgets Mobile */
    .ai-widget { bottom: 0; }
    .ai-chat-box { width: 200px !important; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 75px; font-size: 1.5rem; }
    .scroll-top { width: 42px; height: 42px; bottom: 20px; right: 20px; }
    
    /* Industry cards */
    .industry-card-full { flex-direction: column; text-align: center; }
    .industry-card-content ul { grid-template-columns: 1fr; }
    
    /* Contact page */
    .contact-page-grid { grid-template-columns: 1fr !important; }
    .contact-info-section { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr !important; }
    .contact-why-grid { grid-template-columns: 1fr 1fr !important; }
    
    /* About page */
    .about-grid { flex-direction: column !important; }
    .mv-grid { grid-template-columns: 1fr !important; }
    .why-us-content { flex-direction: column !important; }
    .why-us-text .section-title { text-align: center !important; }

    /* Pricing table */
    .pricing-table { overflow-x: auto; }
    .pricing-table table { min-width: 500px; }
}

/* Small Phone (max 480px) */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.4rem; }
    .growtele-hero .hero-content h1 { font-size: 1.4rem; }
    .hero-3d-card { width: 200px; height: 200px; }
    .hero-main-circle { width: 100px; height: 100px; }
    .hero-main-circle i { font-size: 2rem; }
    
    .section-title { font-size: 1.3rem; }
    
    .products-icons-row { gap: 10px; }
    .product-icon-3d { width: 55px; height: 55px; border-radius: 14px; }
    .product-icon-3d i { font-size: 1.3rem; }
    .product-icon-card span { font-size: 0.65rem; }
    
    .stat-tilted-card { width: 120px; height: 120px; }
    .stat-tilted-inner h3 { font-size: 0.95rem; }
    
    .contact-info-section { grid-template-columns: 1fr !important; }
    .contact-why-grid { grid-template-columns: 1fr !important; }
    
    .btn-primary { padding: 12px 24px; font-size: 0.85rem; }
    .btn-outline { padding: 12px 24px; font-size: 0.85rem; }
    
    .ai-chat-box { width: 180px !important; }
    .ai-chat-messages { height: 100px !important; }
}

/* ============================
   APPLY FORM MODAL
   ============================ */
.apply-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.apply-modal-overlay.active {
    display: flex;
}

.apply-modal {
    background: var(--white);
    border-radius: var(--radius);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.apply-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 10;
    border-radius: var(--radius) var(--radius) 0 0;
}

.apply-modal-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.apply-modal-header h3 i {
    color: var(--primary);
}

.apply-modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gray);
    transition: all 0.3s;
}

.apply-modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

.apply-form {
    padding: 30px;
}

.apply-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.apply-form-grid .form-group {
    display: flex;
    flex-direction: column;
}

.apply-form-grid .form-group.full-width {
    grid-column: 1 / -1;
}

.apply-form-grid .form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.apply-form-grid .form-group label span {
    color: #ef4444;
}

.apply-form-grid .form-group input,
.apply-form-grid .form-group select,
.apply-form-grid .form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    transition: all 0.3s;
    background: var(--white);
}

.apply-form-grid .form-group input:focus,
.apply-form-grid .form-group select:focus,
.apply-form-grid .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(244, 119, 33, 0.1);
}

.apply-form-grid .form-group input[type="file"] {
    padding: 10px;
    border-style: dashed;
    cursor: pointer;
    background: var(--light);
}

.apply-form-grid .form-group input[type="file"]:hover {
    border-color: var(--primary);
    background: rgba(244, 119, 33, 0.03);
}

.apply-form-grid .form-group small {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 4px;
}

.apply-form-submit {
    margin-top: 30px;
    text-align: center;
}

.apply-form-submit .btn-primary {
    padding: 16px 50px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.apply-form-submit .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Success Message */
.apply-success {
    text-align: center;
    padding: 60px 30px;
}

.apply-success i {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 20px;
}

.apply-success h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.apply-success p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .apply-form-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .apply-modal-overlay {
        padding: 10px;
    }
    
    .apply-modal {
        max-height: 95vh;
        border-radius: 14px;
    }
    
    .apply-modal-header {
        padding: 15px 18px;
    }
    
    .apply-modal-header h3 {
        font-size: 1rem;
    }
    
    .apply-form {
        padding: 15px 18px;
    }
    
    .apply-form-grid .form-group label {
        font-size: 0.78rem;
        margin-bottom: 4px;
    }
    
    .apply-form-grid .form-group input,
    .apply-form-grid .form-group select,
    .apply-form-grid .form-group textarea {
        padding: 9px 12px;
        font-size: 0.82rem;
        border-radius: 8px;
    }
    
    .apply-form-grid .form-group textarea {
        min-height: 60px;
    }
    
    .apply-form-submit {
        margin-top: 18px;
    }
    
    .apply-form-submit .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .apply-modal-close {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Map Section Responsive */
@media (max-width: 768px) {
    .map-grid {
        grid-template-columns: 1fr !important;
    }
    .map-wrapper {
        height: 250px !important;
    }
}

/* ============================
   MAP SECTION - Contact Page
   ============================ */
.map-section {
    padding: 80px 0;
    background: var(--light);
}

.map-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    min-height: 400px;
    position: relative;
}

.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-contact-info {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.map-contact-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-contact-info h3 i {
    color: var(--primary);
    font-size: 1.2rem;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.map-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 15px;
}

.map-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(244, 119, 33, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info-icon i {
    color: var(--primary);
    font-size: 1rem;
}

.map-info-item h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 3px;
}

.map-info-item p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

.map-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.map-social a {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 119, 33, 0.3);
}

/* ============================
   ISO CERTIFICATION SECTION
   ============================ */
.iso-section {
    padding: 50px 0;
    background: var(--white);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.iso-badge {
    margin-bottom: 25px;
}

.iso-text {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(244, 119, 33, 0.3);
}

.iso-images {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.iso-images img {
    max-height: 80px;
    width: auto;
    height: 80px;
    object-fit: contain;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .iso-images img {
        max-width: 100%;
    }
    .iso-text {
        font-size: 0.82rem;
        padding: 8px 20px;
    }
    .iso-images {
        flex-wrap: wrap;
        gap: 15px;
    }
    .iso-images img {
        height: 50px;
    }
}

/* SignUp/Login Button */
.nav-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-mobile-btns {
    display: none;
}
.btn-nav {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.78rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}
.btn-signup {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-signup:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 119, 33, 0.3);
}
.btn-demo {
    background: linear-gradient(135deg, #F47721 0%, #FFA54F 100%);
    color: #fff;
    border: 2px solid transparent;
}
.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 119, 33, 0.4);
}
@media(max-width:768px) {
    .nav-btns {
        display: none;
    }
    .nav-mobile-btns {
        display: flex;
        gap: 10px;
        padding: 10px 0 15px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        margin-bottom: 5px;
    }
    .nav-mobile-btns .btn-nav {
        flex: 1;
        text-align: center;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}
