/*
Theme Name: Deb Media
Theme URI: https://debmedia.com
Author: Debasis Bhattacharjee
Author URI: https://debasisbhattacharjee.com
Description: A modern, professional WordPress theme for Deb Media - Engineering Intelligent Software for Modern Businesses
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: debmedia
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* WordPress Core Styles */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Header */
.site-header {
    background: #0A1B4D;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: #D4AF37;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: #0A1B4D;
    transform: rotate(-5deg);
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.logo-text span {
    color: #D4AF37;
}

.site-navigation {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-navigation {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-navigation a:hover {
    color: #D4AF37;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

.cta-button {
    background: #D4AF37;
    color: #0A1B4D !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #F4C430;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.cta-button::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Navigation */
.mobile-navigation {
    display: none;
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: #0A1B4D;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.mobile-navigation.active {
    display: block;
}

.mobile-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-navigation a {
    display: block;
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.mobile-navigation a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
}

/* Buttons */
.btn-primary {
    background: #D4AF37;
    color: #0A1B4D;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #F4C430;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 16px 35px;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #F4C430;
    transform: translateY(-3px);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: #D4AF37;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #0A1B4D;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: #5A6C7D;
    line-height: 1.7;
}

.section-header.light .section-subtitle {
    color: #D4AF37;
}

.section-header.light .section-title {
    color: #ffffff;
}

.section-header.light .section-description {
    color: #B8C5D6;
}

/* Hero Section */
.hero-section {
    background: #0A1B4D;
    min-height: 90vh;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 62px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-content h1 .highlight {
    color: #D4AF37;
    display: block;
    font-size: 68px;
    margin-top: 10px;
}

.hero-content p {
    font-size: 22px;
    color: #B8C5D6;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-target-audience {
    font-size: 20px !important;
    color: #D4AF37 !important;
    font-weight: 600 !important;
    margin-bottom: 25px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary-alt {
    background: transparent;
    color: #D4AF37;
    padding: 16px 35px;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary-alt:hover {
    background: #D4AF37;
    color: #0A1B4D;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    color: #8B98AD;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Blobs */
.blob-1 {
    position: absolute;
    top: -100px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: #D4AF37;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    opacity: 0.08;
    z-index: 1;
}

.blob-2 {
    position: absolute;
    bottom: 80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: #D4AF37;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-circle {
    position: absolute;
    bottom: 100px;
    left: 50px;
    width: 80px;
    height: 80px;
    background: #D4AF37;
    border-radius: 50%;
    opacity: 0.6;
}

/* Services Section */
.services-section {
    background: #F8F9FA;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.services-blob-1 {
    position: absolute;
    top: -80px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: #D4AF37;
    border-radius: 50%;
    opacity: 0.08;
}

.services-blob-2 {
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: #0A1B4D;
    clip-path: circle(50% at 50% 50%);
    opacity: 0.05;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    color: inherit;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F4C430);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(10, 27, 77, 0.15);
    border: 2px solid #D4AF37;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 24px;
    color: #0A1B4D;
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #D4AF37;
}

.service-card p {
    font-size: 16px;
    color: #5A6C7D;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-tags span {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.service-learn-more {
    color: #D4AF37;
    font-weight: 700;
    font-size: 16px;
    margin-top: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-learn-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-card:hover .service-learn-more {
    color: #0A1B4D;
}

.service-card:hover .service-learn-more::after {
    transform: translateX(5px);
}

/* Footer */
.site-footer {
    background: #0A1B4D;
    padding: 80px 40px 0;
    color: #B8C5D6;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Column 1: Company Info */
.footer-about {
    max-width: 350px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo .logo-icon,
.footer-logo-link .logo-icon {
    width: 45px;
    height: 45px;
    background: #D4AF37;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: #0A1B4D;
    transform: rotate(-5deg);
}

.footer-logo .logo-text,
.footer-logo-link .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo .logo-text span,
.footer-logo-link .logo-text span {
    color: #D4AF37;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.6;
    margin: 20px 0;
    color: #B8C5D6;
}

.footer-email a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: #F4C430;
}

/* Column Headers */
.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Column Links */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #B8C5D6;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    line-height: 1.6;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #D4AF37;
    transform: translateX(3px);
}

/* Contact List */
.footer-contact-list {
    margin-bottom: 25px;
}

.footer-contact-item a {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #0A1B4D;
    transform: translateY(-3px);
}

/* Location */
.footer-location {
    margin-top: 20px;
}

.footer-location p {
    color: #B8C5D6;
    font-size: 14px;
    margin: 8px 0;
}

.footer-serving {
    color: #8B98AD !important;
    font-style: italic;
}

/* Legal & Compliance Bar */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #8B98AD;
    font-size: 14px;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #B8C5D6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #D4AF37;
    text-decoration: underline;
}

.footer-legal-links .separator {
    color: rgba(212, 175, 55, 0.3);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 20px 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .footer-about {
        text-align: center;
    }

    .footer-logo-link {
        justify-content: center;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

/* Why Choose Section */
.why-choose-section {
    background: #0A1B4D;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.why-blob-1 {
    position: absolute;
    top: 50%;
    right: -150px;
    width: 500px;
    height: 500px;
    background: #D4AF37;
    border-radius: 50%;
    opacity: 0.06;
}

.why-blob-2 {
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: #D4AF37;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    opacity: 0.05;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-card {
    text-align: center;
    padding: 35px 25px;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    background: #D4AF37;
    border-color: #D4AF37;
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-card p {
    font-size: 16px;
    color: #B8C5D6;
    line-height: 1.7;
}

/* Founder Section */
.founder-section {
    background: #F8F9FA;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.founder-blob-1 {
    position: absolute;
    top: -100px;
    right: -120px;
    width: 450px;
    height: 450px;
    background: #D4AF37;
    opacity: 0.06;
    border-radius: 50%;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.founder-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 50px;
}

.founder-image {
    position: relative;
}

.founder-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 27, 77, 0.15);
    position: relative;
    border: 4px solid #D4AF37;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A1B4D 0%, #1a2d5f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.initials {
    font-size: 120px;
    font-weight: 700;
    color: #D4AF37;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.founder-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #D4AF37;
    color: #0A1B4D;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    white-space: nowrap;
}

.founder-info h3 {
    font-size: 36px;
    color: #0A1B4D;
    margin-bottom: 8px;
    font-weight: 700;
}

.founder-title {
    font-size: 20px;
    color: #D4AF37;
    margin-bottom: 40px;
    font-weight: 600;
}

.founder-highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.highlight-text strong {
    display: block;
    font-size: 18px;
    color: #0A1B4D;
    margin-bottom: 6px;
}

.highlight-text p {
    font-size: 15px;
    color: #5A6C7D;
    line-height: 1.6;
    margin: 0;
}

/* Tech Stack Section */
.tech-stack-section {
    background: #0A1B4D;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.tech-blob-1 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: #D4AF37;
    opacity: 0.05;
    border-radius: 50%;
}

.tech-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.tech-category h4 {
    color: #D4AF37;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-logo {
    text-align: center;
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
    font-weight: bold;
    color: #D4AF37;
}

.tech-logo:hover .tech-icon {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.tech-logo span {
    font-size: 13px;
    color: #B8C5D6;
    font-weight: 500;
}

/* Engagement Model Section */
.engagement-section {
    background: #F8F9FA;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.engagement-blob-1 {
    position: absolute;
    top: -80px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: #D4AF37;
    opacity: 0.06;
    border-radius: 50%;
}

.engagement-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.engagement-step {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.engagement-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(10, 27, 77, 0.15);
    border-color: #D4AF37;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    color: #0A1B4D;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.engagement-step h3 {
    font-size: 22px;
    color: #0A1B4D;
    margin-bottom: 12px;
    font-weight: 700;
}

.engagement-step p {
    font-size: 15px;
    color: #5A6C7D;
    line-height: 1.7;
}

/* Portfolio Section - CHANGED TO LIGHT */
.portfolio-section {
    background: #F8F9FA;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.portfolio-blob-1 {
    position: absolute;
    top: -100px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: #D4AF37;
    opacity: 0.06;
    border-radius: 50%;
}

.portfolio-blob-2 {
    position: absolute;
    bottom: -80px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: #0A1B4D;
    opacity: 0.04;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.portfolio-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.portfolio-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.project-card {
    background: #ffffff;
    border: 2px solid rgba(10, 27, 77, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    color: inherit;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.project-card:hover {
    background: #ffffff;
    border-color: #D4AF37;
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(10, 27, 77, 0.15);
}

.project-visual {
    background: linear-gradient(135deg, #0A1B4D 0%, #1a2d5f 100%);
    padding: 40px;
    text-align: center;
}

.project-icon {
    font-size: 64px;
}

.project-info {
    padding: 30px;
    background: #ffffff;
}

.project-info h3 {
    font-size: 22px;
    color: #0A1B4D;
    margin-bottom: 20px;
    font-weight: 700;
}

.project-details {
    margin-bottom: 20px;
}

.project-problem,
.project-solution {
    margin-bottom: 12px;
}

.project-problem strong,
.project-solution strong {
    color: #D4AF37;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-problem,
.project-solution {
    color: #5A6C7D;
    font-size: 14px;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.tech-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.project-view-case {
    color: #D4AF37;
    font-weight: 600;
    font-size: 15px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.project-card:hover .project-view-case {
    color: #0A1B4D;
    transform: translateX(5px);
}

/* Final CTA Section */
.final-cta-section {
    background: #F8F9FA;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.cta-blob-1 {
    position: absolute;
    top: -80px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: #D4AF37;
    opacity: 0.08;
    border-radius: 50%;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content {
    background: linear-gradient(135deg, #0A1B4D 0%, #1a2d5f 100%);
    padding: 80px 60px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(10, 27, 77, 0.3);
}

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.cta-content p {
    font-size: 19px;
    color: #B8C5D6;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-icon {
    font-size: 20px;
    margin-right: 8px;
}

.btn-secondary-cta {
    background: transparent;
    color: #D4AF37;
    padding: 20px 50px;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary-cta:hover {
    background: #D4AF37;
    color: #0A1B4D;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.cta-alternative-text {
    margin-bottom: 20px;
}

.cta-alternative-text p {
    font-size: 16px !important;
    color: #B8C5D6 !important;
    margin: 0 !important;
}

.cta-link {
    color: #D4AF37;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #F4C430;
}

.cta-contact-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-contact-info p {
    font-size: 15px;
    color: #8B98AD;
    margin: 0;
}

/* Industries Section - CHANGED TO DARK */
.industries-section {
    background: #0A1B4D;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.industries-blob-1 {
    position: absolute;
    bottom: -100px;
    right: -120px;
    width: 450px;
    height: 450px;
    background: #D4AF37;
    opacity: 0.05;
    border-radius: 50%;
}

.industries-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    transition: transform 0.4s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(10deg);
}

.industry-card h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.industry-card p {
    font-size: 15px;
    color: #B8C5D6;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    background: #0A1B4D;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.testimonials-blob-1 {
    position: absolute;
    top: -100px;
    left: -120px;
    width: 450px;
    height: 450px;
    background: #D4AF37;
    opacity: 0.05;
    border-radius: 50%;
}

.testimonials-blob-2 {
    position: absolute;
    bottom: -80px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: #D4AF37;
    opacity: 0.05;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 35px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-8px);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #B8C5D6;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-info strong {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

.author-info span {
    color: #8B98AD;
    font-size: 14px;
}

.author-info .location {
    color: #D4AF37;
    font-size: 13px;
    margin-top: 3px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founder-image {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .site-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        padding: 0 20px;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 85px;
    }

    .hero-container {
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h1 .highlight {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-section,
    .why-choose-section,
    .founder-section,
    .tech-stack-section,
    .engagement-section,
    .industries-section,
    .portfolio-section,
    .testimonials-section,
    .final-cta-section {
        padding: 70px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .services-grid,
    .why-grid,
    .engagement-grid,
    .industries-grid,
    .portfolio-grid-new,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .tech-categories {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-content {
        padding: 50px 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .btn-large {
        padding: 18px 35px;
        font-size: 16px;
    }

    .cta-buttons-group {
        flex-direction: column;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content h1 .highlight {
        font-size: 34px;
    }

    .section-title {
        font-size: 28px;
    }

    .founder-info h3 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 24px;
    }
}