@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #bdb1b1;
    --dark-slate: #2d3748;
    --light-bg: #1a202c;       /* dark background */
    --white: #2d3748;          /* dark-ish background for white */
    --text-dark: #f7fafc;      /* light text */
    --text-light: #a0aec0;     /* lighter grey text */
    --glass-bg: rgba(45, 55, 72, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
}


[data-theme="dark"] {
    --light-bg: #1a202c;
    --white: #2d3748;
    --text-dark: #f7fafc;
    --text-light: #a0aec0;
    --glass-bg: rgba(45, 55, 72, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
}
.title2{
    text-align: left;
    margin: 20px;
}
.title2 img{
    /* text-align: left;
    margin-top: 50px;
    margin-left: 30px; */
    /* margin-top: 10px; */
    width: 20%;
    height: auto;
    
}
@media(max-width:760px){
    .title2{
        text-align: center;
        margin: 120px auto 30px auto;
    }
    .title2 img {
        width: 150px;
    }
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
    transition: all 0.3s ease;
    min-height: 3000px;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b, #4ecdc4);
}

/* Navigation */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 15px 30px;
    transition: all 0.3s ease;
    width: auto;
    max-width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}
#language-select {
    padding: 6px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255,77,77,0.3);
    background: var(--glass-bg);
    color: var(--text-dark);
    cursor: pointer;
}
.language-selector a {
    font-size: 0.9em;
    padding: 5px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.language-selector a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
}

/* @media(max-width:768px){
    nav{
        width: 90%;
        top: 10px;
        padding: 10px;
    }
    nav ul{
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    nav select{
        width: 100%;
    }
} */
 /* Hamburger button - hidden by default */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
    position: relative;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  /* Hamburger animation when active */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Nav menu styles */
  #navMenu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  
  /* Responsive - Mobile */
  
        /* MOBILE RESPONSIVE STYLES - Only apply changes on mobile
        @media (min-width: 769px) {
            .nav-menu {
                display: flex !important;
                position: static !important;
                flex-direction: row !important;
                background: transparent !important;
                backdrop-filter: none !important;
                width: auto !important;
                height: auto !important;
                padding-top: 0 !important;
                gap: 30px !important;
                left: 0 !important;
                top: 0 !important;
            }
            
            .hamburger {
                display: none !important;
            }
        } */

        /* Mobile responsive styles */
        /* @media (max-width: 768px) {
            .title2 {
                text-align: center;
                margin: 120px auto 30px auto;
            }
            
            .title2 img {
                width: 150px;
            }

            nav {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 95%;
                padding: 10px 20px;
                top: 10px;
            }

            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--glass-bg);
                backdrop-filter: blur(12px);
                width: 100%;
                height: calc(100vh - 70px);
                padding-top: 2rem;
                gap: 1.5rem;
                transition: left 0.3s ease;
                z-index: 1000;
                border-radius: 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
            }

            .nav-menu li a {
                font-size: 1.2rem;
                padding: 10px 20px;
                display: block;
                width: 100%;
            }

            #language-select {
                width: 80%;
                margin: 0 auto;
                display: block;
            }
        } */
         /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            nav {
                top: 10px;
                left: 10px;
                right: 10px;
                transform: none;
                padding: 10px 20px;
                width: calc(100% - 20px);
                max-width: none;
            }

            .menu-toggle {
                display: flex;
            }

            nav ul {
                position: fixed;
                top: 70px;
                left: 10px;
                right: 10px;
                flex-direction: column;
                gap: 0;
                padding: 20px;
                border-radius: 20px;
                transform: translateY(-20px);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                max-height: 0;
                overflow: hidden;
            }

            nav ul.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                max-height: 500px;
            }

            nav ul li {
                width: 100%;
                text-align: center;
                padding: 15px 0;
                border-bottom: 1px solid var(--glass-border);
            }

            nav ul li:last-child {
                border-bottom: none;
            }

            nav a {
                display: block;
                padding: 10px 0;
                font-size: 1.1em;
            }

            nav a:hover {
                transform: none;
                color: var(--primary-red);
            }

            .language-selector {
                flex-direction: row;
                justify-content: center;
                gap: 10px;
                margin-left: 0;
                padding-left: 0;
                border-left: none;
                border-top: 1px solid var(--glass-border);
                padding-top: 15px;
                margin-top: 15px;
            }

            .language-selector a {
                padding: 8px 12px;
                font-size: 0.9em;
            }
        }

        /* Extra small screens */
        @media (max-width: 480px) {
            nav {
                padding: 8px 15px;
            }

            nav ul {
                padding: 15px;
            }

            nav a {
                font-size: 1em;
            }

            .language-selector {
                flex-wrap: wrap;
                gap: 8px;
            }

            .language-selector a {
                padding: 6px 10px;
                font-size: 0.8em;
            }
        }
        #navMenu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        #navMenu li {
            position: relative;
        }

        #navMenu a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        #navMenu a:hover {
            color: var(--primary-red);
            transform: translateY(-2px);
        }

        /* Language Selector */
        #language-select {
            padding: 6px 10px;
            border-radius: 12px;
            border: 1px solid rgba(255,77,77,0.3);
            background: var(--glass-bg);
            color: var(--text-dark);
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        #language-select:hover {
            border-color: var(--primary-red);
            transform: scale(1.05);
        }

        #language-select option {
            background: var(--dark-slate);
            color: var(--text-dark);
        }

        /* Logo Section */
        .title2 {
            text-align: left;
            margin: 10px;
            padding-top: 20px;
        }

        .title2 img {
            width: 20%;
            height: auto;
            max-width: 200px;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            nav {
                top: 10px;
                left: 10px;
                right: 10px;
                transform: none;
                padding: 15px 20px;
                width: calc(100% - 20px);
                max-width: none;
            }

            .hamburger {
                display: flex;
            }

            #navMenu {
                position: fixed;
                top: 70px;
                left: 10px;
                right: 10px;
                flex-direction: column;
                gap: 0;
                padding: 20px;
                border-radius: 20px;
                background: var(--glass-bg);
                backdrop-filter: blur(15px);
                border: 1px solid var(--glass-border);
                transform: translateY(-20px);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                max-height: 0;
                overflow: hidden;
            }

            #navMenu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                max-height: 500px;
            }

            #navMenu li {
                width: 100%;
                text-align: center;
                padding: 15px 0;
                border-bottom: 1px solid var(--glass-border);
            }

            #navMenu li:last-child {
                border-bottom: none;
                padding-top: 20px;
            }

            #navMenu a {
                display: block;
                padding: 10px 0;
                font-size: 1.1em;
            }

            #navMenu a:hover {
                transform: none;
                color: var(--primary-red);
            }

            #language-select {
                width: 80%;
                margin: 0 auto;
                padding: 10px;
                font-size: 16px;
            }

            .title2 {
                text-align: center;
                margin: 120px auto 30px auto;
                padding-top: 0;
            }

            .title2 img {
                width: 150px;
            }
        }

        /* Extra small screens */
        @media (max-width: 480px) {
            nav {
                padding: 12px 15px;
            }

            #navMenu {
                padding: 15px;
                top: 65px;
            }

            #navMenu a {
                font-size: 1em;
            }

            #language-select {
                width: 90%;
                font-size: 14px;
            }
        }

