/* styles.css */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    border-radius: 50%;
}

.logo-text {
    color: white;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.logo-content h2 {
    color: #1a365d;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1;
}

.tagline {
    color: #4a5568;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #ff6b35;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2d3748;
    margin: 3px 0;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(26, 54, 93, 0.05) 0%,
        rgba(255, 107, 53, 0.05) 50%,
        rgba(247, 147, 30, 0.05) 100%);
    z-index: 2;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 6s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding-top: 20px;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    color: #1a365d;
}

.text-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    animation: revealText 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.text-reveal:nth-child(2) {
    animation-delay: 0.2s;
}

.text-reveal:nth-child(3) {
    animation-delay: 0.4s;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s ease-in-out infinite;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.cta-button {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
    justify-content: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #2d3748;
    border: 2px solid #e2e8f0;
}

.cta-button.secondary:hover {
    background: #f7fafc;
    border-color: #ff6b35;
    color: #ff6b35;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card span {
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
    letter-spacing: 1px;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    position: relative;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #ff6b35;
    border-bottom: 2px solid #ff6b35;
    transform: rotate(45deg);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.2) 100%);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.service-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-features span {
    background-color: #e2e8f0;
    color: #4a5568;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background-color: #f7fafc;
}

.portfolio-filter {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background-color: #e2e8f0;
    color: #4a5568;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #cbd5e0;
}

.filter-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f4f8;
}

.project-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.project-preview i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.portfolio-overlay p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.9;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.portfolio-tags span {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.view-project {
    background: white;
    color: #1a365d;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-project:hover {
    background: #ff6b35;
    color: white;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
}

.about-text .section-title {
    text-align: left;
}

.about-text .lead {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-text p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #1a365d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px;
}

.team-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 500px;
}

.showcase-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.showcase-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.showcase-item h4 {
    font-size: 1.25rem;
    color: #1a365d;
    margin-bottom: 10px;
}

.showcase-item p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}

.contact .section-header {
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 15px;
}

.contact-card p {
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-methods .contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-item .contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item .contact-icon i {
    font-size: 1.5rem;
    color: #ff6b35;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1rem;
    color: #1a365d;
    font-weight: 600;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background-color: #e2e8f0;
    color: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2d3748;
    background-color: #f7fafc;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group .form-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #a0aec0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-left: 15px;
    padding-top: 15px;
}

.submit-button {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: auto;
    align-self: flex-start;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

/* Footer Section */
.footer {
    background-color: #1a365d;
    color: #e2e8f0;
    padding: 60px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo .logo-circle {
    width: 60px;
    height: 60px;
}

.footer-logo .logo-content h2 {
    color: #f7fafc;
    font-size: 24px;
}

.footer-logo .tagline {
    color: #a0aec0;
    font-size: 12px;
}

.footer-nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.footer-nav a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff6b35;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #a0aec0;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ff6b35;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0aec0;
}

/* Animations */
@keyframes float-particle {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.6; }
}

@keyframes floatCard {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}


/* Media Queries */
@media (max-width: 992px) {
    .nav-menu {
        gap: 20px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 0;
        gap: 40px;
    }
    .hero-visual {
        order: -1;
    }
    .hero-text {
        text-align: center;
        max-width: none;
    }
    .hero-buttons {
        justify-content: center;
    }
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    .about-text,
    .contact-info {
        text-align: center;
    }
    .about-visual {
        order: -1;
    }
    .about-text .section-title {
        text-align: center;
    }
    .contact-item {
        justify-content: center;
    }
    .contact-info .social-links {
        justify-content: center;
    }
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    /* Navbar adjustments for mobile */
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.5s ease;
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-item {
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

    .hamburger {
        display: flex;
    }

    .nav-link {
        font-size: 18px;
    }

    /* Hero Section adjustments */
    .hero {
        padding: 120px 0 80px 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-visual {
        min-height: auto;
        height: 250px;
        order: -1;
    }

    .floating-card {
        padding: 16px;
    }

    .floating-card i {
        font-size: 1.5rem;
    }

    .floating-card span {
        font-size: 12px;
    }

    .card-1 { top: 10%; left: 5%; }
    .card-2 { top: 40%; right: 5%; }
    .card-3 { bottom: 10%; left: 10%; }
    
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
        width: 200px;
    }

    /* Services Section Mobile Fixes */
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .service-card {
        padding: 30px 20px;
        margin: 0;
        opacity: 1;
        transform: none;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-features {
        gap: 6px;
    }

    .service-features span {
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    .view-more-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    /* Portfolio Section Mobile Fixes */
    .portfolio {
        padding: 60px 0;
    }

    .portfolio-filter {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .portfolio-item {
        opacity: 1;
        transform: none;
    }

    .portfolio-image {
        height: 200px;
    }

    .project-preview {
        font-size: 16px;
        padding: 15px;
    }

    .project-preview i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .portfolio-overlay {
        padding: 15px;
    }

    .portfolio-overlay h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .portfolio-overlay p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .portfolio-tags {
        gap: 6px;
        margin-bottom: 15px;
    }

    .portfolio-tags span {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .view-project {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    /* About Section Mobile Fixes */
    .about {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-text {
        order: 2;
    }

    .about-visual {
        order: 1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Contact Section Mobile Fixes */
    .contact {
        padding: 60px 0;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .contact-card p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .contact-item .contact-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }

    .contact-item .contact-icon i {
        font-size: 1.2rem;
    }

    .contact-label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .contact-value {
        font-size: 0.95rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Form Mobile Fixes */
    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .form-group .form-icon {
        width: 40px;
        font-size: 1rem;
    }

    .submit-button {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
    }

    /* Other Projects Section Mobile Fixes */
    .other-projects {
        padding: 60px 0;
    }

    .other-projects-content {
        padding: 30px 20px;
    }

    .other-projects-list li {
        font-size: 1rem;
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .other-projects-cta {
        font-size: 1rem;
        padding: 20px 15px;
    }

    /* Footer Mobile Fixes */
    .footer {
        padding: 40px 0 20px 0;
    }

    .footer .container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .footer-social {
        justify-content: center;
    }

    /* General Mobile Improvements */
    .container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 40px;
        text-align: center;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* WhatsApp Button Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

/* --- Other Projects Section --- */
.other-projects {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f3e9ff 100%);
}

.other-projects-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(100, 72, 255, 0.07);
    padding: 48px 32px 32px 32px;
    text-align: left;
}

.other-projects-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.other-projects-list li {
    font-size: 1.15rem;
    color: #2d3748;
    margin-bottom: 18px;
    padding-left: 32px;
    position: relative;
    line-height: 1.7;
}

.other-projects-list li::before {
    content: '\2022';
    color: #ff6b35;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.2;
}

.other-projects-cta {
    background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    font-size: 1.15rem;
    color: #1a365d;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(255, 107, 53, 0.07);
}

@media (max-width: 768px) {
    .other-projects-content {
        padding: 32px 10px 24px 10px;
    }
    .other-projects-list li {
        font-size: 1rem;
        padding-left: 22px;
    }
    .other-projects-cta {
        font-size: 1rem;
        padding: 16px 8px;
    }
}

/* --- Custom: View More Button for Services Section --- */
.service-features .view-more-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 28px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 18px rgba(255, 107, 53, 0.18);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    text-decoration: none;
}
.service-features .view-more-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.28);
}

/* --- Custom: Make Service Card Clickable --- */
.service-card.clickable {
    cursor: pointer;
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.10);
    transition: box-shadow 0.3s, transform 0.2s;
}
.service-card.clickable:hover {
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.18);
    transform: translateY(-8px) scale(1.02);
}

/* --- Enhanced Contact Form Styles --- */
.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-button:disabled:hover {
    transform: none;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.form-message {
    transition: all 0.3s ease;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact form loading animation */
.contact-form.loading {
    pointer-events: none;
}

.contact-form.loading .form-group {
    opacity: 0.6;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-size: 28px;
}

.whatsapp-link:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-link:active {
    transform: scale(0.95);
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

/* Additional Mobile Improvements */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .cta-button {
        width: 180px;
        padding: 10px 20px;
        font-size: 13px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .portfolio-image {
        height: 180px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-card {
        padding: 20px 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .whatsapp-link {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .portfolio-item:hover,
    .cta-button:hover,
    .view-project:hover {
        transform: none;
    }

    .service-card:active,
    .portfolio-item:active {
        transform: scale(0.98);
    }

    .cta-button:active,
    .view-project:active {
        transform: scale(0.95);
    }
}


/* Mobile Navigation Fixes - Add this to your styles.css or replace the existing mobile nav styles */

@media (max-width: 768px) {
    /* Hamburger Menu Styles */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
        position: relative;
    }

    .bar {
        width: 25px;
        height: 3px;
        background: #2d3748;
        border-radius: 3px;
        transition: all 0.3s linear;
        position: relative;
        transform-origin: 1px;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg);
    }

    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 50px 0;
        gap: 30px;
        justify-content: flex-start;
        align-items: center;
        overflow-y: auto;
    }

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

    .nav-item {
        margin: 0;
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.5s ease;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2d3748;
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        width: 200px;
    }

    .nav-link:hover {
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        color: white;
        transform: translateY(-2px);
    }

    .nav-link::after {
        display: none;
    }

    /* Ensure hamburger is visible */
    .nav-container {
        position: relative;
        z-index: 1001;
    }

    /* Logo adjustments for mobile */
    .nav-logo {
        z-index: 1001;
        position: relative;
    }

    .logo-circle {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 14px;
    }

    .logo-content h2 {
        font-size: 16px;
    }

    .tagline {
        font-size: 8px;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 480px) {
    .nav-menu {
        padding: 30px 0;
        gap: 20px;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 25px;
        width: 180px;
    }

    .hamburger {
        width: 25px;
        height: 25px;
    }

    .bar {
        width: 20px;
        height: 2px;
    }
}

/* Ensure menu works on touch devices */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover {
        background: transparent;
        color: #2d3748;
    }

    .nav-link:active {
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        color: white;
    }
}

@media (max-width: 576px) {
    .form-group .form-icon {
        display: none;
    }

    .form-group input,
    .form-group textarea {
        padding-left: 15px; /* Reset padding since icon is hidden */
    }
}
