/* 
    New India Enterprises
    Primary Color: #0D1626
    Secondary Color (Accent): #F2A900
*/

:root {
    --primary: #0D1626;
    --primary-light: #1a2a47;
    --secondary: #F2A900;
    --secondary-hover: #d99700;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border: #e2e8f0;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(13, 22, 38, 0.08);
    --shadow-sm: 0 4px 6px rgba(13, 22, 38, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 40px;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
    color: var(--primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

.mt-3 {
    margin-top: 15px;
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.logo-content {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.logo-text span {
    color: var(--secondary);
}

.logo-subtext {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--primary);
    font-weight: 500;
    font-size: 16px;
}

.main-nav a:hover {
    color: var(--secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-link {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-link i {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

.mobile-nav-menu {
    display: none;
    background-color: var(--white);
    padding: 20px;
    box-shadow: var(--shadow);
    position: fixed;
    top: 110px;
    left: 0;
    width: 100%;
    z-index: 999;
}

.mobile-nav-menu.active {
    display: block;
}

.mobile-nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-menu a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0;
    color: var(--white);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13,22,38,0.95) 0%, rgba(13,22,38,0.8) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero .badge {
    display: inline-block;
    background-color: rgba(242, 169, 0, 0.2);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid var(--secondary);
}

.hero h1 {
    color: var(--white);
    font-size: 54px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #e2e8f0;
    max-width: 700px;
}

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

.trust-signal {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
}

.trust-signal p {
    font-size: 16px;
    margin: 0;
}

.trust-signal strong {
    color: var(--secondary);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--text-muted);
}

.check-list {
    margin-top: 30px;
}

.check-list li {
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list i {
    color: var(--secondary);
    font-size: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background-color: var(--bg-light);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-box.highlight {
    background-color: var(--primary);
    color: var(--white);
}

.stat-box.highlight .stat-label {
    color: #e2e8f0;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--secondary);
}

.stat-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px 25px;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-muted);
}

/* Why Us */
.why-us-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(242, 169, 0, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-muted);
}

.why-us-cta {
    display: flex;
    align-items: center;
}

.cta-box {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border-top: 4px solid var(--secondary);
    box-shadow: var(--shadow);
}

.cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Clients */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.client-category {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--secondary);
}

.client-category h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.client-category ul {
    list-style-type: none;
}

.client-category li {
    padding: 10px 0;
    color: var(--text-main);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.client-category li::before {
    content: "•";
    color: var(--secondary);
    font-size: 20px;
    margin-right: 10px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin-top: 40px;
}

.contact-details li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-details .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details .text strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-details .text a, 
.contact-details .text span {
    color: var(--text-muted);
    font-size: 16px;
}

.contact-details .text a:hover {
    color: var(--secondary);
}

.contact-form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 26px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

/* Footer */
.site-footer {
    background-color: var(--primary);
    color: #e2e8f0;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-logo-content {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.footer-logo-content span {
    color: var(--secondary);
}

.footer-about p {
    margin-bottom: 25px;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e2e8f0;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 5px;
}

.footer-bottom {
    background-color: #080f1c;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .about-grid,
    .why-us-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 100px 0 80px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 32px;
    }
}

/* Service Card Enhancements */
.service-card {
    cursor: pointer;
    position: relative;
}

.learn-more {
    margin-top: 20px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.learn-more i {
    transition: var(--transition);
}

.service-card:hover .learn-more {
    color: var(--primary);
}

.service-card:hover .learn-more i {
    transform: translateX(5px);
}

/* Modal Styles */
.modal {
    display: flex;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 22, 38, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.modal-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .modal-gallery {
        grid-template-columns: 1fr;
    }
    .modal-gallery-img {
        height: 250px;
    }
    .modal-content {
        padding: 30px 20px;
    }
}