.theme-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.theme-toggle:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* background: linear-gradient(135deg, var(--light-bg) 0%, rgba(255, 77, 77, 0.05) 100%); */
    overflow: hidden;
    background-image: url('bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

      
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Add a dark overlay using linear-gradient */
    background:
     linear-gradient(to bottom, var(--light-bg), rgba(0, 0, 0, 0) 7%),
    linear-gradient(to top, var(--light-bg), rgba(0, 0, 0, 0) 7%),  
      url('image/bg.png');
    
    opacity: 1;
    animation: none;
    z-index: 1;
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(1rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    animation: slideUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #052633, #094b6a);
    color: rgb(209, 209, 209);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(14, 48, 159, 0.3);
    animation: slideUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(18, 79, 172, 0.4);
}

/* Floating Elements */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.shape:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary-red), #4ecdc4);
    border-radius: 20px;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    bottom: 30%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: #4ecdc4;
    border-radius: 50%;
    animation-delay: 1s;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

/*.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: wrap;
}*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    
}


.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}
/* @media(max-width:768px){
    .about-content{
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
} */

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary-red), #4ecdc4);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.7;
}
 /* @media(max-width:768px){
    
    .about-image::before{
        display: none;
    }

}  */
@media (max-width: 768px) {
    .about-content {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }
  
    .about-image {
      position: relative;
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
    }
  
    .about-image::before {
      content: '';
      position: absolute;
      top: -15px;
      left: -15px; /* pull to the left */
      bottom: 15px;
      width: 100%; /* small green strip */
      background: linear-gradient(135deg, var(--primary-red), #4ecdc4);
      border-radius: 10px;
      z-index: -1;
      opacity: 0.8;
    }
  
    .about-image img {
      width: 100%;
      border-radius: 15px;
      display: block;
    }
  }
.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

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


.service-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 124, 215, 0.1), transparent);
    transition: all 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #000000, #025e88);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f263b, #0b648d);    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
}

/* Portfolio Section */
/* Add this */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* exactly 3 columns */
    gap: 20px; /* spacing between cards */
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}
/*
.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8788b5, #c1b4dd, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.portfolio-card:hover::before {
    transform: scaleX(1);
}*/

