* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
  }

  nav.navbar {
    background-color: #3d014f;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 5%;
  }

  .logo img {
    height: 50px;
    width: auto;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }

  .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }

  .nav-links li a.active,
  .nav-links li a:hover {
    color: #00ff66;
  }

  .contact-btn {
    background-color: #00ff44;
    color: black;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }

  .contact-btn:hover {
    background-color: #00cc33;
  }

  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
  }

  /* Responsive Design */
  @media (max-width: 992px) {
    .nav-container {
      flex-direction: column;
      align-items: flex-start;
    }

    .menu-toggle {
      display: block;
      align-self: flex-end;
    }

    .nav-links,
    .contact-btn {
      display: none;
      width: 100%;
    }

    .nav-links.active {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 10px;
    }

    .contact-btn.show {
      display: block;
      margin-top: 10px;
    }
  }

  .hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 70px 10%;
    gap: 40px;
    background-color: white;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-content h4 {
    color: #12f325;
    font-size: 18px;
    opacity: 0;
    animation: fadeIn 2s forwards;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-family: Khula, sans-serif;
    max-width: 450px;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #12f325;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #0dc81f;
}

.hero-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.hero-images img {
    width: 100%;
    border-radius: 10px;
    height: 180px;
    object-fit: cover;
    animation: slideFade 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slideFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Responsive Styles ========== */

/* Tablets and small laptops */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: 50px 5%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 0 auto 30px;
    }

    .hero-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-images img {
        height: 150px;
    }
}

