/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #FFFFFF;
    background-color: rgba(15, 23, 42, 0.98);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color:  #ffdd53c1;
    margin-bottom: 1rem;
}

.highlight {
    color:  #ffdd53c1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #ffdd53c1;
    color: white;
    border: 2px solid  #ffdd53c1;
}

.btn-primary:hover {
    background-color:  #ffdd53c1;
    border-color:  #ffdd53c1;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 216, 19, 0.136);
}

.btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #ffdd53b0;
}

.btn-outline:hover {
    background-color: #ffdd539d;
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.911);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.316);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: #FFFFFF;
}

.logo span {
    color: #ffdd53c1;;
}

/* Logo container - flex for alignment */
.logo {
    display: flex;
    align-items: center;
    gap: 0.1rem;  /* Space between logo and text */
}

/* Logo image styling */
.logo-img {
    height: 3.1rem;  /* Match text height */
    width: auto;      /* Maintain aspect ratio */
    display: block;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #CCCCCC;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffdd53c1;;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFFFFF;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    background: none;
    border: none;
    color:rgba(248, 250, 252, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-decoration: none;
}

.lang-btn:hover {
    color:  #2a0bf5;
}

.lang-btn.active {
    color:  #2a0bf5;
    background: rgba(249, 196, 22, 0.15);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Hero Section with Background Image */
.hero {
    position: relative;
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
     justify-content: center;
    text-align: center;
    overflow: hidden;


}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
     animation: slowZoom 20s ease-in-out infinite;
}

@keyframes slowZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-tagline {
    font-size: 1rem;
    letter-spacing: 3px;
    color: #f0e216;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #F8FAFC, #0EA5E9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle p {
    font-size: 1.2rem;
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 2rem;
}

/* About Section - Clean Layout */
.about {
    padding: 2rem;
    background: #0F172A;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.about-text p {
    color: rgba(248, 250, 252, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color:  #2a0bf5;
}
.blue{
     color:  #6e74e7;
}
.stat span:last-child {
    font-size: 0.75rem;
    color: rgba(248, 250, 252, 0.6);
}

/* Images below text - side by side */
.about-images-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.about-image-item {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.about-image-item img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: block;
}

.about-image-item img:hover {
    transform: scale(1.02);
}

.gradient-text {
    background: linear-gradient(135deg, #0EA5E9, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .about {
        padding: 3rem 1.5rem;
    }
    
    .about-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .about-images-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .about-image-item {
        max-width: 100%;
    }

}
/* Services Section with Images */
.services {
    padding: 80px 0;
    background: #0F172A;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.251);
    transition: all 0.3s ease;
    border: 1px solid #252525;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.19);
    border-color:  #2a0bf5;
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    width: 70px;
    height: 70px;
     background: linear-gradient(135deg, #0EA5E9, #8B5CF6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 1.5rem auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(9, 9, 9, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    color: #FFFFFF;
    padding: 0 1rem;
}

.service-card p {
    color: rgba(248, 250, 252, 0.7);
    padding: 0 1rem 2rem;
}

/* Process Section with Images */
.process {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F172A, #1E293B);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #464646c3;
}

.step:hover {
    transform: translateX(10px);
    border-color: #ffdd53c1;;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.step-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color:  #2a0bf5;
    min-width: 70px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.step-content p {
    color: #AAAAAA;
}

/* Why Choose Us Section */
.why-us {
    padding: 80px 0;
    background-color: rgba(32, 51, 80, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(248, 250, 252, 0.1);;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #ffdd53c1;;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffdd53c1 0%,  #2a0bf5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.feature p {
    color: #AAAAAA;
}

/* Portfolio Section with Images */
.portfolio-teaser {
    padding: 2rem;
    background: #0F172A;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    width: 350px;
    flex-shrink: 0;
    background: #1E293B;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
}

.portfolio-item.visible {
    opacity: 1;
    transform: scale(1);
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.portfolio-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.7);
    margin-bottom: 0.5rem;
}

.portfolio-cat {
    display: inline-block;
    font-size: 0.7rem;
    color: #F59E0B;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
     background: linear-gradient(135deg, #0F172A, #1E293B);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: rgba(15, 23, 42, 0.95);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #2a2a2a;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffdd53c1;;
    font-size: 1.125rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #FFFFFF;
}

.contact-item a,
.contact-item span {
    color: #AAAAAA;
    text-decoration: none;
}

.contact-item a:hover {
    color:  #2a0bf5;
}

.contact-hours h4 {
    color: #ffdd53c1;;
    margin-bottom: 1rem;
}

.contact-hours p {
    color: #AAAAAA;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: rgba(26, 40, 72, 0.707);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #3d3d3db5;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #303031;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(32, 50, 92, 0.722);
    color: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fcdd63;
    box-shadow: 0 0 0 3px rgba(251, 220, 21, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-message {
    margin-top: 1rem;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.2);
    color: #4ADE80;
    border: 1px solid #4ADE80;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    color: #F87171;
    border: 1px solid #F87171;
}

/* Footer */
.footer {
    background-color: #171a2ab7;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid #2A2A2A;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: #ffdd53c1;
}

.footer-logo p {
    color: #888888;
    line-height: 1.6;
}

.footer-links h4,
.footer-services h4,
.footer-social h4 {
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffdd53c1;
}

.footer-services li {
    color: #888888;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(250, 250, 252, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #ffdd53c1;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 244, 246, 0.099);
    color: #666666;
    font-size: 0.875rem;
}


/* Responsive Design */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
.hero-title { font-size: 2.5rem; }
 .about-image-left,
    .about-image-bottom {
        display: none;
    }
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
     .service-item,
    .service-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-image {
        margin: 0 auto;
    }
    
    .step-number {
        min-width: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background:#0F172A;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 20px rgba(34, 34, 34, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }

      .language-switcher {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .btn {
        justify-content: center;
    }

    .portfolio-item {
        width: 280px;
    }

.step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        min-width: auto;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }

}

.hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #F8FAFC;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.hero-scroll:hover {
    color: #0c83f9;
    transform: translateY(5px);
}

