html, body {
    margin: 0;
    padding: 0;
    background-color: #000;
    min-height: 100vh;
}
body::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

nav {
    position: fixed;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.logo {
    color: white;
    font-size: 24px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00f7ff; /* Added hover effect */
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('images/Background.png'); /* Updated to local image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 200; /* Added letter spacing */
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 300; /* Made subtitle lighter */
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 20px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 20px;
    }
}

/* Added smaller screen size breakpoint */
@media (max-width: 480px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 20px;
    }
} 

/* ... existing code ... */

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        gap: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 24px;
    }

    /* Hamburger animation classes */
    .hamburger.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}

.minimalistic {
    min-height: 100vh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.minimalistic .content {
    text-align: center;
    max-width: 1000px;
    z-index: 2;
}

.design-text {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    font-weight: 100;
    background: linear-gradient(to right, #fff, #7fecec);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #7fecec;
}

.minimalistic h2 {
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #7fecec);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #7fecec;
}

.minimalistic h2 span {
    display: block;
    margin-top: 0px;
}

.minimalistic p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 10px;
    opacity: 0.9;
}

.phone-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    z-index: 1;
}

.phone-image {
    width: 100%;
    height: auto;
    transform: perspective(1000px) rotateX(10deg);
    transition: transform 0.3s ease;
}

/* Add hover effect to phone */
.phone-container:hover .phone-image {
    transform: perspective(1000px) rotateX(5deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .design-text {
        font-size: 4rem;
        top: 5%;
    }

    .minimalistic h2 {
        font-size: 4rem;
    }

    .minimalistic p {
        font-size: 1.2rem;
        padding: 0;
    }

    .phone-container {
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .design-text {
        font-size: 4rem;
        top: 5%;
    }

    .minimalistic h2 {
        font-size: 4rem;
    }

    .phone-container {
        max-width: 600px;
    }
}

/* Optional: Add some animation when the section comes into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.minimalistic .content {
    animation: fadeInUp 1s ease-out;
}

/* Add this to your existing CSS */
.mobile-apps {
    min-height: 100vh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    position: relative;
    width: 100%;
}

.mobile-apps h2 {
    font-size: 4rem;
    margin-bottom: 50px;
    background: linear-gradient(to right, #fff, #7fecec);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.app-slider-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 40px 0;
    scroll-behavior: smooth; /* Add smooth scrolling */
    -webkit-overflow-scrolling: touch; /* Better touch scrolling */
}

.app-slider {
    display: flex;
    gap: 50px;
    padding: 0 calc(50vw - 525px);
    min-width: max-content;
}

.app-card {
    flex: 0 0 auto;
    width: 350px;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.image-container {
    width: 100%;
    height: 600px; /* Fixed height for images */
    margin-bottom: 20px;
    overflow: hidden; /* Prevent image overflow */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show full image without cropping */
}

.card-content {
    padding: 20px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05); /* Optional: add subtle background */
}

.card-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.app-card.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
}

.app-card:not(.active) {
    filter: blur(1px);
}

/* CSS for the "What we offer?" section */
.what-we-offer-section {
    min-height: 100vh;
    background-color: #000;
    padding: 100px 0 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.what-we-offer-section .section-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(to right, #fff, #7fecec);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
}

.offer-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: center;
}

.offer-image .phone-container {
    width: 100%;
    max-width: 400px;
}

.offer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

.offer-text {
    flex: 0 0 45%;
    text-align: left;
}

.offer-text p {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.offer-list {
    flex: 0 0 45%;
    margin-left: 50px;
}

.offer-list ul {
    list-style: none;
    padding: 0;
}

.offer-list ul li {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.offer-list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #7fecec;
}

/* Responsive styles for What We Offer section */
@media (max-width: 1024px) {
    .offer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .offer-text {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .offer-list {
        flex: 0 0 100%;
        margin-left: 0;
        text-align: center;
    }
    
    .offer-list ul li {
        text-align: left;
        display: inline-block;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .what-we-offer-section .section-title {
        font-size: 3rem;
    }
    
    .offer-text p {
        font-size: 1.2rem;
    }
    
    .offer-list ul li {
        display: block;
        margin-right: 0;
    }
}

/* Add these styles for touch-based scrolling indicators */
.scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.scroll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s;
}

.scroll-dot.active {
    background-color: #7fecec;
}

/* Contact Section Styles */
.contact-section {
    min-height: 100vh;
    background-color: #000;
    padding: 100px 0;
    position: relative;
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    flex: 1;
    padding-right: 50px;
}

.contact-info h2 {
    font-size: 4rem;
    margin-bottom: 30px;
    background: linear-gradient(to right, #fff, #7fecec);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.contact-email {
    display: block;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 60px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-email:hover {
    color: #7fecec;
}

.support-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.support-box {
    margin-bottom: 30px;
}

.support-box h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.support-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 0;
}

.contact-form-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.form-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
}

.form-card h3 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 10px;
}

.form-card p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7fecec;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}

.submit-btn:hover {
    background-color: #333;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

.form-disclaimer a {
    color: #000;
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .contact-info p {
        margin: 0 auto 30px;
    }
    
    .contact-form-container {
        justify-content: center;
    }
    
    .support-sections {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-info h2 {
        font-size: 3rem;
    }
    
    .form-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 2.5rem;
    }
    
    .contact-email {
        font-size: 1.2rem;
    }
    
    .form-card {
        padding: 20px;
    }
}

