/* ==========================================================================
   🌐 PREMIUM CORE & RESET STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; 
}

body {
    background: #030d1a;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-weight: 600;
}

/* ==========================================================================
   🛡️ ENTERPRISE NAVIGATION HEADER
   ========================================================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%; 
    height: 80px; 
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(3, 13, 26, 0.95); 
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area img {
    height: 45px;
    width: auto;
}

.logo-text h2 {
    font-size: 20px;
    letter-spacing: 1.5px;
    line-height: 1;
    font-weight: 700;
}

.logo-text span {
    color: #C2185B;
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 700;
}

nav a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 25px;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #C2185B;
}

.btn-nav {
    background: rgba(194, 24, 91, 0.1);
    color: #C2185B;
    border: 1px solid rgba(194, 24, 91, 0.4);
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: #C2185B;
    color: #fff;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.3);
}

/* ==========================================================================
   🚀 HERO SECTION
   ========================================================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 80px);
    padding: 40px 5%;
    gap: 50px;
}

.hero-left {
    width: 50%;
}

.hero-left .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(194, 24, 91, 0.1);
    color: #ff4081;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(194, 24, 91, 0.2);
    margin-bottom: 25px;
}

.hero-left h1 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-left h1 span {
    color: #C2185B;
    background: linear-gradient(to right, #ff4081, #C2185B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 35px;
}

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

.btn-primary, .btn-secondary {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: #C2185B;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #de1f6b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(194, 24, 91, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.hero-right {
    width: 45%;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-right img {
    width: 100%;
    max-width: 580px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   📊 STATS SECTION
   ========================================================================== */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 50px 5%;
    background: linear-gradient(180deg, transparent, rgba(13, 33, 63, 0.2), transparent);
}

.stat-card {
    background: #081526;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.stat-icon {
    font-size: 20px;
    color: rgba(194, 24, 91, 0.6);
    margin-bottom: 10px;
}

.stat-card h2 {
    color: #ffffff;
    font-size: 46px;
    font-weight: 700;
}

.stat-card p {
    color: #94a3b8;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   🧩 GLOBAL SECTIONS SPACING
   ========================================================================== */
.solutions, .why-us, .trust-section, .industries, .products-section, .services-section {
    padding: 55px 5% 35px 5%; 
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 35px auto; 
}

.section-header span {
    color: #C2185B;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 6px; 
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px; 
}

.section-header p {
    color: #94a3b8;
    font-size: 15px;
}

/* ==========================================================================
   📦 PRODUCTS OFFERING SECTION STYLING
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.offering-card {
    background: linear-gradient(145deg, #091a30, #040f1d);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.offering-card:hover {
    transform: translateY(-8px);
    border-color: rgba(194, 24, 91, 0.4);
    box-shadow: 0 20px 40px rgba(194, 24, 91, 0.15);
}

.offering-icon {
    font-size: 32px;
    color: #C2185B;
    margin-bottom: 20px;
}

.offering-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.offering-card p {
    color: #94a3b8;
    font-size: 14.5px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.brand-tags span {
    background: rgba(255, 255, 255, 0.04);
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-badge {
    align-self: flex-start;
    background: rgba(194, 24, 91, 0.1);
    color: #ff4081;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(194, 24, 91, 0.2);
}

/* ==========================================================================
   ☁️ SERVICES OFFERING SECTION STYLING
   ========================================================================== */
.service-grid-custom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-custom {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 35px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.service-card-custom:hover {
    background: rgba(194, 24, 91, 0.02);
    border-color: rgba(194, 24, 91, 0.2);
    transform: scale(1.02);
}

.s-icon {
    font-size: 28px;
    color: #ff4081;
    background: rgba(194, 24, 91, 0.1);
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(194, 24, 91, 0.15);
}

.s-content h3 {
    font-size: 19px;
    color: #fff;
    margin-bottom: 10px;
}

.s-content p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   🏗️ ACCORDION RETENTION
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    background: linear-gradient(145deg, #07162c, #040e1b);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
}

.why-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(194, 24, 91, 0.08);
    color: #C2185B;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    border: 1px solid rgba(194, 24, 91, 0.15);
}

.why-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #fff;
}

.why-card p {
    color: #94a3b8;
    font-size: 14.5px;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(194, 24, 91, 0.4);
    box-shadow: 0 20px 40px rgba(194, 24, 91, 0.12);
}

/* ==========================================================================
   🤝 TRUST & INDUSTRIES
   ========================================================================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 600;
    font-size: 15px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.trust-card i {
    color: #C2185B;
    font-size: 16px;
}

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

.industry-card {
    background: #061426;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 17px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.industry-card i {
    font-size: 30px;
    color: #C2185B;
}

.industry-card:hover {
    border-color: rgba(194, 24, 91, 0.3);
    background: #081a33;
    transform: translateY(-4px);
}

/* ==========================================================================
   📥 NEW: HIGH-END THEME INTEGRATED LEAD FORM STYLING
   ========================================================================== */
.contact-section {
    padding: 60px 5% 80px 5%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    background: linear-gradient(135deg, #0b1e36 0%, #040f1c 100%);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(194, 24, 91, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    align-items: center;
}

.contact-info-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-info-box p {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 35px;
}

.corporate-meta-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-icon {
    width: 45px;
    height: 45px;
    background: rgba(194, 24, 91, 0.1);
    color: #C2185B;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid rgba(194, 24, 91, 0.2);
}

.meta-item span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 1px;
    font-weight: 600;
}

.meta-item p a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.meta-item p a:hover {
    color: #C2185B;
}

.meta-item .phone-link {
    color: #ff4081;
}

.tagline-text {
    font-size: 15px;
    color: #cbd5e1;
    font-weight: 500;
}

/* METALLIC FORM STYLING */
.contact-form-wrapper {
    background: rgba(3, 13, 26, 0.4);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
}

.form-group input, .form-group select, .form-group textarea {
    background: #051122;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #C2185B;
    box-shadow: 0 0 10px rgba(194, 24, 91, 0.25);
    background: #07162c;
}

.form-group select option {
    background: #07162c;
    color: #ffffff;
}

.form-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    margin-top: 10px;
}

.form-status-msg {
    display: none;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

/* ==========================================================================
   🏢 FOOTER
   ========================================================================== */
footer {
    background: #020810;
    padding: 50px 5% 25px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 40px;
}

.footer-brand {
    max-width: 450px;
}

.footer-brand h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-brand h2 span {
    color: #C2185B;
    font-size: 12px;
    display: block;
    letter-spacing: 3px;
}

.footer-brand p {
    color: #64748b;
    font-size: 14px;
}

.footer-links h4 {
    font-size: 15px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #fff;
}

.footer-links a {
    display: block;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C2185B;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    color: #475569;
    font-size: 13px;
}

/* ==========================================================================
   📱 RESPONSIVE ULTRA ENGINE
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-left h1 { font-size: 40px; }
    .product-grid, .service-grid-custom { grid-template-columns: repeat(2, 1fr); }
    .contact-container { grid-template-columns: 1fr; gap: 40px; padding: 35px; }
}

@media (max-width: 992px) {
    header { height: auto; padding: 15px 4%; }
    nav { display: none; } 
    .hero { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero-left, .hero-right { width: 100%; }
    .hero-left .badge { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-left h1 { font-size: 30px; }
    .section-header h2 { font-size: 26px; }
    .stats, .product-grid, .service-grid-custom, .why-grid, .trust-grid, .industry-grid { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; gap: 20px; }
    .contact-form-wrapper { padding: 25px 20px; }
    .footer-content { flex-direction: column; text-align: center; }
}