@font-face {
    font-family: 'Poppins';
    src: url('Poppins/Poppins-Regular.ttf');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Poppins';
    src: url('Poppins/Poppins-Bold.ttf') format('truetype'); 
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Poppins';
    src: url('Poppins/Poppins-Italic.ttf') format('truetype'); 
    font-weight: normal;
    font-style: italic;
  }

html{scroll-behavior: smooth; overflow-x: hidden;}

/* homepage.css */

/* Section Styles */
#home {
    min-height: 100vh;
    background-color: #f5f5f5;
    color: #333;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Headings */
#home h1 {
    color: #222;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Lead text */
#home p.lead {
    max-width: 500px;
    margin: 0 auto 3rem auto;
}

/* Form container */
#home .form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

/* Form inputs */
#contactForm .form-control {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: all 0.3s ease;
}

#contactForm .form-control:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
    outline: none;
}

/* Textarea */
#contactForm textarea.form-control {
    border-radius: 1rem;
}

/* Button */
#contactForm button {
    font-size: 1.1rem;
    padding: 0.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#contactForm button:hover {
    transform: translateY(-2px);
}

/* AOS overrides (optional smooth fade) */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}
[data-aos].aos-animate {
    opacity: 1;
}

/* Logo responsive styles */
.site-logo {
    max-width: 250px;
    height: auto;
}

@media (max-width: 576px) {
    .site-logo {
        max-width: 180px;
    }
}