@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&display=swap');
:root {
    --primary: #0066cc;
    --secondary: #00aaff;
    --dark: #1a1a2e;
    --light: #ffffff;
    --accent: #ffcc00;
    --text: #333333;
    --light-bg: #f5f9ff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text);
    overflow-x: hidden;
}

/* 3D Canvas */
#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background-color: rgba(255, 255, 255, 0.98);
}

.logo img {
    width: 70px; /* Adjust this value to make the logo smaller */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure the logo doesn't stretch too big */
}

.logo span {
    color: var(--secondary);
}
.logod img {
    width: 200px; /* Adjust this value to make the logo smaller */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure the logo doesn't stretch too big */
}

.logod span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}

.hero-content {
    width: 50%;
    z-index: 2;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a365d;
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-align: center;
    overflow: hidden;
  }
  
  /* Subtle gradient for depth */
  .hero h1 {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Professional underline animation */
  .hero h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #3182ce, #63b3ed);
    transform: translateX(-50%);
    transition: width 0.6s ease;
    animation: line-expand 1.2s ease-out forwards;
  }
  
  /* Highlight the "IT" with a subtle accent color */
  .hero h1 .highlight {
    color: #3182ce;
    position: relative;
  }
  
  /* Subtle entrance animation */
  .hero h1 {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in 0.8s ease-out forwards;
  }
  
  /* Animation keyframes */
  @keyframes line-expand {
    0% { width: 0; }
    100% { width: 80%; }
  }
  
  @keyframes fade-in {
    0% { 
      opacity: 0;
      transform: translateY(20px);
    }
    100% { 
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Hover state - subtle enhancement */
  .hero h1:hover::after {
    background: linear-gradient(90deg, #2b6cb0, #4299e1);
    animation: none;
    width: 85%;
    transition: width 0.3s ease, background 0.3s ease;
  }
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-left: 1rem;
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--light);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.float-image {
    position: absolute;
    right: 5%;
    width: 40%;
    max-width: 500px;
    animation: float 3s ease-in-out infinite;
}
.milestone-banner {
    background-color: rgba(0, 123, 255, 0.9);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    display: inline-block;
    margin: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
  }
  .milestone-number {
    font-size: 24px;
    font-weight: bold;
    margin-right: 8px;
  }
  
  .milestone-text {
    font-size: 16px;
  }
  .highlight-text {
    border-left: 4px solid #007bff;
    padding-left: 15px;
    font-weight: 500;
    color: #333;
    background-color: rgba(0, 123, 255, 0.05);
    padding: 15px;
    border-radius: 0 5px 5px 0;
  }
  
  /* Achievements container in Why Us section */
  .achievements-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 40px;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
  }
  
  .achievement-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
  }
  
  .achievement-item:hover {
    transform: translateY(-5px);
  }
  
  .achievement-number {
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
  }
  
  .achievement-text {
    color: #ffffff;
    font-size: 16px;
  }
  
  /* Testimonial section subtitle */
  .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  /* Footer achievement tag */
  .footer-achievement {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin: 15px 0;
    font-weight: 500;
  }
  
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* About Section */
.section {
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.light-bg {
    background-color: var(--light);
}

.dark-bg {
    background-color: var(--dark);
    color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 7rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 5px;
    bottom: -10px;
    left: 25%;
    background-color: var(--accent);
    border-radius: 10px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Services */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

/* New image container styling */
.service-image {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: #f5f5f5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    line-height: 1.6;
    color: #666;
    flex-grow: 1;
}

/* Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-line {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary);
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 16%;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.step:hover .step-number {
    transform: scale(1.1);
    background-color: var(--secondary);
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step p {
    font-size: 0.9rem;
    color: #666;
}

/* Do's and Don'ts */
.tips-container {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.tips-box {
    flex: 1;
    padding: 2.5rem;
    border-radius: 15px;
    background-color: var(--light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tips-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    text-align: center;
    position: relative;
    padding-bottom: 0.8rem;
}

.tips-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.do-box h3 {
    color: #009966;
}

.dont-box h3 {
    color: #e74c3c;
}

.do-box h3::after {
    background-color: #009966;
}

.dont-box h3::after {
    background-color: #e74c3c;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.tip-icon {
    margin-right: 1rem;
    color: var(--primary);
    font-size: 1.2rem;
    min-width: 24px;
}

.do-box .tip-icon {
    color: #009966;
}

.dont-box .tip-icon {
    color: #e74c3c;
}

.tip-text {
    line-height: 1.5;
}

/* Why Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    line-height: 1.6;
    color: #666;
}

/* Team */
.team-section {
    text-align: center;
    padding: 10%;
}
.team-section h2 {
    font-size: 2.5rem;
    color: var(--light);
    position: relative;
    top: 50px;
}
.team-card {
    max-width: 350px;
    margin: 0 auto;
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.team-info p {
    color: #666;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--light);
}

/* Testimonials */
.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    padding: 2rem;
    background-color: var(--light);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: #555;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.client-details p {
    color: #666;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Contact */
.contact-container {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--light);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
    min-width: 30px;
}

.info-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.info-details p, .info-details a {
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}

.info-details a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-form {
    flex: 1;
    background-color: var(--light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
    outline: none;
}

textarea.form-control {
    resize: none;
    height: 150px;
}

.form-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
}

.footer-logo span {
    color: var(--secondary);
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #aaa;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.footer-links a {
    display: block;
    margin-bottom: 1rem;
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* QR Codes */
.qr-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.qr-item {
    text-align: center;
}

.qr-img {
    width: 100px;
    height: 100px;
    background-color: var(--light);
    padding: 0.5rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.qr-title {
    color: #aaa;
    font-size: 0.9rem;
}
.social-heading {
    color: var(--light);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    text-align: center; /* Center the heading text */
}


.social-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%; /* Start at the center */
    transform: translateX(-50%); /* Shift back by 50% of its own width */
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.social-container {
    display: flex;
    justify-content: center; /* Center the social items */
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-item i {
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.social-item:hover i {
    background-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.social-title {
    color: #aaa;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-item:hover .social-title {
    color: var(--primary);
}
/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .process-line {
        display: none;
    }
    
    .step {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .logo img{
        width: 60px;
    }
    .navbar {
        padding: 1rem 5%;
    }
    
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .service-image {
        height: 150px;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 100%;
        flex-direction: column;
        background-color: var(--light);
        width: 100%;
        align-items: center;
        gap: 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links a {
        width: 100%;
        padding: 1.5rem 0;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }
    
    .hero-content {
        width: 100%;
        margin-bottom: 3rem;
    }
    
    .hero h1 {
        font-size: 3rem;
      }
      
      .hero-content::before,
      .hero-content::after {
        font-size: 1.5rem;
        position: relative;
        display: inline-block;
        margin: 10px;
      }
      
      .hero-content::before {
        left: auto;
        top: auto;
        transform: none;
      }
      
      .hero-content::after {
        right: auto;
        top: auto;
        transform: none;
      }
    
    .float-image {
        position: relative;
        right: auto;
        width: 80%;
        max-width: 400px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .tips-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .qr-container {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 5rem 5%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}