/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Reset approach - place this at the end of your CSS file */
html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: clip; /* Modern alternative to hidden */
  max-width: 100vw;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

/* AOS specific fixes without breaking animations */
[data-aos], [data-aos-delay], [data-aos-easing], [data-aos-duration] {
  max-width: 100%;
  /* Removed the transform: none !important that was breaking animations */
}

/* Make sure AOS containers don't add horizontal overflow */
.aos-init, .aos-animate {
  max-width: 100%;
}

/* Target AOS wrapper if it exists */
[data-aos-container], .aos-initialized {
  max-width: 100%;
}

/* Optional but recommended - prevent AOS animations from causing overflow */
.aos-animate {
  /* Contains the animations without breaking them */
  overflow-x: hidden;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* optional: for horizontal nav */
  }
  
  .nav-item {
    list-style: none; /* just in case */
  }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    position: relative;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

.vision .section-title {
    color: #ff5722;
    border-bottom: 2px solid #ff5722;
    display: inline-block;
    padding-bottom: 5px;
}

.mission .section-title {
    color: #4CAF50;
    border-bottom: 2px solid #4CAF50;
    display: inline-block;
    padding-bottom: 5px;
}

.achievements .section-title,
.contact .section-title,
.query .section-title {
     background: linear-gradient(to bottom, #60EFFF, #407BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
    display: inline-block;
    padding-bottom: 5px;
}

/* Header Styles */

/* Hero Section Styles */
.hero {
    background-image: url('https://ik.imagekit.io/b3s3mttie3/About/about-us-header.webp?updatedAt=1750317313619');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    background-attachment: scroll;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 40, 0.7);
    opacity: 0.5;
}
@media screen and (max-width: 768px) {
    .hero {
        min-height: 50vh

    }
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
     background: linear-gradient(to bottom, #60EFFF, #407BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;

}

.hero h1 {
    background: linear-gradient(to bottom, #60EFFF, #407BFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 50px;
}

.quote {
    position: relative;
    border: 2px dashed #407BFF;
    padding: 2rem;
    border-radius: 10px;
    background-color: transparent;
    font-style: italic;
    color: #ffffff;
    max-width: 600px;
}

.quote-icon {
    position: absolute;
    font-size: 2rem;
    color: #d1f502;
    opacity: 0.8;
}

.quote-icon-top {
    top: 10px;
    left: 15px;
}

.quote-icon-bottom {
    bottom: 10px;
    right: 15px;
}

blockquote {
    margin: 0;
    padding: 0;
}


.quote blockquote {
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
}

/* Vision Section Styles */
.vision,.mission {
    padding: 80px 0;
    background-color: #ffff;
    position: relative;
    overflow: hidden;
}

.vision-points::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://ik.imagekit.io/b3s3mttie3/About/vision-text-bg.png?updatedAt=1750317317504');
    background-size: contain;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
    background-repeat: no-repeat;
}

.vision .container {
    position: relative;
    z-index: 2;
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.vision-image {
    flex: 1;
}

.vision-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.vision-points {
    flex: 1;
    position: relative;
    z-index: 2; 
}

.vision-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    max-width: 90%;
    
}

.point-indicator {
    min-width: 5px;
    min-height: 30px;
    background-color: #ff5722;
    margin-right: 15px;
}

.vision-point p {
    font-size: 16px;
    line-height: 1.5;
    color: #FF725E;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mission Section Styles */
.mission {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mission-points::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://ik.imagekit.io/b3s3mttie3/About/our-mission.png?updatedAt=1750317313856');
    background-size: contain;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
    background-repeat: no-repeat;
}

.mission .container {
    position: relative;
    z-index: 2;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-points {
    flex: 1;
    position: relative;
    z-index: 2;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    max-width: 90%;
}

.mission-point .point-indicator {
    background-color: #4CAF50;
    min-width: 5px;
    min-height: 30px;
    margin-right: 15px;
}

.mission-point p {
    font-size: 16px;
    line-height: 1.5;
    color: #18BC46;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Achievements Section Styles */




.achievements .container {
    position: relative;
    z-index: 2;
}

.achievements-timeline {
    overflow-x: auto;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}




.image-container1 {
  position: relative;
  display: inline-block; /* so container fits image size */
  max-width: 100%;
  width: 100%;
}

.full-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background-color: #f0f0f0; /* or any color */
  pointer-events: none;
}



.overlay-text {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: auto;
  pointer-events: none;
  z-index: 2;
}

.overlay-text-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}



/* Contact and Query Section Styles */
.contact-query {
    background-color: #000000;
    padding: 80px 0;
    position: relative;
    color: white;
    z-index: 1;
    overflow: hidden; /* Prevent pseudo from overflowing */
}


.glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #3C8CE7, #000000);
    filter: blur(40px);
    opacity: 0.4;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: pulse 20s infinite;
}

/* Individual glow positions */
.glow1 {
    top: 0;
    left: 0;
}


.glow2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    left: auto; /* Ensure left doesn't override right */
  }
  

