/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #F8FAFC;
    background-color: #172441;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 3.5rem;
}

h3 {
    font-size: 1.5rem;
}


/* 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;
}







.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cef50b;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #0EA5E9, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(248, 250, 252, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    background: linear-gradient(135deg, #0EA5E9, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #F8FAFC;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #F59E0B;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #F8FAFC;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 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: #130bf5;
}

.lang-btn.active {
    color: #2a0bf5;
    background: rgba(245, 158, 11, 0.1);
}

.lang-divider {
    color: rgba(248, 250, 252, 0.3);
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pic/background2.png');
    background-size: cover;
    background-position: center;
    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));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.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;
}

.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: #F59E0B;
    transform: translateY(5px);
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: #0F172A;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about-image-left {
/*    position: absolute;*/
display:flex;
    left: 5px;
    top: 10px;
    width: 380px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.about-image-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image-left img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2), transparent);
    pointer-events: none;
}

.about-text {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.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: #0EA5E9;
}

.stat span:last-child {
    font-size: 0.75rem;
    color: rgba(248, 250, 252, 0.6);
}

.about-image-bottom {
   position: relative;
   /* right: 0;*/
    width: 350px;
   /* bottom: 15px;  */ 
    margin-right: 20%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
    transition-delay: 0.3s;
}

.about-image-bottom.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image-bottom img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Process Section */
.process {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0F172A, #1E293B);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header h2 {
    margin-bottom: 1rem;
}

.process-header p {
    color: rgba(248, 250, 252, 0.7);
}

.process-steps {
    position: relative;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F59E0B;
    min-width: 80px;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: rgba(248, 250, 252, 0.7);
}

/* Services Section */
.services {
    padding: 5em 2rem;
    background: #0F172A;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    margin-bottom: 1rem;
}

.services-header p {
    color: rgba(248, 250, 252, 0.7);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(248, 250, 252, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item:hover {
    border-color: #F59E0B;
    transform: translateX(10px);
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0EA5E9, #8B5CF6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.service-info h3 {
    margin-bottom: 0.5rem;
}

.service-info p {
    color: rgba(248, 250, 252, 0.7);
}

/* Why Choose Us */
.why-us {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pic/background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.why-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(248, 250, 252, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    border-color: #F59E0B;
    transform: translateY(-5px);
}

.why-card i {
    font-size: 2rem;
    color: #0EA5E9;
    margin-bottom: 1rem;
}

.why-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.why-card p {
    color: rgba(248, 250, 252, 0.7);
    font-size: 0.9rem;
}

/* Portfolio */
.portfolio {
    padding: 5rem 2rem;
    background: #0F172A;
}

.portfolio-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.portfolio-header h2 {
    margin-bottom: 1rem;
}

.portfolio-header p {
    color: rgba(248, 250, 252, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-wrapper {
    overflow-x: auto;
    cursor: grab;
    scroll-behavior: smooth;
}

.portfolio-wrapper:active {
    cursor: grabbing;
}

.portfolio-scroll {
    display: flex;
    gap: 2rem;
    padding: 1rem 2rem;
    width: max-content;
}

.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;
}

.portfolio-scroll-hint {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: rgba(248, 250, 252, 0.5);
}

/* Contact */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    text-align: center;


}

.contact-container{


        display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
    gap: 2rem;

}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h2 {
    margin-bottom: 1rem;
}

.contact-content p {
    color: rgba(248, 250, 252, 0.7);
    margin-bottom: 2rem;
}

.contact-btn {
    background: linear-gradient(135deg, #0EA5E9, #8B5CF6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1E293B;
    padding: 2rem;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(248, 250, 252, 0.1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(248, 250, 252, 0.7);
}

.modal-close:hover {
    color: #F59E0B;
}

.modal-content h3 {
    margin-bottom: 1.5rem;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #0F172A;
    border: 1px solid rgba(248, 250, 252, 0.1);
    border-radius: 8px;
    color: #F8FAFC;
    font-family: inherit;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #0EA5E9;
}

.submit-btn {
    background: linear-gradient(135deg, #0EA5E9, #8B5CF6);
    color: white;
    border: none;
    padding: 1rem;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.2);
    color: #4ADE80;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    color: #F87171;
}

/* Footer */
.footer {
    background: #0F172A;
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(248, 250, 252, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #0EA5E9, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-logo p {
    font-size: 0.8rem;
    color: rgba(248, 250, 252, 0.5);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-links h4 {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(248, 250, 252, 0.8);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(248, 250, 252, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F59E0B;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(248, 250, 252, 0.1);
    font-size: 0.75rem;
    color: rgba(248, 250, 252, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    .hero-title { font-size: 2.5rem; }
    
    .about-image-left,
    .about-image-bottom {
        display: none;
    }
    
    .service-item,
    .service-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        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;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        min-width: auto;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-scroll {
        padding: 0 1rem;
    }
    
    .portfolio-item {
        width: 280px;
    }
}



.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
  width: max-content;
    background: #f9fafb00;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #e5e7eb00;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EA580C;
    font-size: 1.125rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #e7e8e9;
}

.contact-item a,
.contact-item span {
    color: #fdfdfd;
    text-decoration: none;
}

.contact-item a:hover {
    color: #EA580C;
}

.contact-hours h4 {
    color: #fcfcfc;
    margin-bottom: 1rem;
}

.contact-hours p {
    color: #ffffff;
    margin-bottom: 0.5rem;
}
