/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;    
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

/* ==========================================================================
   Common Components
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #272948;
    color: white;
}

.btn-primary:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #4FC3F7;
    color: white;
}

.btn-secondary:hover {
    background: #29B6F6;
    transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    background: linear-gradient(135deg, #272948 0%, #3a4a6b 100%);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(39, 41, 72, 0.15);
}

.header.transparent {
    background: rgba(39, 41, 72, 0.824); 
    box-shadow: none;
    backdrop-filter: blur(5px); 
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



.logo-icon {
    width: 133px;
    height: 51px;
}

.logo-text {
    font-size: 16px;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #4FC3F7;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4FC3F7;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Navigation Icons */
.nav-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 25px;
}

.nav-icon.transparent {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    box-shadow: none;
}

.nav-icon:hover {
    background: white;
    color: white;
    transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 50vh;
}

.hero-content h1 {
    font-size: 3rem;
    color: #272948;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content h1 .highlight {
    color: #e74c3c;
}

.hero-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
}

.tech-element {
    position: absolute;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* Tech Elements Positioning */
.laptop {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 110px;
    background: #272948;
    border-radius: 8px;
}

.mobile {
    top: 80px;
    left: 60px;
    width: 70px;
    height: 120px;
    background: white;
    border-radius: 12px;
}

.tablet {
    top: 40px;
    right: 80px;
    width: 100px;
    height: 80px;
    background: white;
    border-radius: 8px;
}

.cloud {
    top: 20px;
    right: 30%;
    transform: translateX(50%);
    width: 80px;
    height: 50px;
    background: white;
    border-radius: 25px;
}

.gear {
    bottom: 120px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
}

.database {
    bottom: 80px;
    right: 30px;
    width: 70px;
    height: 90px;
    background: white;
    border-radius: 8px;
}

.server {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 60px;
    height: 80px;
    background: white;
    border-radius: 6px;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-us {
    padding: 2rem 2rem;
    background: white;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: #272948;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.text-content .description {
    font-size: 1rem;
    color: #272948;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-logo {
    width: 316px;
    height: 426px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin: 3rem;
}

.feature-card {
    background: white;
    border: 2px solid #272948;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 41, 72, 0.08);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(39, 41, 72, 0.15);
    border-color: #2c2f61;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
}

.icon-placeholder {
    font-size: 2.2rem;
    text-align: center;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #272948;
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
}

.feature-card p {
    font-size: 0.95rem;
    color: #272948;
    line-height: 1.6;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: 4rem 2rem;
    background: #f5f7fa;
}

.services h2 {
    font-size: 2.5rem;
    color: #272948;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border: 3px solid #272948;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(39, 41, 72, 0.15);
    border-color: #2c2f61;
}

.service-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    height: 60px;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #272948;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #272948;
    margin: 1rem 0;
    font-weight: 600;
    line-height: 1.3;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    padding: 2rem 2rem;
    background: white;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #272948;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-form,
.contact-info {
    flex: 1 1 400px;
}

.contact-form h2,
.contact-info h3 {
    color: #272948;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #272948;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-form textarea {
    resize: vertical;
}

.contact-info p {
    font-size: 1rem;
    color: #272948;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    background: linear-gradient(135deg, #272948 0%, #3a4a6b 100%);
    color: white;
    padding: 3rem 2rem 1rem;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    padding: 5px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    color: #dfe6ed;
    line-height: 1.6;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #4FC3F7;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #dfe6ed;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 768px) {
    /* Header & Navigation */
    .nav-menu {
        display: none;
    }

    /* Hero Section */
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .illustration-container {
        height: 300px;
    }

    /* Why Choose Us Section */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }


    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
        margin: 0;
        width: 100%;
    }

    .feature-card {
        width: 90vw;
        max-width: 350px;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }


    .why-choose-us h2 {
        font-size: 2rem;
    }

    .company-logo {
        width: 150px;
        height: 150px;
    }

    /* Services Section */
    .services {
        padding: 3rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        min-height: auto;
        margin: 0.75rem 0;
    }
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
.footer {
    background: #272948;
    padding: 3rem 0 0 0;
    margin-top: 0;
    box-shadow: 0 -1px 10px rgba(190, 193, 231, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 1rem;
}

.footer-col {
    padding: 0 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 50%;
}

.footer-logo h3 {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

.footer-col p {
    color: #b4bac4;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}



.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #b4bac4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #e74c3c;
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #b4bac4;
}

.contact-item i {
    font-size: 1.2rem;
    color: #e74c3c;
    margin-top: 3px;
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-item a {
    color: #b4bac4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #e74c3c;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 2rem;
}

.footer-bottom p {
    color: #b4bac4;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-col {
        text-align: center;
        padding: 0;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}



