Reset default styles
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
      display: flex;

}

body {
    font-family: Arial, sans-serif;
    font-style: normal;
    background-color: #000;
    
 
    
}


* {
    box-sizing: border-box; /* CRITICAL - ensures padding/borders are included in width calculations */
}

html, body {
    overflow-x: hidden; /* Prevent horizontal scroll */
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Fix your container class */
.container {
    max-width: 1200px; /* Instead of fixed width */
    width: 100%; /* Take full width up to max-width */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Add some padding instead of margin */
}

/* Media query fixes for mobile */
@media (max-width: 768px) {
    .container {
        max-width: 100%; /* Remove the 1400px limit on mobile */
        margin: 0; /* Remove auto margins */
        padding: 0 15px; /* Reduce padding on mobile */
    }
    
    /* If you have any elements with fixed widths, make them responsive */
    .services-grid,
    .section,
    .theme {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
}

/* Additional mobile fixes */
@media (max-width: 480px) {
    .container {
        padding: 0 10px; /* Even less padding on small screens */
    }
    
    /* Make sure all content fits */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix any text that might be too wide */
    h1, h2, h3, h4, h5, h6, p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Header responsive fix */
.header {
    width: 100%;
    max-width: 100%;
    padding: 1% 5%; /* Use percentage padding */
}

@media (max-width: 768px) {
    .header {
        padding: 1% 3%; /* Reduce padding on mobile */
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1% 2%; /* Even less padding on small mobile */
    }
}
.header {
    padding: 1% 5%; /* Reduced padding for better mobile compatibility */
    max-width: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.9); /* Added background for visibility */
}

.navbar {
    width: 100%; 
    padding: 15px 0; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Max width to prevent excessive stretching */
    margin: 0 auto; /* Center the navbar */
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 40px;  
    width: auto;    
}

.logo span {
    font-size: 18px;
    font-weight: normal;
    color: #62fcff; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    z-index: 2000;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: normal;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #62fcff;
}

.nav-links li a.active {
    color: #62fcff;     
    font-weight: bold; 
    border-bottom: 2px solid #62fcff;
    padding-bottom: 2px;
}

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

.hamburger span {
    height: 3px;
    width: 25px;
    background: #ffffff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Tablet styles */
@media (max-width: 1024px) {
    .header {
        padding: 1% 3%;
    }
    
    .nav-links {
        gap: 15px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .header {
        padding: 1% 4%; /* Adjusted for mobile */
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-links {
        position: fixed; /* Changed to fixed for better positioning */
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px; /* Slightly wider for better touch targets */
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding-top: 80px;
        backdrop-filter: blur(10px); /* Modern blur effect */
    }

    .nav-links li {
        margin: 20px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        padding: 12px 20px;
        font-size: 18px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-links li a:hover {
        background-color: rgba(98, 252, 255, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
        z-index: 2001;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .header {
        padding: 1% 3%;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo span {
        font-size: 14px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .nav-links {
        width: 200px; /* Smaller width for very small screens */
        padding-top: 70px;
    }
    
    .nav-links li a {
        font-size: 16px;
        padding: 10px 15px;
    }
}

/* Large desktop styles */
@media (min-width: 1200px) {
    .header {
        padding: 1% 8%; /* More padding on large screens */
    }
    
    .nav-links {
        gap: 30px;
    }
}

/* Demo content */
.demo-content {
    padding: 60px 5% 40px;
    color: white;
    text-align: center;
    min-height: 100vh;
}

.demo-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #62fcff;
}

.demo-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .demo-content {
        padding: 40px 4% 30px;
    }
    
    .demo-content h1 {
        font-size: 2rem;
    }
    
    .demo-content p {
        font-size: 1rem;
    }
}

 .header {
            text-align: left;
            /* backdrop-filter: blur(10px); */
            padding: 40px 40px;
            border-radius: 20px;
            margin-bottom: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .header h1 {
            font-size: 6.5rem;
            text-align: left;
            font-weight: 700;
            background: linear-gradient(45deg, #ffffff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 10px;
        }

        .qr-code {
  margin-top: 25px;
  text-align: center;
}

.qr-code img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 35px;
  border: 3px solid #00d4ff; 
}

.contact-section {
  text-align: center;
  margin-top: 20px;
}

/* Contact Icons Row */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-icons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  transition: all 0.3s ease;
}

.contact-icons a:hover {
  transform: scale(1.1);
}

.contact-icons a:nth-child(1):hover {
  background-color: #00d4ff; 
}

.contact-icons a:nth-child(2):hover {
  background-color: #ff0000;
}

.card {
  background: #222;         
  padding: 20px;
  border-radius: 12px;
  max-width: 350px;
  margin: 20px auto;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.contact-row {
  display: flex;
  align-items: center;
  margin: 10px 0;
  font-size: 16px;
}

.contact-row i {
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
}

.contact-row strong {
  margin-right: 5px;
  color: #fff;
}

.contact-row a {
  color: #fff;               
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-row a:hover {
  color: #00d4ff;              
  text-decoration: underline;
}



/* Footer Section */
        .footer {
            background-color: rgb(0, 0, 0);
            color: #ccc;
            padding: 80px 20px 40px;
            font-family: 'Inter', sans-serif;
            width: 100%;
            box-sizing:border-box;
        }

        .footer-container {
            width: 100%;
            max-width: 10400px;
            margin: 0 auto;
            padding: 0 40px;
            box-sizing: border-box;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 200px repeat(3, 1fr); /* Fixed width for logo */
            gap: 80px;
            margin-bottom: 40px;
            align-items: start;
        }

        /* Footer logo */
        .footer-logo {
            display: flex;
            align-items: center;
        }

        .footer-logo img {
            width: 150px;
            height: auto;
        }

        /* Placeholder for missing logo */
        .footer-logo-placeholder {
            width: 150px;
            height: 60px;
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 14px;
        }
        

        /* Columns */
        .footer-column h3 {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 24px;
            text-transform: uppercase;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 16px;
        }

        .footer-links a {
 color: #ffffff;            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #0099ff;
        }

        /* Footer bottom */
        .footer-bottom {
            border-top: 1px solid #fffdfd;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 14px;
            color: #666;
        }

        /* Social links */
        .footer-social a {
color: #0099ff;            text-decoration: none;
            margin-left: 10px;
        }
/* 
        .footer-social a:hover {
            color: #fff;
        } */

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            .footer-logo {
                grid-column: 1 / -1;
                margin-bottom: 20px;
            }
            /* Footer Logo Image */
.footer-logo img {
  width: 150px;     /* adjust width as needed */
  height: auto;     /* maintain aspect ratio */
  display: block;
}

        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-container {
                padding: 0 20px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }