html, body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #1d1d1d;
}

a {
  text-decoration: none;
  color: inherit;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;                
  z-index: 1000;             
  background: linear-gradient(to right, #004aad, #00c3ff);
  padding: 10px 15px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  transition: background 0.5s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

 
.nav-links {
  display: flex;
  flex-direction: row;
  gap: 24px;
  white-space: nowrap; /* 👈 Prevent breaking into multiple lines */
  overflow-x: auto;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 5px;
  transition: color 0.3s ease;
  flex-shrink: 0;
  color: white;
  font-weight: lighter;
}
.nav-links a.current {
  font-weight: 900;
}

.nav-links a:hover{
 color: #010216;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #000; 
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

main {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  padding: 40px 40px;
  display: flex;
  align-items: flex-end;  
  justify-content: flex-start;
  box-sizing: border-box;
  height: 100vh;               
  width: 100%;   
  margin-top: -80px; 
  color: white;

  background-image: url('hero-bg.png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-text .welcome {
  text-transform: uppercase;
  font-size: 19px;
  margin-bottom: 5px;
}

.hero-text h1 {
  font-size: 41px;
  font-weight: 700;
  margin: 0;
}

.hero-text .sub {
  font-size: 21px;
  margin: 10px 0 30px;
}

.btn-purple {
  background-image: url('consult-button.png');
  background-size: cover;         
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  padding: 12px 25px;
  margin: 20px 0 50px 15px;

  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
}

.btn-purple h3{
  padding: 5px 15px 0 70px;
}

.btn-purple:hover {
  transform: scale(1.05); /* Slight zoom in */
  transition: 0.1s linear;
}

.btn-purple1 {
  background-color: #3d5a80;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
}

/* Benefits Section */
.benefits {
  background-image: url('benefits-bg.png'); 
  background-size: cover;         /* or contain */
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  padding: 20px;
  height: 100vh;
  text-align: left;
}

.benefits h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.benefits p {
  font-size: 20px;
  margin-bottom: 20px;
}


.benefit-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.img-box {
  width: 350px;
  height: 470px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.img-box1 {
  width: 350px;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.benefit-img {
  width: 350px;          
  height: 400px;
  border: none;
  object-fit: contain;
  box-shadow: none;
  transition: transform 0.4s ease-in-out;
}

.benefit-img1 {
  width: 300px;          
  height: 400px;
  border: none;
  object-fit: contain;
  box-shadow: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.benefit-img.visible,
.benefit-img1.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.benefit-img:hover,
.benefit-img1:hover {
  transform: scale(1.05);
}


.animate-on-scroll {
  opacity: 0;
  transform: translateY(100px) scale(1);
  transition: 
    transform 0.5s ease, 
    opacity 0.5s ease;
}


.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);    
} 


.delay-0.visible {
  transition-delay: 0s;
}

.delay-1.visible {
  transition-delay: 0.5s;
}

.delay-2.visible {
  transition-delay: 1s;
}



/* About Telekonsulta Section */
.about-telekonsulta {
  padding: 90px 40px;
  background-image: url('bgabout2.png');
  background-size: cover;        
  background-repeat: no-repeat;
  background-position: center;
  height: 70vh;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text {
  flex: 1 1 600px;
}

.animate-right {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.6s ease, transform 1.5s ease;
}

.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 24px;
  color: #444;
  line-height: 1.6;
  padding: 60px 20px 0 20px;
  text-align: center;
  word-spacing: 10px;
  background-color: #11bbff9d;
  border-radius: 50px;
  color: black ;
  height: 330px;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Experts Section */
.experts-section {
  background-color: #98c1d9;
  text-align: center;
  padding: 60px 20px;
}

.experts-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.experts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.expert-card {
  width: 220px;
  background-color: #e0fbfc;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.expert-card img {
  width: 100%;
  height: 120px;
  object-fit: fit;
  background-color: #e0fbfc;
  margin-bottom: 15px;
}

.expert-card h3 {
  margin: 10px 0 5px;
  font-size: 16px;
  color: #000;
}

.expert-card p {
  font-size: 14px;
  color: #000;
}

/* Improved Testimonial Spacing */
.testimonial {
  font-style: italic;
  color: #293241;
  text-align: center;
  padding: 60px 20px;
}

.stars {
  margin-top: 10px;
  font-size: 18px;
  color: #8b1dd4;
}

/* Footer Section */
.footer {
  background: linear-gradient(to right, #004aad, #00c3ff);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--accent);
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  margin: 0 15px;
  color: white;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer p {
  font-size: 12px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .top-nav {
    justify-content: center;
  }

  .hero {
    text-align: center;
  }

  .benefit-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Media query to shrink font on very narrow phones */
@media (max-width: 480px) {
  .nav-links a {
    font-size: 13px;
    gap: 20px;
  }
  
  .hero-text h1 {
    font-size: 28px;     /* Down from 36px */
    word-wrap: break-word;
    line-height: 1.2;
  }

  .hero-text .sub {
    font-size: 14px;
  }

  .hero {
    padding: 40px 20px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
    CONTACT US*/



.container {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin-top: 15px;
  height: 100%;
  background: url('bgcontact1.png') no-repeat center center;
  background-size: cover; 
  height: 100vh;

}

.left, .right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  margin-left: 150px;
  margin-right: 50px;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  color: white;
}

.form-card h1 {
  margin-top: 0;
  font-size: 28px;
  font-weight: 700;
}

.form-card p {
  margin-bottom: 25px;
  font-size: 14px;
  color: #e0e0e0;
}

.form-card label {
  font-weight: 600;
  display: block;
  margin-top: 15px;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  margin-top: 6px;
  background: transparent; /* ✅ transparent background */
  border: none;
  border-bottom: 1.5px solid #ccc; /* underline only */
  color: white;
  font-size: 14px;
  outline: none;
  border-radius: 0;
  box-shadow: none; /* ✅ removes unwanted browser outline */
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
  background: transparent !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: white !important;
  transition: background-color 9999s ease-in-out 0s;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #ccc;
}

.form-card textarea {
  resize: none;
}

.form-card select option {
  background-color: white;  /* bluish to match theme */
  color: black;
}

.form-card button {
  margin-top: 30px;
  width: 100%;
  padding: 12px;
  background: white;
  color: #007bff;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #f0f0f0;
}
::placeholder {
  color: #999;
  font-style: italic;
}

.map-section {
  text-align: center;
  padding: 60px 20px;
  background-color: white;
}

.map-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.map-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #555;
}

.map-image {
  width: 90%;
  max-width: 600px;
  background-color: #e0e0e0;
  border-radius: 8px;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.map-bg {
  max-width: 65%;
  background-color: #98c1d9;
  display: flex;
  justify-content: center; 
  padding: 20px 20px;      
  border-radius: 20px;     
  margin: 0 auto;
}

.map-section {
  text-align: center;
  background-color: white;
}

.map-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.map-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

/* Map container for responsiveness */
.map-section iframe {
  width: 100%;
  max-width: 900px;
  height: 450px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/**-------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
    CONSULT NOW*/
.main-content{
  margin-top: -25px;
}

.main h1{
  font-size: 35px;
}

.main p{
  font-size: 20px;
}

.consult-now {
  padding: 60px 20px;
  margin: 30px 0;
  background: url('herobg1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-title {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;  
}

.page-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;  
}

.expert-bracket {
  padding: 20px;
  background: linear-gradient(to right, #004aad, #00c3ff);
  max-width: 70%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  margin: 40px auto;
}

.expert-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 900px;
}

.expert-text {
  min-width: 200px;
}

.expert-text h2 {
  font-size: 28px;
  margin: 5px 0 0 0;
  color: white;
  text-align: center;
}

.expert-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  text-align: justify;
  padding:0 ;
  color: white;
  text-align: center;
}

.expert-image {
  flex: 0 0 auto;
  max-width: 225px;
}

.expert-image img {
  max-width: 100%;
  height: 225px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.expert-extension {
  display: none;
  justify-content: center;
  width: 80%;
  background-color: transparent;
  padding: 15px;
  border-radius: 0 0 10px 10px;
  margin-top: 15px;
  font-size: 15px;
  color: #333;
  margin-left: auto;
  margin-right: auto;
}

.expert-extension.show {
  display: block;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 250px;
  overflow: hidden;
  margin: 0 auto;
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  overflow: hidden;

}

.slide {
  display: flex;
  flex: 0 0 100%; 
  justify-content: center;
  gap: 20px;
}

.items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%; 
  gap: 50px;
}

.item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;  
  width: 250px;
  height: 225px;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.item-info {
  display: flex;
  gap: 15px;
  width: 100%;
  align-items: center;
 
}

.item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.item-text {
  flex: 1;
  text-align: left;  /* aligns text nicely next to image */
}

.item-text h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.item-text p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.item-btn {
  margin-top: 10px;
  padding: 8px 20px;
  background-color: transparent;
  color: #1fd219;
  border: 2px solid #1fd219;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.item-btn:hover {
  background-color: #1fd219;
  color: white;
  transform: scale(1.05);
  transition: 0.1s linear;
}

.toggle-item-btn {
  padding: 8px 16px;
  border: 2px solid white ;
  background-color: transparent;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin: 25px auto 0;
  display: block;              
  text-align: center;
}

.org-section-btn {
  padding: 8px 16px;
  border: 2px solid #004aad ;
  background-color: transparent;
  color: #004aad;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  width: 130px;
  margin: 15px auto;
  display: block;              
  text-align: center;
}

.toggle-item-btn:hover {
  background-color: rgba(131, 127, 127, 0.5);
}

.org-section-btn:hover {
  background-color: #004aad;
  color: white;

}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  z-index: 1;
}

.carousel-btn.left {
  left: 0px;
}

.carousel-btn.right {
  right: 0px;
}

/* Blur effect for background */
body.popup-active .main-content {
  filter: blur(4px);
  pointer-events: none;
}

/* Overlay background */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup form box */
.popup-form {
  background:  #00c3ff;
  padding: 20px 25px 20px 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
}

.popup-form h1 {
  margin-top: 0;
  text-align: center;
  color: white  ;
}

.popup-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 600;
  color: white;
}

.popup-form input[type="text"]{
  width: 100%;
  height: 30px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid black;
}

input{
  padding-left: 3px;
  transition: padding 0.3s ease;
  box-sizing: border-box;
}

input:not(:placeholder-shown) {
  padding-left: 10px; /* when user types */
}


input:-webkit-autofill {
  -webkit-text-fill-color: black;
  transition: background-color 5000s ease-in-out 0s;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
}

#age-wrapper {
  flex: 0 0 auto;
}

#age-wrapper input {
  width: 80px;
}

.form-group label {
  display: block;
  margin: 10px 0 5px;
}

.form-group input {
  width: 100%;
  height: 30px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid black;
}

.popup-form textarea {
  width: 100%;
  height: 70px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid black;

}

.popup-buttons {
  margin-top: 20px;
  height: 35px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.popup-buttons button{
  font-size: 15px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.363);
}

.cancel-btn {
  background-color: white;
  color: red;
  font-weight: 600;
  border: none;
}

.cancel-btn:hover{
  background-color: red;
  color: white;
  border: none;
}

.call-btn {
  background-color:  white;
  color: #1fd219;
  font-weight: 600;
  border: none;
}

.call-btn:hover{
  background-color:  #1fd219;
  color: white;
}

.helps{
  background-image: url(help.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 60vh;
}

/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
    ABOUT US*/
.main-container {
  background-image: url('bgorg.png');
  background-size: cover;        
  background-repeat: no-repeat;
  background-position: center;
}
.structure-container {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  background: none;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
}

.structure-container-land {
  max-width: 1100px;
  margin: 10px auto;
  padding: 20px;
  background: none;
  border-radius: 12px;
}

        .structure-container h2 {
            text-align: center;
            color: #2e3a59;
            font-size: 32px;
            margin-top: 70px;
        }

        .structure-container-land h2 {
            text-align: center;
            color: #2e3a59;
            font-size: 32px;
            margin-top: 15px;

        }

        .org-section {
            margin-bottom: 40px;
        }

        .org-section h3 {
            color: #324163;
            font-size: 24px;
            margin: 70px 0 20px 0;
            border-left: 5px solid #6a5acd;
            padding-left: 10px;
        }

        .org-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            place-items: center;
        }

        .org-card {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .org-card2 {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            max-width: 170px;
            max-height: 170px;
          
        }

        .highlight {
            background-color: #e6e0ff;
            border: 2px solid #6a5acd;
        }

        .org-card img, .org-card2 img {
            width: 170px;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            background-color: #ddd;
        }

        .org-card h4, .org-card2 h4 {
            margin: 10px 0 5px;
            font-size: 16px;
            color: #2e3a59;
        }

        .org-card p, .org-card2 p  {
            margin: 0;
            font-size: 14px;
            color: #666;
        }

         
.missiondesc {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 20px;
      text-align: center;
      line-height: 1.6;
      color: #333;
      font-size: 18px;
      word-spacing: 10px;
    }

    .missiontitle {
      max-width: 800px;
      margin: 40px auto;
      padding: 0 20px;
      text-align: center;
      line-height: 1.6;
      color: #333;
      font-family: 'Montserrat', sans-serif;
    }

         .member-card {
    background-color: none;
    overflow: hidden;
    margin: 2% auto;
    max-width: 90vw; /* limits width relative to viewport */
    width: 100%;
    border-radius: 10px; /* optional rounding */
}

.member-image {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto; /* centers the image horizontally */
    object-fit: cover; /* ensures proper scaling */
    transition: transform 0.3s ease;
}

/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
    RESPONSIVENESS*/

@media (max-width: 768px) {
  .contact-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
  }

  .form-bg {
    width: 78%;
    max-width: 100%;
    background-color: #98c1d9;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .contact-form {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .form-row {
    display: flex;
    flex-direction: row;       /* ✅ KEEP side-by-side */
    gap: 50px;
    flex-wrap: wrap;           /* ✅ allows wrapping if needed */
  }

  .form-column {
    flex: 1 1 45%;             /* ✅ each column takes up ~45% */
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
  }

  .form-check {
    flex-direction: row;
    gap: 10px;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
 .nav-links {
  gap: 15px;
 }
 
 .nav-links a {
  font-size: 12px;
  color: white;
  font-weight: 500;
  padding: 8px 5px;
  }

  .contact-hero h2 {
    font-size: 22px;
  }

  .contact-form label {
    font-size: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    width: 100%;              /* ✅ Respect container width */
  }
  .form-row {
	gap: 10px;
  }

  .btn-purple {
    width: 40%;              /* ✅ Full width button on tiny screens */
    padding: 6px 18px;
	  font-size: 12px;
  }
  ::placeholder {
	font-size: 10px;
  }
}

@media (max-width: 375px) {
 .nav-links {
  gap: 5px;
 }
 
 .nav-links a {
  font-size: 10px;
  color: white;
  font-weight: 500;
  padding: 8px 5px;
  }
	
  .form-row {
    flex-direction: column; /* 🔄 Stack inputs vertically */
    gap: 10px;
  }

  .form-column {
    width: 100%; /* 🔒 Full width columns */
    flex: none;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%; /* 🧱 Fill container cleanly */
    font-size: 14px;
  }

  .btn-purple {
    width: 50%; /* 📱 full width button for better UX */
    padding: 6px 18px;
	font-size: 10px; 
  }
}



