:root {
    --bg-light: #FFFFFF;
    --bg-alt: #F8F9FA;
    --bg-card: #FFFFFF;
    --primary: #4F46E5;
    --primary-hover: #4338CA;
    --accent: #0EA5E9;
    --text-main: #111827;
    --text-muted: #4B5563;
    --border: #E5E7EB;

    --font-main: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}

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

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 4.5rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.5rem;
}

.accent-gold {
    color: #FCB118;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    position: relative;
    background: #6F0188;
    color: #FFF;
    box-shadow: 0 4px 15px rgba(111, 1, 136, 0.3);
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FCB118;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 177, 24, 0.4);
    color: #FFF;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-secondary {
    position: relative;
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FCB118;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn-secondary:hover {
    border-color: #FCB118;
    color: #FFF;
    transform: translateY(-2px);
}

.btn-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 70px;
    padding: 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    height: 70px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
    height: 100%;
}

.logo img {
    height: 70px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: contain;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1b;
    letter-spacing: 0.02em;
    position: relative;
    opacity: 0.85;
}

.nav-links a:hover {
    color: #FCB118;
    opacity: 1;
}

.nav-links a.active {
    color: #FCB118 !important; /* Highlighted Gold */
    opacity: 1;
    font-weight: 700;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FCB118;
    border-radius: 4px;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    padding: 10px 0;
}

.dropdown-trigger i {
    font-size: 0.75rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #FFFFFF;
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

/* Mega Menu Styles */
.mega-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    padding: 60px 0; /* Reduced padding */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1000;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 10rem;
    align-items: flex-start;
}

.mega-menu-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #6F0188; /* Company Purple */
    margin-bottom: 1.2rem;
}

.mega-menu-info h3 {
    font-size: 2.2rem; /* Decreased size */
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: #111827;
}

.mega-menu-info h3 span {
    color: #FCB118;
}

.mega-menu-info p {
    font-size: 1.15rem; /* Increased size back to be prominent */
    line-height: 1.6;
    color: #4B5563;
    max-width: 450px;
}

.mega-menu-right {
    position: relative;
}

.mega-menu-links {
    list-style: none;
    width: 100%;
    column-count: 2; /* Split into two columns */
    column-gap: 4rem;
}

.mega-menu-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Light border for white theme */
}

.mega-menu-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0; /* Reduced padding */
    color: #111827 !important;
    font-size: 1.1rem; /* Decreased size */
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 1 !important;
}

.mega-menu-links a::after {
    display: none; 
}

.mega-menu-links a:hover,
.mega-menu-links a.active {
    color: #FCB118 !important;
    padding-left: 15px;
}

.mega-menu-links i {
    font-size: 1rem;
    opacity: 0.15;
    transition: all 0.3s ease;
}

.mega-menu-links a:hover i,
.mega-menu-links a.active i {
    opacity: 0.6;
    transform: translateX(10px);
}

.footer-links a.active {
    color: #FCB118 !important;
    font-weight: 700;
}


.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #1a1a1b !important;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    opacity: 0.75;
}

.dropdown-menu a:hover {
    background: #F9FAFB;
    color: #FCB118 !important;
    opacity: 1;
    padding-left: 1.8rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FCB118;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-light);
    background-image:
        radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

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

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

.hero-title span {
    color: #6F0188;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
}

.hero-actions .link-arrow {
    font-size: 1.15rem;
    font-weight: 700;
}

.hero-actions .arrow-circle {
    width: 42px;
    height: 42px;
    font-size: 1rem;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.25;
    animation: drift 15s infinite ease-in-out alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #6F0188;
    top: -150px;
    left: -150px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #FCB118;
    bottom: -100px;
    right: -100px;
    animation-duration: 20s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(50px, 50px) scale(1.1) rotate(15deg);
    }

    100% {
        transform: translate(-30px, 60px) scale(1) rotate(-10deg);
    }
}