.portfolio-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
   /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
}

.portfolio-image {
    width: 100%;
    height: 200px;
    
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    border-radius: 10px;
    
}


.portfolio-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 20px 0 0 #f59e0b, 40px 0 0 #10b981;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3e7cb7;
}

.portfolio-description {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 4px 12px;
    background: rgba(156, 157, 164, 0.2);
    border: 1px solid rgba(167, 167, 167, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #a0a8c6;
}
/* Mobile styles - increase image size */
@media (max-width: 768px) {
    .portfolio-image {
        height: 350px; /* Increased from 200px */
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .portfolio-image {
        height: 280px; /* Even larger for small phones */
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.testimonial-content {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: var(--white);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), #4ecdc4);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

.team-member h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(211, 211, 211, 0.8);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #bebebe;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #366e94;
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #245085, #051b38);
    color: rgb(187, 182, 182);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(9, 55, 105, 0.666);
}
.iti {
    width: 100%;
  }
  
  .iti input {
    width: 100% !important;
    padding: 15px !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #bebebe;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .iti input:focus {
    outline: none;
    border-color: #366e94;
    background: rgba(255, 255, 255, 0.08);
  }
  
  /* Make flag dropdown match the theme */
  .iti__flag-container {
    background: rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  
  
/* Footer */
.premium-footer {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(26, 32, 44, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #bdb1b1, #ff6b6b, #4ecdc4, transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
}

.brand-logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f7fafc, #bdb1b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.brand-tagline {
    color: #a0aec0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(189, 177, 177, 0.1);
    border-color: rgba(189, 177, 177, 0.3);
    color: #bdb1b1;
    transform: translateY(-2px);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f7fafc;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #bdb1b1, #ff6b6b);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: #bdb1b1;
    padding-left: 8px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #bdb1b1;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 4px;
}

.language-selector {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 12px;
    color: #f7fafc;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(189, 177, 177, 0.3);
}

.language-selector:focus {
    outline: none;
    border-color: #bdb1b1;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-link {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #bdb1b1;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0aec0;
    font-size: 0.95rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdb1b1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        order: -1;
    }
}

/* Floating particles effect */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(189, 177, 177, 0.3);
    border-radius: 50%;
    animation: float-particle 20s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-delay: 5s; }
.particle:nth-child(3) { left: 50%; animation-delay: 10s; }
.particle:nth-child(4) { left: 70%; animation-delay: 15s; }
.particle:nth-child(5) { left: 90%; animation-delay: 2s; }

@keyframes float-particle {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-red);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 77, 77, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 77, 77, 0.4);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid,
    .process-steps,
    .portfolio-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    nav {
        position: relative;
        top: 0;
        transform: none;
        background: var(--white);
        margin-bottom: 20px;
        border-radius: 0;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.phone-section {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.phone-section select {
    flex: 0 0 20%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #bebebe;
    font-size: 16px;
    padding: 15px;
    transition: all 0.3s ease;
}

.phone-section select:focus {
    outline: none;
    border-color: #366e94;
    background: rgba(255, 255, 255, 0.08);
}

.phone-section select option {
    background: #2d3748;
    color: #bebebe;
}

.phone-section input[type="tel"] {
    flex: 0 0 calc(80% - 10px);
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #bebebe;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.phone-section input[type="tel"]:focus {
    outline: none;
    border-color: #366e94;
    background: rgba(255, 255, 255, 0.08);
}

/* Prevent white background when phone input is filled */
.phone-section input[type="tel"]:-webkit-autofill,
.phone-section input[type="tel"]:-webkit-autofill:hover,
.phone-section input[type="tel"]:-webkit-autofill:focus,
.phone-section input[type="tel"]:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.05) inset !important;
    -webkit-text-fill-color: #bebebe !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .phone-section {
        gap: 6px; /* Even smaller gap on mobile */
    }
    
    .phone-section select {
        min-width: 90px;    /* Increased from 70px */
        max-width: 110px;   /* Increased from 85px */
        padding: 15px 8px;  /* Increased padding from 6px */
        font-size: 14px;
        flex: 0 0 110px;    /* Fixed width instead of auto */
    }
    
    .phone-section input[type="tel"] {
        font-size: 16px; /* Prevents iOS zoom */
        flex: 0 0 calc(100% - 116px); /* Fixed smaller width (container - select width - gap) */
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .phone-section select {
        min-width: 85px;    /* Increased from 65px */
        max-width: 100px;   /* Increased from 80px */
        padding: 15px 6px;  /* Increased padding from 4px */
        flex: 0 0 100px;    /* Fixed width */
    }
    
    .phone-section input[type="tel"] {
        flex: 0 0 calc(100% - 106px); /* Adjusted for new select width */
    }
}
