    :root {
      --primary: #0066CC;
      --primary-light: #E6F3FF;
      --primary-gradient: linear-gradient(135deg, #0066CC 0%, #004499 100%);
      --secondary: #00B4D8;
      --accent: #90E0EF;
      --neutral-900: #0A0E27;
      --neutral-800: #151B3D;
      --neutral-700: #2D3561;
      --neutral-600: #4A5568;
      --neutral-500: #718096;
      --neutral-400: #A0AEC0;
      --neutral-300: #CBD5E0;
      --neutral-200: #E2E8F0;
      --neutral-100: #F7FAFC;
      --neutral-50: #FAFBFC;
      --white: #FFFFFF;
      --glass: rgba(255, 255, 255, 0.1);
      --glass-border: rgba(255, 255, 255, 0.2);
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
      --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
      --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
      --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: var(--neutral-800);
      background-color: var(--white);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Typography */
    .h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; }
    .h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.2; }
    .h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; line-height: 1.3; }
    .h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 500; line-height: 1.4; }
    .body-lg { font-size: 1.125rem; line-height: 1.7; }
    .body { font-size: 1rem; line-height: 1.6; }
    .body-sm { font-size: 0.875rem; line-height: 1.5; }

    .text-primary { color: var(--primary); }
    .text-secondary { color: var(--secondary); }
    .text-neutral-500 { color: var(--neutral-500); }
    .text-neutral-600 { color: var(--neutral-600); }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.875rem 2rem;
      border-radius: 0.75rem;
      font-weight: 500;
      font-size: 0.975rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: var(--primary-gradient);
      color: var(--white);
      box-shadow: var(--shadow-md);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--primary);
      border: 1px solid var(--neutral-300);
      box-shadow: var(--shadow-sm);
    }

    .btn-secondary:hover {
      background: var(--primary-light);
      border-color: var(--primary);
      transform: translateY(-1px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(10px);
    }

    .btn-ghost:hover {
      background: var(--glass);
      border-color: var(--white);
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1rem 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--neutral-200);
      transition: var(--transition);
    }

    .header.scrolled {
      padding: 0.75rem 0;
      box-shadow: var(--shadow-md);
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--primary);
      text-decoration: none;
    }

    .logo-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: var(--primary-gradient);
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 1.5rem; /* Reduced gap for new button */
    }

    .nav-link {
      color: var(--neutral-600);
      text-decoration: none;
      font-weight: 500;
      padding: 0.5rem 0;
      position: relative;
      transition: var(--transition);
    }

    .nav-link:hover {
      color: var(--primary);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: var(--transition);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .hamburger {
      width: 1.5rem;
      height: 1.5rem;
      position: relative;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--neutral-700);
      margin: 3px 0;
      transition: var(--transition);
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      max-width: 400px;
      height: 100vh;
      background: var(--white);
      box-shadow: var(--shadow-xl);
      transition: var(--transition);
      z-index: 1001;
      display: flex;
      flex-direction: column;
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu-header {
      padding: 1.5rem;
      border-bottom: 1px solid var(--neutral-200);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mobile-menu-close {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      font-size: 1.5rem;
      color: var(--neutral-600);
    }

    .mobile-menu-nav {
      flex: 1;
      padding: 2rem 1.5rem;
    }

    .mobile-menu-nav a {
        display: flex;
        padding: 1rem 0;
        color: var(--neutral-700);
        text-decoration: none;
        font-weight: 500;
        font-size: 1.125rem;
        border-bottom: 1px solid var(--neutral-200);
        transition: var(--transition);
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }

    .mobile-menu-nav a:hover {
      color: var(--primary);
      padding-left: 1rem;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    }

    .hero-bg {
      position: absolute;
      top: 0;
      right: -10%;
      width: 60%;
      height: 120%;
      background: var(--primary-gradient);
      border-radius: 50%;
      opacity: 0.05;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      padding: 8rem 0 4rem;
    }

.hero-text h1 {
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
    background-clip: text;
    background-image: radial-gradient(circle at 10% 20%, #0066CC 0%, #0a0e27c4 50%, #0066CC 100%), linear-gradient(45deg, #0a0e27c4 0%, #2196F3 25%, var(--neutral-900) 50%, #0066CC 75%, var(--neutral-900) 100%), radial-gradient(circle at 90% 80%, #2196F3 0%, var(--neutral-900) 30%, #2196F3 60%);
    background-size: 500% 500%, 300% 300%, 200% 200%;
    background-position: 0% 0%, 100% 0%, 50% 50%;
    background-blend-mode: overlay;
    animation: liquid-flow-one 20s linear infinite alternate, /* Added 'alternate' */ liquid-flow-two 15s linear infinite alternate, /* Added 'alternate' */ liquid-flow-three 10s linear infinite alternate;
}

/* Keyframes remain the same, as 'alternate' handles the reverse movement */
@keyframes liquid-flow-one {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

@keyframes liquid-flow-two {
    0% { background-position: 100% 0%; }
    100% { background-position: 0% 100%; }
}

@keyframes liquid-flow-three {
    0% { background-position: 50% 50%; }
    100% { background-position: 150% 150%; }
}
    .hero-text p {
      margin-bottom: 2.5rem;
      color: var(--neutral-600);
      font-size: 1.125rem;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .hero-card {
      background: var(--white);
      border-radius: 2rem;
      padding: 3rem;
      box-shadow: var(--shadow-xl);
      border: 1px solid var(--neutral-200);
      max-width: 400px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary-gradient);
    }

    .water-drop {
      width: 120px;
      height: 120px;
      background: var(--primary-gradient);
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      margin: 0 auto 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 3rem;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    /* Section Spacing */
    .section {
      padding: 6rem 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-header h2 {
      margin-bottom: 1rem;
    }

    .section-header p {
      color: var(--neutral-600);
      font-size: 1.125rem;
      max-width: 600px;
      margin: 0 auto;
    }

    /* About Section */
    .about {
      background: var(--neutral-50);
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-text h3 {
      margin-bottom: 1.5rem;
      color: var(--primary);
    }

    .about-text p {
      margin-bottom: 1.5rem;
      color: var(--neutral-600);
    }

    .about-features {
      list-style: none;
      margin: 2rem 0;
    }

    .about-features li {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
      color: var(--neutral-700);
    }

    .about-features .check {
      width: 1.5rem;
      height: 1.5rem;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 0.75rem;
    }

    .about-visual {
      position: relative;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .stat-card {
      background: var(--white);
      padding: 2rem;
      border-radius: 1rem;
      text-align: center;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--neutral-200);
      transition: var(--transition);
    }

    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .stat-label {
      color: var(--neutral-600);
      font-size: 0.875rem;
      font-weight: 500;
    }

    /* Products Section */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .product-card {
      background: var(--white);
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--neutral-200);
      transition: var(--transition);
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
    }

    .product-image {
      height: 200px;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .product-icon {
      width: 80px;
      height: 80px;
      background: var(--primary-gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 2rem;
    }

    .product-info {
      padding: 2rem;
    }

    .product-info h3 {
      margin-bottom: 1rem;
      color: var(--neutral-800);
    }

    .product-info p {
      color: var(--neutral-600);
      margin-bottom: 1.5rem;
    }

    .product-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    /* Quality Section */
    .quality {
      background: var(--primary-gradient);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .quality::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
      opacity: 0.3;
    }

    .quality-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .quality-text h2 {
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .quality-text p {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2rem;
      font-size: 1.125rem;
    }

    .quality-metrics {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .metric {
      text-align: center;
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 1rem;
      backdrop-filter: blur(10px);
    }

    .metric-value {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .metric-label {
      font-size: 0.875rem;
      opacity: 0.9;
    }

    /* Contact Section */
    .contact {
      background: var(--neutral-50);
    }

    .contact-content {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 4rem;
    }

    .contact-info h3 {
      margin-bottom: 1rem;
      color: var(--primary);
    }

    .contact-info p {
      color: var(--neutral-600);
      margin-bottom: 2rem;
    }

    .contact-methods {
      list-style: none;
    }

    .contact-method {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      color: var(--neutral-700);
    }

    .contact-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: var(--primary-light);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }

    .contact-form {
      background: var(--white);
      padding: 2.5rem;
      border-radius: 1.5rem;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--neutral-200);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group.full-width {
      grid-column: 1 / -1;
    }

    .form-label {
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: var(--neutral-700);
    }

    .form-input {
      padding: 0.875rem 1rem;
      border: 1px solid var(--neutral-300);
      border-radius: 0.5rem;
      font-size: 1rem;
      transition: var(--transition);
      background: var(--white);
    }

    .form-input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    }

    .form-textarea {
      min-height: 120px;
      resize: vertical;
    }

    /* Footer */
    .footer {
      background: var(--neutral-900);
      color: var(--white);
      padding: 3rem 0 1.5rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-section h4 {
      margin-bottom: 1rem;
      color: var(--white);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links a {
      color: var(--neutral-400);
      text-decoration: none;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid var(--neutral-700);
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--neutral-400);
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }

    .social-link {
      width: 2.5rem;
      height: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--neutral-800);
      border-radius: 0.5rem;
      color: var(--neutral-400);
      text-decoration: none;
      transition: var(--transition);
    }

    .social-link:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(2rem);
      animation: fadeIn 0.8s ease-out forwards;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .stagger > * {
      animation-delay: calc(var(--i, 0) * 0.1s);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .nav { display: none; }
      .mobile-menu-btn { display: block; }
      
      .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }
      
      .about-content,
      .quality-content,
      .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .form-grid {
        grid-template-columns: 1fr;
      }
      
      .stats-grid {
        grid-template-columns: 1fr;
      }
      
      .quality-metrics {
        grid-template-columns: 1fr;
      }
      
      .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }

      .hero-text { order: 2; }
      .hero-visual { order: 1; }
    }

    @media (max-width: 480px) {
      .container { padding: 0 1rem; }
      .section { padding: 4rem 0; }
      .hero-actions { flex-direction: column; }
      .btn { width: 100%; justify-content: center; }
    }

    /* Utility Classes */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .glass {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Modal Styles */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000; /* Above header and mobile menu */
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      background: var(--white);
      padding: 2.5rem;
      border-radius: 1.5rem;
      box-shadow: var(--shadow-xl);
      max-width: 500px;
      width: 90%;
      position: relative;
      transform: translateY(-20px);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .modal-overlay.active .modal-content {
      transform: translateY(0);
      opacity: 1;
    }

    .modal-close-btn {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--neutral-600);
      transition: var(--transition-fast);
    }

    .modal-close-btn:hover {
      color: var(--neutral-800);
    }

    .modal-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .modal-header h3 {
      margin-bottom: 1rem;
      color: var(--primary);
    }

    .modal-toggle-buttons {
      display: flex;
      gap: 1rem;
      margin-bottom: 2rem;
      justify-content: center;
    }

    .modal-toggle-buttons .btn {
      padding: 0.75rem 1.5rem;
      font-size: 0.9rem;
      flex: 1;
    }

    .modal-toggle-buttons .btn.active {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }

    .modal-form {
      display: none; /* Hidden by default */
    }

    .modal-form.active {
      display: block;
    }

    .modal-form .form-grid {
        grid-template-columns: 1fr; /* Stack inputs on small screens */
    }

    @media (min-width: 480px) {
        .modal-form .form-grid {
            grid-template-columns: 1fr 1fr; /* Two columns on larger screens */
        }
        .modal-form .form-group.full-width {
            grid-column: span 2; /* Full width for specific fields */
        }
    }
    
    .about-text h2 {
        font-size: 1rem;
    }

    .modal-form .form-group {
      margin-bottom: 1rem;
    }
    .modal-form .form-input {
      width: 100%;
    }
    .modal-form .btn {
      margin-top: 1rem;
      width: 100%;
    }
    
    #openAuthModalBtn svg{
        width: 40px;
        cursor: pointer;
        transition: all 0.5s;
    }

    #openAuthModalBtn svg:hover{
        transform: rotate(45deg);
    }

    .about-section {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 50px;
        background-color: var(--card-bg);
        padding: 60px;
        border-radius: 10px;
        box-shadow: 0 5px 20px var(--shadow-light);
        position: relative;
        z-index: 2;
    }

.about-text {
    flex: 1;
}



.about-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 30px;
}

.about-image {
    flex: 1;
    position: relative;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

.about-image img {
    width: 300px;
    max-height: 300px;
    border-radius: 8px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 255);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}



.play-button svg {
    width: 100%;
    height: 100%;
    color: #4A90E2;
    transition: 0.5s;
    
        
}
.play-button svg:hover {
    transform: rotate(210deg);
    
}
    
@media (max-width: 480px) {
    .modal-content{
        min-width: 100%;
        height: 100%;
        border-radius: 0px;
    }

    .modal-overlay.active .modal-content {
        transform: none;
    }
    
    .form-grid{
        gap: 0.5rem;
        margin-bottom: 0;
    }
    
    .about-section {
        padding: 20px;
    }
    
    .about-image img{
        width: 100%;
    }
    
    .about-image{
        width: 100%;
    }
    
    #btncontact{margin-top: 10px;}
    
    
}
