/* Modern Services Section */
.services-modern {
    padding: 120px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.services-modern-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.services-text-col {
    flex: 2;
}

.services-img-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.services-tag {
    color: #6F0188;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.services-text-col h2 {
    font-size: 3.2rem;
    margin: 1.5rem 0;
}

.services-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 3rem;
    max-width: 600px;
    text-align: justify;
}

.btn-green {
    background: #6F0188;
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(111, 1, 136, 0.2);
    transition: all 0.3s ease;
}

.btn-green:hover {
    background: #FCB118;
    color: #FFF;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(252, 177, 24, 0.3);
}

.services-img-col {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.img-frame {
    position: relative;
    z-index: 5;
    background: #FFF;
    padding: 12px;
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.1);
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.5s ease;
}

.img-frame:hover {
    transform: rotateY(-5deg) rotateX(5deg);
}

.img-frame img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
}

.glow-sphere {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(111, 1, 136, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
}

.asterisk-icon {
    position: absolute;
    bottom: -10%;
    left: -60px;
    font-size: 12rem;
    color: #6F0188;
    z-index: 10;
    opacity: 0.9;
    line-height: 1;
    filter: drop-shadow(0 10px 20px rgba(111, 1, 136, 0.3));
}

@media (max-width: 992px) {
    .services-modern-flex {
        flex-direction: column;
        text-align: center;
    }

    .services-text-col h2 {
        font-size: 3.5rem;
    }

    .services-img-col {
        justify-content: center;
        margin-top: 4rem;
    }

    .asterisk-icon {
        font-size: 8rem;
        left: 0;
        bottom: -40px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: #2C0036;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
}

.about h2 {
    background: linear-gradient(135deg, #FFFFFF, #E5E7EB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about h2 span {
    color: #FCB118;
    -webkit-text-fill-color: #FCB118;
}

.about .services-tag {
    color: #FCB118;
}

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

.about-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 0, 54, 0.3), transparent);
    pointer-events: none;
}

.about-img:hover {
    transform: translateY(-10px);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
}

.features-list li i {
    color: #FCB118;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stat-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-muted);
    font-weight: 600;
}

/* About White Section */
.about-white {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    z-index: 2;
}

.about-white .services-tag {
    color: #6F0188;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.about-white h2 {
    color: #111827;
}

.about-white h2 span {
    color: #FCB118;
}

.about-white .about-text p {
    color: #4B5563;
}

.about-white .features-list li {
    color: #111827;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.portfolio-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s ease;
    cursor: pointer;
}

/* Yellow accent block on hover */
.portfolio-card::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: calc(100% + 15px);
    height: 140px;
    background: #FCB118;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Specific height for web development card to accommodate more text */
.portfolio-card.card-web::before {
    height: 175px;
}

.portfolio-card:hover::before {
    opacity: 0.8;
}

.portfolio-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-card:hover::after {
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.55) 100%);
}

.portfolio-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    text-align: left;
    width: 100%;
}

/* Arrow on hover */
.portfolio-content::after {
    content: '';
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FCB118' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translate(-10px, 10px);
}

.portfolio-card:hover .portfolio-content::after {
    opacity: 1;
    transform: translate(0, 0);
}

.portfolio-content h3 {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-family: 'Georgia', serif;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    padding-right: 30px;
}

.portfolio-content p {
    color: #E5E7EB;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
    padding-right: 30px;
}

/* Responsive grid */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Industries Section V3 (Insights Style) */
.industries-section-v3 {
    background: #000000;
    padding: 50px 0;
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.header-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.header-content p {
    color: #E5E7EB;
    max-width: 650px;
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: justify;
}

.slider-nav {
    display: flex;
    align-items: center;
}

.explore-v3-link {
    text-decoration: none;
    color: #111827;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    padding-bottom: 6px;
}

.explore-v3-link i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.explore-v3-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FCB118;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.explore-v3-link:hover {
    color: #FCB118;
}

.explore-v3-link:hover i {
    transform: translateX(6px);
}

.industries-section-v3 .explore-v3-link {
    color: #FFFFFF;
}

.industries-section-v3 .explore-v3-link:hover {
    color: #FCB118;
}

.explore-v3-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.industries-v3-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-item-v3 {
    height: 480px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Background image lives in ::before so it can zoom independently */
.industry-item-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 0;
}

.industry-item-v3:hover::before {
    transform: scale(1.08);
}

.card-finance::before {
    background-image: url('../Image/image.png');
    background-position: right center;
}

.card-education::before {
    background-image: url('../Image/image 1.png');
}

.card-healthcare::before {
    background-image: url('../Image/image 2.png');
}

.card-ecommerce::before {
    background-image: url('../Image/image 3.png');
}

/* Gradient overlay — darker base, full darkness on hover */
.industry-item-v3::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.6) 85%);
    opacity: 0.75;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 8px;
}

.industry-item-v3:hover::after {
    opacity: 0.7;
}

.industry-item-v3:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Overlay text sits above the gradient (z-index 2) */
.item-overlay {
    padding: 3rem 1.8rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.item-overlay h3 {
    color: #FFFFFF;
    font-size: 1.45rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    max-width: 90%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.industry-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
    max-width: 95%;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    text-align: justify;
}

.read-more-v3 {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

/* Sliding gold underline — same as nav links */
.read-more-v3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FCB118;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.read-more-v3 i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.read-more-v3:hover,
.industry-item-v3:hover .read-more-v3 {
    color: #FCB118;
}

.read-more-v3:hover i,
.industry-item-v3:hover .read-more-v3 i {
    transform: translateX(6px);
}

.read-more-v3:hover::after,
.industry-item-v3:hover .read-more-v3::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Background images moved to ::before pseudo-elements above for zoom support */

/* Responsive adjustments */
@media (max-width: 1200px) {
    .industries-v3-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .industries-v3-grid {
        grid-template-columns: 1fr;
    }

    .header-content h2 {
        font-size: 2.5rem;
    }
}


/* CTA Section */
.cta {
    padding: 120px 0;
    text-align: center;
    background: #F8F9FA; /* Light gray to match the image */
    border: none;
}

.cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta p {
    font-size: 1.25rem;
    color: #4B5563;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta .btn-primary {
    border-radius: 12px;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(111, 1, 136, 0.2);
}

/* Product Showcase Section */
.product-showcase {
    padding: 100px 0;
    text-align: center;
    background: #FFFFFF;
}

.showcase-content h2 {
    font-size: 3rem; /* Decreased size */
    font-weight: 800;
    margin-bottom: 2rem;
    color: #111827;
    letter-spacing: -1.2px;
    line-height: 1.2;
}

.showcase-content h2 span {
    color: #FCB118; /* Theme Gold */
}

.showcase-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

.btn-accent-blue {
    background: #0066FF;
    color: #FFFFFF;
    border-radius: 40px;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.btn-accent-blue:hover {
    background: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.link-arrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    transition: all 0.3s ease;
}

.arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #6F0188; /* Theme Purple */
}

.link-arrow:hover .arrow-circle {
    border-color: #FCB118; /* Theme Gold */
    background: #FCB118;
    color: #FFFFFF;
    transform: translateX(3px);
}

.showcase-img-container {
    max-width: 1200px;
    height: 500px; /* Fixed height as requested */
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
}

.showcase-img-container img {
    width: 100%;
    height: 100%; /* Fill the container height */
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-img-container:hover img {
    transform: scale(1.02);
}

/* Impact Section */
.impact-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: center;
}

.impact-left h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: #111827;
}

.impact-left h2 span {
    color: #FCB118; /* Theme Gold */
}

.impact-left p {
    font-size: 1.05rem; /* Decreased size */
    color: #4B5563;
    margin-bottom: 2.5rem;
    max-width: 450px;
    line-height: 1.6;
}

.impact-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.impact-card {
    display: flex;
    align-items: center;
    background: #F8F9FA; /* Light card background */
    padding: 1rem;
    border-radius: 24px;
    gap: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.impact-card:hover {
    background: #F1F3F5;
    transform: translateX(10px);
}

.impact-card-img {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
}

.impact-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-card-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #111827;
}

.impact-card-text h3 span {
    color: #FCB118; /* Theme Gold */
}

.impact-card-text p {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .impact-left {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .impact-left h2 {
        font-size: 2.5rem;
    }

    .impact-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .impact-card-img {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .showcase-content h2 {
        font-size: 2.5rem;
    }

    .showcase-actions {
        flex-direction: column;
        gap: 1.5rem;
    }

    .showcase-img-container {
        border-radius: 16px;
    }
}

/* CTA v2 Style */
.cta-v2 {
    padding: 120px 0;
    background: #FFFFFF;
}

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

.cta-img img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
}

.cta-img:hover img {
    transform: translateY(-10px);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: #111827;
}

.cta-content p {
    font-size: 1.15rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    max-width: 550px;
}

@media (max-width: 1024px) {
    .cta-grid {
        gap: 4rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .cta-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Footer Section */
.footer {
    padding: 100px 0 40px;
    background: #0B0B1E; /* Specific dark navy purple from reference image */
    color: #FFFFFF;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    /* Logo is white on dark background */
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-links a:hover {
    background: #FCB118; /* Gold on hover */
    color: #0B0B1E;
    transform: translateY(-5px);
}

.footer-links h3 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2.5rem;
    color: #FFFFFF;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #FCB118;
    padding-left: 2px;
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    gap: 2.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        width: 100%;
    }
}


/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .navbar .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 2.2rem;
    }
}

/* Premium Scroll Animations */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.reveal-up {
    transform: translateY(60px);
}

.reveal.reveal-zoom {
    transform: scale(0.92);
}

.reveal.reveal-left {
    transform: translateX(-60px);
}

.reveal.reveal-right {
    transform: translateX(60px);
}

.reveal.active {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* Stagger delays for up to 10 elements */
.stagger-1 {
    transition-delay: 0.1s;
}

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

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

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

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

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

.stagger-7 {
    transition-delay: 0.7s;
}

.stagger-8 {
    transition-delay: 0.8s;
}

.stagger-9 {
    transition-delay: 0.9s;
}

.stagger-10 {
    transition-delay: 1.0s;
}

/* Stagger delays for up to 10 elements */
.stagger-1 {
    transition-delay: 0.1s;
}

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

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

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

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

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

.stagger-7 {
    transition-delay: 0.7s;
}

.stagger-8 {
    transition-delay: 0.8s;
}

.stagger-9 {
    transition-delay: 0.9s;
}

.stagger-10 {
    transition-delay: 1.0s;
}

/* -------------------------------------------------------------------------
   Comprehensive Mobile Responsiveness Fixes
   ------------------------------------------------------------------------- */

@media (max-width: 992px) {
    /* Navbar Mobile Behavior */
    .nav-links {
        display: none !important;
    }

    .nav-links.mobile-active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #FFFFFF !important;
        padding: 2rem 5%;
        gap: 0.5rem;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        z-index: 1001;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }

    .nav-links a::after {
        display: none !important;
    }

    /* Mobile Dropdowns / Mega Menu */
    .has-mega-menu.active .mega-menu {
        display: block !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        padding: 1rem 0 !important;
        box-shadow: none !important;
        border: none !important;
        margin-top: 5px;
        background: #F9FAFB !important;
        border-radius: 8px;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }

    .mega-menu-info h3 {
        font-size: 1.4rem !important;
    }

    .mega-menu-info p {
        font-size: 0.9rem !important;
    }

    .mega-menu-links {
        column-count: 1 !important;
        padding: 0 !important;
    }

    .mega-menu-links li {
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    }

    /* Hero Section Adjustments */
    .hero {
        padding: 120px 0 60px !important;
        min-height: auto !important;
    }

    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    /* General Layout Fixes */
    .container {
        padding: 0 20px !important;
    }

    section {
        padding: 60px 0 !important;
    }

    h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    /* Industry Grid */
    .industries-v3-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1.25rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 12px !important;
    }
}