/* Mobile devices: iPhone, Android */
@media (max-width: 600px) {
    .hero {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-images {
        grid-template-columns: 1fr;
    }

    .hero-images img {
        height: 140px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}


.box2 {
    width: 100%;
    background-color: #3d014f;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.features-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.intro {
    margin-bottom: 40px;
    padding: 0 15px;
}

.intro .tag {
    display: inline-block;
    background: #b0f4c0;
    color: green;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 15px;
    margin-bottom: 16px;
}

.intro h2 {
    font-size: 32px;
    margin: 10px 0;
    color: wheat;
}

.intro p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 30px;
    color: white;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.feature-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 24px;
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box .icon {
    font-size: 28px;
    background: #b0f4c0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.feature-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Responsive: tablets */
@media (max-width: 1024px) {
    .feature-box {
        flex: 1 1 calc(50% - 20px);
    }

    .intro h2 {
        font-size: 28px;
    }

    .intro p {
        font-size: 16px;
    }
}

/* Responsive: phones */
@media (max-width: 768px) {
    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-box {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .intro h2 {
        font-size: 24px;
    }

    .intro p {
        font-size: 15px;
    }

    .feature-box p {
        font-size: 14px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .box2 {
        padding: 40px 10px;
    }

    .intro h2 {
        font-size: 22px;
    }

    .feature-box {
        padding: 18px;
    }

    .feature-box .icon {
        font-size: 24px;
        width: 42px;
        height: 42px;
    }
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.stat-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(50% - 40px); /* 2 per row on tablets */
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.05);
}

.stat-box h2 {
    font-size: 32px;
    color: #12f325;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 14px;
    color: #3d014f;
    margin: 0;
    font-weight: bold;
}

/* Medium devices (tablets) */
@media (max-width: 768px) {
    .stat-box {
        flex: 1 1 calc(50% - 30px);
    }
}

/* Small devices (phones) */
@media (max-width: 500px) {
    .stat-box {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .stat-box h2 {
        font-size: 28px;
    }

    .stat-box p {
        font-size: 13px;
    }
}


/* Container */
.box3 {
    width: 100%;
    background-color: white;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }
  
  /* Section */
  .features-section3 {
    width: 100%;
    max-width: 1200px;
  }
  
  /* Intro */
  .intro3 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .tag3 {
    display: inline-block;
    background-color: #eee;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: bold;
    color: #3d014f;
    margin-bottom: 10px;
  }
  
  .intro3 h1 {
    font-size: 32px;
    color: black;
    margin-top: 15px;
    line-height: 1.4;
  }
  
  /* Grid Layout */
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 10px;
  }
  
  /* Project Cards */
  .project-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 100%;
  }
  
  .project-box:hover {
    transform: scale(1.03);
  }
  
  .project-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  /* Description */
  .description {
    padding: 20px;
    font-weight: bold;
    text-align: center;
    color: #3d014f;
  }
  
  .des {
    margin-top: 10px;
    font-weight: normal;
    color: black;
    font-size: 14px;
  }
  
  /* Responsive: Tablets */
  @media (max-width: 992px) {
    .intro3 h1 {
      font-size: 28px;
    }
  }
  
  /* Responsive: Phones */
  @media (max-width: 600px) {
    .intro3 h1 {
      font-size: 22px;
      padding: 0 10px;
    }
  
    .des {
      font-size: 13px;
    }
  
    .project-box img {
      height: 180px;
    }
  
    .description {
      padding: 15px;
    }
  }
  
  .box4 {
    width: 100%;
    background-color: #3d014f;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.features-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.intro {
    text-align: center;
    color: white;
    padding: 0 10px;
}

.intro .tag {
    display: inline-block;
    background: #b0f4c0;
    color: green;
    padding: 10px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

.intro h2 {
    font-size: 28px;
    margin: 15px 0;
    color: wheat;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
    justify-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.service-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box i {
    font-size: 40px;
    color: #12f325;
    margin-bottom: 10px;
}

.service-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.service-description {
    font-size: 14px;
    color: #555;
}

/* Medium Devices (Tablets, Landscape Phones) */
@media (max-width: 1024px) {
    .intro h2 {
        font-size: 24px;
    }

    .service-box i {
        font-size: 36px;
    }

    .service-title {
        font-size: 16px;
    }
}

/* Small Devices (Phones) */
@media (max-width: 768px) {
    .intro h2 {
        font-size: 22px;
    }

    .service-description {
        font-size: 13px;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .service-box {
        padding: 16px;
    }

    .service-box i {
        font-size: 32px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .intro h2 {
        font-size: 20px;
    }

    .service-title {
        font-size: 15px;
    }

    .service-description {
        font-size: 12px;
    }

    .grid-container {
        gap: 10px;
    }
}
.box5 {
    width: 100%;
    background-color: white;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.service-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    gap: 20px;
    box-sizing: border-box;
}

.service-image {
    flex: 1 1 300px;
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 10px;
}

.service-content {
    flex: 2 1 500px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    box-sizing: border-box;
}

.service-box {
    background: #f9f9f9;
    border-left: 5px solid #12f325;
    padding: 15px 20px;
    border-radius: 6px;
    transition: 0.3s;
    box-sizing: border-box;
}

.service-box:hover {
    background: #e9f0ff;
    border-color: #12f325;
}

.service-box h3 {
    margin-bottom: 8px;
    color: #3d014f;
    font-size: 20px;
}

.service-box p {
    color: #555;
    font-size: 14px;
}

/* Responsive: Tablets and below */
@media (max-width: 992px) {
    .service-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-content {
        padding: 20px;
        align-items: center;
    }

    .service-box {
        width: 100%;
        max-width: 500px;
    }

    .service-image {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}

/* Small Devices (Phones) */
@media (max-width: 600px) {
    .service-box h3 {
        font-size: 18px;
    }

    .service-box p {
        font-size: 13px;
    }

    .service-content {
        gap: 20px;
        padding: 15px;
    }

    .box5 {
        padding: 30px 15px;
    }
}




.box6 {
    width: 100%;
    min-height: 170px;
    padding: 40px 20px;
    background-color: #3d014f;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.beam {
    font-size: 30px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.4;
    max-width: 90%;
}

.get {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #12f325;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.get:hover {
    background-color: #0cd41e;
}

/* Tablets */
@media (max-width: 992px) {
    .beam {
        font-size: 26px;
    }

    .get {
        font-size: 15px;
        padding: 10px 18px;
    }
}

/* Phones */
@media (max-width: 600px) {
    .box6 {
        padding: 30px 15px;
    }

    .beam {
        font-size: 22px;
    }

    .get {
        font-size: 14px;
        padding: 9px 16px;
    }
}

.box7 {
    width: 100%;
    background-color: white;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.features-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.intro {
    text-align: center;
    margin-bottom: 30px;
}

.tag {
    display: inline-block;
    background: #eee;
    color: #3d014f;
    padding: 8px 14px;
    font-weight: bold;
    border-radius: 20px;
    margin-bottom: 10px;
}

.intro h1 {
    font-size: 28px;
    color: #3d014f;
    line-height: 1.4;
}

.container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.boo {
    background: #f5f5f5;
    border: 1px solid #3d014f;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 450px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.boo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.info h3 {
    color: #3d014f;
    margin-bottom: 5px;
    font-size: 18px;
}

.info p {
    margin-top: 5px;
    font-family: 'Khula', sans-serif;
    font-size: 14px;
    color: #333;
}

/* Tablet and below */
@media (max-width: 992px) {
    .intro h1 {
        font-size: 24px;
    }

    .boo {
        flex: 1 1 100%;
    }
}

/* Mobile and small devices */
@media (max-width: 768px) {
    .intro h1 {
        font-size: 20px;
        padding: 0 10px;
    }

    .boo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .boo img {
        margin-bottom: 10px;
    }

    .info h3 {
        font-size: 16px;
    }

    .info p {
        font-size: 13px;
    }
}

/* Very small devices (like older iPhones) */
@media (max-width: 480px) {
    .intro h1 {
        font-size: 18px;
    }

    .tag {
        font-size: 12px;
        padding: 6px 10px;
    }

    .boo {
        padding: 15px;
    }

    .boo img {
        width: 70px;
        height: 70px;
    }

    .info p {
        font-size: 12px;
    }
}

.contact-us {
    background-color: #3d014f;
    padding: 40px 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.contact-logo,
.contact-info {
    flex: 1 1 300px;
    min-width: 280px;
}

.contact-logo img {
    width: 180px;
    margin-bottom: 15px;
}

.contact-logo p {
    font-size: 16px;
    font-family: 'Khula', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: wheat;
}

.contact-info p {
    font-size: 15px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    text-decoration: none;
    color: #fff;
    background-color: #12f325;
    padding: 10px;
    margin-right: 10px;
    border-radius: 50%;
    display: inline-block;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #0ec91a;
}

/* Tablet responsiveness */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-logo,
    .contact-info {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .contact-logo img {
        width: 150px;
    }

    .social-icons a {
        margin: 5px;
    }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .contact-logo p,
    .contact-info p {
        font-size: 14px;
    }

    .contact-info h3 {
        font-size: 18px;
    }

    .contact-logo img {
        width: 130px;
    }

    .social-icons a {
        padding: 8px;
        font-size: 14px;
    }
}
.overlay {
    background-color: #12f325;
    padding: 15px 35px;
    border-radius: 10px;
    text-align: center;
    max-width: 100%;
    width: fit-content;
    margin: auto;
}

.overlay h1 {
    margin: 0;
    font-size: 2rem;
    color: black;
    line-height: 1.3;
    word-wrap: break-word;
}

/* Tablet responsiveness */
@media (max-width: 992px) {
    .overlay {
        padding: 15px 25px;
    }

    .overlay h1 {
        font-size: 1.8rem;
    }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .overlay {
        padding: 12px 20px;
    }

    .overlay h1 {
        font-size: 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .overlay h1 {
        font-size: 1.3rem;
    }

    .overlay {
        padding: 10px 15px;
    }
}

.team-section {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: rgba(128, 128, 128, 0.521);

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.description {
    padding: 20px;
    font-weight: bolder;
    text-align: center;
    color: #3d014f;
}

.des {
    margin-top: 10px;
    text-align: center;
    color: black;
    font-family: Khula;
}
.aboutbox {
    width: 100%;
    background-color: white;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}
.intro .mine {
    font-size: 32px;
    margin: 10px 0;
    color: black;
}

.intro .text1 {
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 30px;
    color: #333;
}
/* Container & Layout */
.container {
    max-width: 1000px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
  }
  
  /* Section */
  .section {
    margin-bottom: 30px;
  }
  
  .section h2 {
    color: #3d014f;
    margin-bottom: 15px;
    font-size: 1.8rem;
    border-bottom: 2px solid #12f325;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .section p, .section li {
    font-size: 1rem;
    margin-top: 10px;
    color: #333;
  }
  
  .section ul {
    padding-left: 20px;
    margin-top: 10px;
  }
  
  .education {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .edu-item {
    flex: 1 1 45%;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  .edu-item h3 {
    font-size: 1.2rem;
    margin-top: 5px;
    color: #34495e;
  }
  
  .edu-item p, .edu-item li {
    font-size: 0.95rem;
    color: #555;
  }
  
  .edu-item ul {
    padding-left: 20px;
    margin-top: 10px;
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .edu-item {
      flex: 1 1 100%;
    }
  
    .section h2 {
      font-size: 1.5rem;
    }
  
    .section p, .section li, .edu-item p, .edu-item li {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 15px;
    }
  
    .section h2 {
      font-size: 1.3rem;
    }
  
    .section p, .section li, .edu-item p, .edu-item li {
      font-size: 0.9rem;
    }
  }
  
  














.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .contact-info1,
  .contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 400px;
    box-sizing: border-box;
  }
  
  .contact-info1 h2,
  .contact-form h2 {
    margin-bottom: 20px;
    color: #3d014f;
  }
  
  .contact-info1 p {
    margin: 10px 0;
    color: #555;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin: 10px 0 5px;
    font-weight: bold;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .contact-form button {
    margin-top: 20px;
    padding: 12px;
    background-color: #12f325;
    border: none;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #3d014f;
  }
  
  /* ✅ Responsive Styles */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      padding: 20px 15px;
    }
  
    .contact-info,
    .contact-form {
      width: 100%;
      padding: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      font-size: 13px;
      padding: 8px;
    }
  
    .contact-form button {
      font-size: 14px;
      padding: 10px;
    }
  }
  