.contact-query > * {
    position: relative;
    z-index: 2; /* Ensure content appears above background */
}



.contact-query .container {
    position: relative;
    z-index: 2;
}

.contact-section, .query-section {
    padding: 20px 0;
}

.contact-section .section-title,
.query-section .section-title {
     background: linear-gradient(to bottom, #60EFFF, #407BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
    display: inline-block;
    padding-bottom: 5px;
    margin-top: 20px;
}

.contact-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    margin-right: 15px;
    font-size: 20px;
    color: #03A9F4;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 10px;
}

.query-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.query-form {
    width: 100%;
    max-width: 800px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.query-form input,
.query-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: white;
    outline: none;
}

.query-form textarea {
    height: 120px;
    resize: vertical;
    margin-bottom: 20px;
}

.query-form input::placeholder,
.query-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.send-btn {
    background-color: #03A9F4;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: block;
    width: 100%;
    transition: background-color 0.3s;
}

.send-btn:hover {
    background-color: #0288D1;
}

/* Footer Styles */

/* Media Queries */
@media screen and (max-width: 992px) {
    .vision-content,
    .mission-content,
    .contact-content {
        flex-direction: column;
    }
    
    .vision-image,
    .mission-image {
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 60px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
  
    
   
    .hero h1 {
        font-size: 48px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
     .section-title,
    .query-section .section-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }
    
   
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .quote blockquote {
        font-size: 16px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}



@media (max-width: 768px) {
  .overlay-text {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .overlay-text {
    width: 120px;
  }
}


#form-alert {
  margin-top: 15px;
  padding: 12px 15px;
  border-radius: 5px;
  font-weight: 500;
  display: none; /* Hidden by default */
}

#form-alert.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

#form-alert.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-section .section-title {
    text-align: center;
    background: linear-gradient(to bottom, #60EFFF, #407BFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 60px;
}

.ceo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.engineers-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #FFFFFF;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ceo .member-image {
    width: 250px;
    height: 250px;
    border-color: #2196f3;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-member h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
}

.ceo h3 {
    font-size: 1.5rem;
    color: #2196f3;
}

.engineer {
    flex: 0 1 calc(25% - 30px);
    min-width: 250px;
}

/* Responsive Styles for Team Section */
@media screen and (max-width: 1200px) {
    .engineers-container {
        padding: 0 20px;
    }
    
    .engineer {
        flex: 0 1 calc(50% - 30px);
    }
}

@media screen and (max-width: 768px) {
    .member-image {
        width: 180px;
        height: 180px;
    }
    
    .ceo .member-image {
        width: 220px;
        height: 220px;
    }
}

@media screen and (max-width: 576px) {
    .engineers-container {
        flex-direction: column;
        align-items: center;
    }
    
    .engineer {
        width: 100%;
        max-width: 300px;
    }
    
    .member-image {
        width: 150px;
        height: 150px;
    }
    
    .ceo .member-image {
        width: 200px;
        height: 200px;
    }
}

.phone-link,.email-link {
    color: white;
}
.phone-link:hover,.email-link:hover {
    color: #2196f3;
}

/* FAQ Section Styles - Dark Theme */
.faq-section {
    background:#000000;
    padding: 40px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    position: relative;
    overflow: hidden;
}

.faq-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #3C8CE7, #000000);
    filter: blur(20px);
    opacity: 0.4;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: pulse 20s infinite;
}

