/* Base Styles */
:root {
    --primary-color: #e91e63;
    --secondary-color: #00d1ff;
    --dark-bg: #0d0d0d;
    --medium-bg: #161616;
    --light-bg: #1e1e1e;
    --text-light: #ffffff;
    --text-medium: #cccccc;
    --text-dark: #aaaaaa;
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Calibri, 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-medium);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn.outlined {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn.outlined:hover {
    background: white;
    color: var(--dark-bg);
}

/* Section Container */
.section-container {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    flex-wrap: wrap;
    background: #0d0d0d;
}

.image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.image-wrapper img {
    width: 90%;
    border-radius: 8px;
    height: auto;
    object-fit: cover;
}

.content-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.content-wrapper h4 {
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.content-wrapper p {
    margin-bottom: 15px;
    text-align: justify;
    margin: 20px;
}

/* Why Choose Us Section */
.choose-codeaxe {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.choose-subheading {
    text-transform: uppercase;
    color: var(--text-dark);
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-align: center;
}

.choose-heading {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: center;
}

.choose-description {
    font-size: 1rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.choose-card {
    background: var(--medium-bg);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.choose-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.choose-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.choose-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Services Section */
.codeaxe-services {
    padding: 80px 0;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.services-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.services-description {
    text-align: center;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 60px;
}

.service-block {
    margin-bottom: 60px;
}


.service-title h3 {
    padding-left: 40px;
    font-size: 22px;
    margin: 10px 0;
}

.service-title .highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.service-content p {
    font-size: 18px;
}

.service-image img {
    max-width: 100%;
    border-radius: 10px;
    width: 400px;
    height: auto;
}

.service-text {
    flex: 1;
    min-width: 280px;
}

.service-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 15px;
    color: var(--text-medium);
}

.divider {
    border: 1px solid var(--border-color);
    margin: 40px 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #0f0f10;
}

.process-intro h4 {
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
}

.process-intro h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: center;
}

.process-intro p {
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 15px;
    text-align: center;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
    margin: 10px;
}

.process-card {
    background: var(--medium-bg);
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin: 10px;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.process-icon {
    font-size: 30px;
    background: var(--light-bg);
    color: var(--secondary-color);
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: inline-block;
}

.process-card h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Best Choice Section */
.best-choice-section {
    padding: 80px 0;
}

.header {
    text-align: center;
    margin-bottom: 80px;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    gap: 60px;
    margin-top: 60px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    min-height: 400px;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) > * {
    direction: ltr;
}

.service-content {
    padding: 40px;
}

.service-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 400;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
}

.service-image-wrapper {
    perspective: 1000px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform: rotateX(-5deg) rotateY(10deg);
    transition: transform 0.3s ease;
}

.service-image:hover {
    transform: rotateX(-2deg) rotateY(5deg) scale(1.05);
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    text-align: center;
}

.industries-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
    margin: 10px;
}

.industries-section p {
    font-size: 14px;
    margin-bottom: 50px;
    text-align: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-items: center;
}

.industry-box {
    background-color: var(--medium-bg);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    width: 100%;
    max-width: 250px;
    transition: all 0.3s ease;
}

.industry-box:hover {
    background-color: var(--light-bg);
    transform: translateY(-5px);
}

.industry-box i {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.industry-box h4 {
    font-size: 16px;
    margin: 0;
}

.industries-footer {
    margin-top: 50px;
    font-size: 13px;
    color: var(--text-dark);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Costing Section */
.costing-section {
    padding: 80px 0;
}

.wdc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.wdc-heading-label {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wdc-heading-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
}

.wdc-heading-desc {
    font-size: 16px;
    color: var(--text-medium);
    max-width: 750px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.wdc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.wdc-grid-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--medium-bg);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 20px;
}

.wdc-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.05);
}

.wdc-grid-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.wdc-grid-content {
    text-align: left;
    padding-left: 20px;
}

.wdc-grid-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.wdc-grid-content p {
    margin: 0;
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}



/* Contact Section */
.contact-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.form-box {
    flex: 1;
    min-width: 300px;
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
}

.form-box h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
}

.form-box form input,
.form-box form textarea {
    width: 100%;
    background: var(--medium-bg);
    border: 1px solid var(--border-color);
    padding: 14px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 14px;
    border-radius: 4px;
}

.form-box form textarea {
    resize: none;
    min-height: 150px;
}

.form-box button {
    background: var(--text-light);
    color: var(--dark-bg);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-box button:hover {
    background: #ddd;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
}

.content-box {
    flex: 1.5;
    min-width: 300px;
}

.content-box small {
    font-size: 14px;
    color: var(--text-dark);
    display: block;
    margin-bottom: 10px;
}

.content-box h2 {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.content-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.content-box .bold-note {
    font-weight: bold;
    text-transform: uppercase;
    margin: 30px 0;
}

.cta p {
    font-size: 14px;
    margin: 6px 0;
}

.cta .highlight {
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    
    .service-item:nth-child(even) {
        direction: ltr;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 500px;
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    

    .section-container {
        padding: 60px 0;
        flex-direction: column;
        text-align: center;
    }
    
    .content-wrapper {
        text-align: center;
    }
    
    .choose-heading, .services-title {
        font-size: 1.5rem;
    }
    
    .service-content {
        flex-direction: column;
    }
    
    .service-image img {
        width: 100%;
    }
    
    .process-intro h2 {
        font-size: 1.5rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .service-title h3 {
        font-size: 1.2rem;
        margin: 20px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .content-box h2 {
        font-size: 1.5rem;
    }
}




