  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
    }

    html, body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    nav {
      display: flex;
      width: 100%;
      justify-content: space-between;
      align-items: center;
      padding: 0px 30px;
      background-color: #fff;
      border-bottom: 1px solid #ddd;
      position: fixed;
      z-index: 1000;
      top: 0;
      left: 0;
    }

    .logo img {
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 50px;
      transition: right 0.3s ease;
    }

    .nav-item {
      position: relative;
    }

    .nav-item > a {
      text-decoration: none;
      font-size: 17px;
      color: #12263a;
    }

    .nav-item > a:hover {
      color: #0a539c;
    }

    .quote-btn {
      background-color: #3577a8;
      color: #fff;
      padding: 10px 18px;
      border: none;
      font-size: 16px;
      border-radius: 4px;
      cursor: pointer;
    }

    .quote-btn a {
      text-decoration: none;
      color: white;
    }

    .quote-btn:hover {
      background-color: #1b4167;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 10002; /* Keep above menu */
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: #333;
      transition: 0.3s;
    }

    /* Change hamburger into X */
    .hamburger.active div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active div:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active div:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: #3577a8;
        padding: 80px 20px 10px 0px;
        color: white;
        overflow-y: auto;
        z-index: 10001;
      }

      .nav-links.show {
        right: 0;
      }

      .nav-item > a {
        color: white;
        
        display: block;
      }

       .quote-btn{
        background-color: white;
       }

      .quote-btn a {
        text-decoration: none;
        color: #003f82;
      }
      .quote-btn a:hover {
         background-color:#003f82;
        color:white;
      }

      .hamburger {
        display: flex;
      }
    }

  .main-section {
      margin-top: 50px;
      background: linear-gradient(to right, #ffffff 55%, #3577a8 45%);
      display: flex;
      align-items: center;
      align-items: center;
      justify-content: space-between;
      padding: 50px;
      min-height: 100vh;
    }

 

    /* Left Content */
    .content-left {
      flex: 1;
      padding-right: 20px;
    }

    .content-left h1 {
      font-size: 60px;
      font-weight: 700;
      line-height: 1.2;
    }

    .content-left p {
      font-size: 16px;
      margin: 20px 0;
      color: #555;
      max-width: 500px;
    }

    .button-group {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .btn {
      padding: 12px 25px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn-primary {
      background: #4a90c2;
      color: #fff;
    }

    .btn-primary:hover {
      background: #3577a8;
    }

    .btn-secondary {
      background: #e6e6e6;
      color: #222;
    }

    .btn-secondary:hover {
      background: #ccc;
    }

    .website-text {
      margin-top: 30px;
      font-size: 14px;
      color: #777;
    }

    /* Right Content */
    .content-right {
      flex: 1;
      text-align: right;
    }

    .content-right img {
      margin-top: 80px;
      width: 100%;
      max-width: 600px;
      transform: translateX(-100px); /* desktop shift */
    }

    /* Responsive */
    /* Responsive */
@media (max-width: 900px) {
  .main-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient( #ffffff , #3577a8 ); 
    
  }

  /* Image comes first */
  .content-right {
    order: -1; 
    margin-top: 0;
    text-align: center;
  }

  .content-right img {
    margin-top: 20px;
    width: 90%;
    max-width: 400px;
    transform: none; /* reset shift */
  }

  .content-left {
    padding-right: 0;
    margin-top: 30px;
  }

  .content-left h1 {
    font-size: 36px;
  }

  .content-left p {
    font-size: 14px;
    max-width: 100%;
  }
}

    @media (max-width: 500px) {
      .content-left h1 {
        font-size: 28px;
      }

      .btn {
        padding: 10px 20px;
        font-size: 14px;
      }

      .content-right img {
        width: 100%;
        max-width: 320px;
      }
    }

    /* about Section start */



    .about-container {
      margin-top: 80px;
      display: flex;
      flex-wrap: wrap;
      padding: 40px;
      gap: 40px;
      align-items: flex-start;
    }

    .about-left {
      flex: 1;
      min-width: 300px;
      position: relative;
    }

    .about-left img {
      width: 100%;
      border-radius: 8px;
    }

    .about-experience-badge {
      position: absolute;
      bottom: -20px;
      left: 20px;
      background: linear-gradient(to right, #3577a8 , #63a3eb);
      padding: 10px 15px;
      color: white;
      font-size: 32px;
      font-weight: bold;
      border-radius: 10px;
    }

    .about-experience-badge span {
      display: block;
      font-size: 20px;
      font-weight: normal;
    }

    .about-right {
      flex: 1;
      min-width: 300px;
    }

    .about-right h4 {
      color: #3577a8 ;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .about-right h1 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .about-right p {
      font-size: 16px;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .about-cards {
      display: flex;
      gap: 20px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .about-card {
      background: white;

      padding: 20px;
      border-radius: 10px;
      flex: 1;
      min-width: 200px;
      box-shadow: 0 2px 6px #3577a8 ;
    }

    .about-card i {
      font-size: 24px;
      margin-bottom: 10px;
      color:#3577a8 ;
    }

    .about-card h3 {
      font-size: 18px;
      margin-bottom: 5px;
    }

    .about-card p {
      font-size: 14px;
      color: #666;
    }

    .about-learn-more {
      background: #3577a8 ;
      color: white;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: background 0.3s;
    }

    .about-learn-more:hover {
      background: #0779ea;
    }

    #about-counter {
      display: inline-block;
    }

    /* about section end */


    /* courses section start */
     .courses-section {
      padding: 60px 20px;
      text-align: center;
    }

    .courses-section h2 {
      font-size: 36px;
      color: #3577a8 ;
      margin-bottom: 50px;
      font-weight: 700;
    }

    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     row-gap: 40px;
     column-gap: 30px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .courses-grid + .courses-grid {
  margin-top: 40px; /* gap between row 1 and row 2 */
}

    .course-card {
      background-color: #fdfdfd;
      border: 1px solid #3577a8 ;
      border-radius: 20px;
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .course-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }

    .icon-circle {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background-color: #3577a8;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .icon-circle img {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .course-title {
      font-size: 18px;
      font-weight: 600;
      color: #1f2f55;
    }

    @media (max-width: 480px) {
      .courses-section h2 {
        font-size: 28px;
      }

      .course-title {
        font-size: 16px;
      }
    }
/* button all courses */
    .all-courses-link {
      margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
}

/* Pill style */
.all-courses-link.pill {
  background: linear-gradient(90deg, #3577a8  0%, #055fc7 100%);
  color: #fff;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(7,121,234,0.12);
}

.all-courses-link.pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(7,121,234,0.16);
}

.all-courses-link.pill:focus {
  outline: 3px solid rgba(7,121,234,0.18);
  outline-offset: 3px;
}

/* Arrow */
.all-courses-link .arrow {
  display: inline-block;
  transition: transform .18s ease;
}
.all-courses-link.pill:hover .arrow { transform: translateX(4px); }






/* support start */

  section.support-section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 50px;
      gap: 40px;
    }

    /* Left side image part */
    .support-image {
      width: 500px;
      height: auto;
    }

    .support-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Right side text part */
    .support-content {
      max-width: 550px;
    }

    .support-content h2 {
      font-size: 30px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .support-content p {
      color: #555;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .support-features {
      display: grid;
      grid-template-columns: repeat(1fr);
      gap: 20px;
    }

    .support-box {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .support-icon {
      background: #3577a8;
      color: #fff;
      font-size: 30px;
      /* padding: 18px; */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 45px;
      height: 45px;
    }

    .support-text h4 {
      font-size: 16px;
      margin-bottom: 5px;
    }

    .support-text p {
      font-size: 14px;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 900px) {
      section.support-section {
        flex-direction: column;
        text-align: center;
      }
      .support-features {
        grid-template-columns: 1fr;
      }
      .support-box {
        justify-content: center;
      }
    }
    /* support end */

    /* contact */

    .contact-heading {
      padding: 50px 20px 20px;
      text-align: left;
      font-size: 36px;
      font-weight: bold;
      max-width: 1100px;
      margin: auto;
      color: #222;
    }
    .contact-section {
      min-height: 500px; /* pura viewport height lega */
  padding: 80px 20px;
      position: relative;
      background: #3577a8;
      display: flex;
      justify-content: space-between;
      padding: 60px 20px;
      flex-wrap: wrap;
    }
    .contact-left {
      flex: 1;
      max-width: 40%;
      color: #fff;
      padding-left: 60px;
    }
    .contact-left h3 {
      margin: 0 0 10px;
      font-size: 22px;
    }
    .contact-left p {
      margin: 5px 0;
      font-size: 15px;
    }
    .contact-left .icon-box {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
    }
    .contact-left .icon-box i {
      font-size: 35px;
      margin-right: 15px;
    }

    .contact-right {
      position: absolute;
      right: 100px;
      top: -60px;
      background: #f9f9f9;
      padding: 40px;
      border-radius: 8px;
      width: 500px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .contact-right h2 {
      font-size: 24px;
      margin-bottom: 20px;
      color: #222;
    }
    .contact-right input,
    .contact-right select,
    .contact-right textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 14px;
    }
    .contact-right button {
      background: #3577a8;
      color: #fff;
      border: none;
      padding: 12px 25px;
      font-size: 16px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }
    .contact-right button:hover {
      background: #0099dd;
    }

    /* Responsive */
    @media(max-width: 900px) {
      .contact-section {
        flex-direction: column;
        padding: 40px 20px;
      }
      .contact-left {
        max-width: 100%;
        padding-left: 20px;
      }
      .contact-right {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 20px;
        width: 100%;
      }
    }



    /* contact  end*/



    /* footer start */

     footer {
      background: #1a1a1a;
      color: #fff;
      padding: 50px 80px;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }

    .footer-container h3 {
      font-size: 20px;
      margin-bottom: 20px;
    }

    .footer-container p {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #ddd;
    }

    /* Social icons */
    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: #333;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #fff;
      font-size: 16px;
      transition: 0.3s;
    }

    .social-icons a:hover {
      background: #3577a8;
    }

    /* Footer links */
    .footer-links ul {
      list-style: none;
    }

    .footer-links ul li {
      margin-bottom: 12px;
    }

    .footer-links ul li a {
      color: #ddd;
      text-decoration: none;
      font-size: 14px;
      transition: 0.3s;
    }

    .footer-links ul li a:hover {
      color: #3577a8;
    }

    /* Gallery */
    .gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .gallery img {
      width: 100%;
      height: 80px;
      object-fit: cover;
      border-radius: 5px;
      transition: 0.3s;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    /* Responsive */
    @media (max-width: 1000px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .footer-container {
        grid-template-columns: 1fr;
      }
    }







    /* About page */

     .hero-section {
      position: relative;
      height: 80vh;
      width: 100%;
     background-image: url('../img/banner-img.png');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      color: #fff;
      text-align: center;
      overflow: hidden;
    }

    .hero-section::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5); /* dark overlay */
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-content h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .breadcrumb {
      font-size: 1rem;
    }

    .breadcrumb a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .breadcrumb a:hover {
      color: #3577a8;
    }

    .breadcrumb span {
      margin: 0 8px;
      color: #ddd;
    }

    .breadcrumb .active {
      color: #3577a8;
      font-weight: 600;
    }

    /* angled bottom shape */
    .hero-section svg {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100px;
      z-index: 2;
    }

    @media(max-width: 768px) {
      .hero-content h1 {
        font-size: 2.2rem;
      }
      .breadcrumb {
        font-size: 0.9rem;
      }
    }

    /* about sec */

      .about-section {
        width: 100%;

      display: grid;
      grid-template-columns: 1fr 1.2fr;
      align-items: center;
      gap: 2rem;
      padding: 50px 4%;
    }

    /* Left column */
    .about-content h5 {
      font-size: 1rem;
      font-weight: 600;
      color: #3577a8;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
    }

    .about-content h5 img {
      width: 25px;
      height: 25px;
    }

    .about-content h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .about-content p {
      font-size: 1rem;
      line-height: 1.7;
      color: #444;
      margin-bottom: 20px;
    }

    .btn-primary {
      display: inline-block;
      background: #3577a8;
      color: #fff;
      padding: 14px 28px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 6px;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .btn-primary:hover {
      background: #1976d2;
    }

    /* Right column */
    .about-images {
      width: 100%;
      height: 100%;
    }

    .about-images img {
      width: 100%;
      height: 450px; /* Increased image height */
      object-fit: cover;
      border-radius: 12px;
    }

    /* Responsive */
    @media(max-width: 992px) {
      .about-section {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .about-content h5 {
        justify-content: center;
      }
      .about-images img {
        height: 400px; /* Smaller height for tablets */
      }
    }

    @media(max-width: 600px) {
      .about-images img {
        height: 300px; /* Smaller height for mobiles */
      }
    }






    /* our program */

     .programs-section {
      margin-top: 100px;
      text-align: center;
      padding: 80px 8%;
      background: #f9f9f9;
    }

    .programs-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #222;
    }

    .programs-intro {
      font-size: 1rem;
      color: #555;
      max-width: 750px;
      margin: 0 auto 50px auto;
      line-height: 1.7;
    }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 40px;
    }

    .program-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      overflow: hidden;
    }

    .program-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }

    .program-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .program-content {
      padding: 20px;
    }

    .program-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: #3577a8;
      margin-bottom: 10px;
    }

    .program-desc {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
    }

    /* Responsive */
    @media(max-width: 992px) {
      .programs-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width: 600px) {
      .programs-grid {
        grid-template-columns: 1fr;
      }
    }

/* Elegibility */



     .requirements-section {
      margin-top: 80px;
      padding: 80px 8%;
      background: #f7f9fc;
      text-align: center;
    }

    .requirements-section h2 {
      font-size: 2.3rem;
      font-weight: 700;
      margin-bottom: 50px;
      color: #222;
    }

    .requirements-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .requirement-card {
      background: #fff;
      padding: 40px 25px;
      border-radius: 14px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .requirement-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 28px rgba(0,0,0,0.15);
    }

    .requirement-icon {
      width: 70px;
      height: 70px;
      border-radius: 12px;
      background: #eaf4ff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .requirement-icon img {
      width: 38px;
      height: 38px;
    }

    .requirement-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: #1a2a3a;
    }

    .requirement-list {
      list-style: none;
      padding-left: 0;
    }

    .requirement-list li {
      font-size: 0.95rem;
      color: #444;
      margin-bottom: 10px;
      position: relative;
      padding-left: 20px;
    }

    .requirement-list li::before {
      content: "✈";
      position: absolute;
      left: 0;
      color: #0073e6;
      font-weight: bold;
    }

    /* Responsive */
    @media(max-width: 992px) {
      .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width: 600px) {
      .requirements-grid {
        grid-template-columns: 1fr;
      }
    }







    /* faq start */

    .faq-section {
      padding: 80px 8%;
      text-align: center;
    }

    .faq-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .faq-section p {
      font-size: 1rem;
      color: #555;
      max-width: 750px;
      margin: 0 auto 50px auto;
      line-height: 1.6;
    }

    .faq-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      text-align: left;
    }

    .faq-item {
        margin-bottom: 10px;
      border: 1px solid #ddd;
      border-radius: 6px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 16px 20px;
      font-size: 1rem;
      font-weight: 600;
    }

    .faq-question span {
      width: 32px;
      height: 32px;
      background: #3577a8;
      color: #fff;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 20px;
      color: #555;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      padding: 16px 20px;
    }

    /* Responsive */
    @media(max-width: 768px) {
      .faq-container {
        grid-template-columns: 1fr;
      }
    }


/* whatsapp button */



    .whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
}

.whatsapp-float img {
  width: 35px;
  margin-top: 12px;
}









/* contact */

.contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      min-height: 100vh;
      margin-top: 80px; /* top spacing */
    }

    .contact-image-section {
      flex: 1;
      background: url("../img/gal-2.jpg") no-repeat center center/cover;
      min-height: 300px;
    }

    .contact-form-section {
      flex: 1;
      background: #fff;
      padding: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .contact-form-box {
      width: 100%;
      max-width: 450px;
    }

    .contact-form-box h2 {
      margin-bottom: 20px;
      font-size: 26px;
      color: #0056b3;
      text-align: center;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 16px;
      transition: border-color 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
      border-color: #0056b3;
      outline: none;
    }

    .contact-form button {
      padding: 12px;
      background: #0056b3;
      color: #fff;
      font-size: 18px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contact-form button:hover {
      background: #003f82;
    }

    @media (max-width: 900px) {
      .contact-wrapper {
        flex-direction: column;
      }
      .contact-image-section {
        height: 250px;
      }
    }