.faq-glow1 {
    top: -100px;
    left: -100px;
}

.faq-glow2 {
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    left: auto;
}

.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-section .section-title {
    background: linear-gradient(to bottom, #60EFFF, #407BFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.view-all-link {
    display: inline-block;
    text-align: right;
    color: #60EFFF;
    text-decoration: underline;
    font-weight: 600;
    margin: 20px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    padding-right: 20px;
    float: right;
}

.view-all-link:hover {
    color: #407BFF;
}

.faq-item {
    position: relative;
    margin-bottom: 18px;
    border-radius: 6px;
    background: rgba(35, 43, 58, 0.7); /* Keep the background tint */
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
    overflow: hidden;
    border: 1px solid #283046;
    display: none;
    z-index: 1;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://ik.imagekit.io/b3s3mttie3/About/faq-div-image.jpg?updatedAt=1750317524801');
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* Adjust image opacity here */
    z-index: 0;
    pointer-events: none;
}

.faq-item > * {
    position: relative;
    z-index: 1;
}


.faq-item:nth-child(-n+4) {
    display: block;
}

.faq-item.show {
    display: block;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 18px 24px;
    padding-right: 50px;
    cursor: pointer;
    color: #ffffff;
    transition: background 0.2s;
    position: relative;
    white-space: normal;
    word-wrap: break-word;
}
.faq-question:after {
    content: '\25BC';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s;
    font-size: 1rem;
    color: #60EFFF;
    pointer-events: none;
}
.faq-item.active .faq-question:after {
    transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: transparent;
    color: #e0e6ed;
    padding: 0 24px;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    border-top: 1px solid #283046;
    line-height: 1.8;
    letter-spacing: 0.3px;
}
.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 20px 24px 24px 24px;
}
.faq-answer p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}
.faq-answer li {
    margin-bottom: 10px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .hero{
        height: 60vh;
    }
    .faq-section {
        padding: 25px 5px;
    }
    .faq-accordion {
        max-width: 100%;
    }
    .faq-question {
        font-size: 1rem;
        padding: 14px 20px;
        padding-right: 40px;
    }
    .faq-question:after {
        right: 15px;
        font-size: 0.9rem;
    }
    .faq-item.active .faq-answer {
        padding: 16px 20px 20px 20px;
    }
    .faq-answer p {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    .faq-answer ul {
        margin: 12px 0;
    }
    .faq-answer li {
        margin-bottom: 8px;
    }
}
@media (max-width: 480px) {
    .faq-answer {
        padding: 0 15px;
        line-height: 1.6;
    }
    .faq-item.active .faq-answer {
        padding: 14px 15px 18px 15px;
    }
    .faq-answer p {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    .faq-answer ul {
        margin: 10px 0;
    }
    .faq-answer li {
        margin-bottom: 6px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}




.contact-section {
    background-image: url('https://ik.imagekit.io/b3s3mttie3/About/conatct-bg.webp?updatedAt=1750317593193');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info {
    color: white;
    text-align: center;
}

.contact-info h3 {
    color: #60a5fa;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-info h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.contact-info p {
    font-size: 18px;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: rgba(30, 41, 59, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 48px;
}

.demo-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px 0;
}

.demo-toggle-text {
    color: white;
}

.demo-toggle-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.demo-toggle-text p {
    font-size: 14px;
    opacity: 0.7;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: #2563eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.terms-text {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.terms-text a {
    color: #60a5fa;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-section {
        min-height: auto;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
    }

    .contact-info h1 {
        font-size: 36px;
    }

    .contact-info p {
        font-size: 16px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 480px) {
   

    .contact-info h1 {
        font-size: 28px;
    }

    .contact-form {
        padding: 20px 15px;
    }
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.form-group.full-width textarea {
    min-height: 150px;
    width: 100%;
}

@media (max-width: 768px) {
    .form-group.full-width {
        margin-bottom: 15px;
    }
    
    .form-group.full-width textarea {
        min-height: 120px;
    }
}