/* Reset default margin and padding for the whole document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;

}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
    background: transparent;
    transition: background 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
    z-index: 3000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.navbar.scrolled li a {
    color: rgb(9, 75, 125);
}

.logo {
    width: 150px;
}

/* Navigation */
.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.nav-links li {
    margin: 10px;
}

.nav-links a {
    text-decoration: none;
    color: rgb(9, 75, 125);
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgb(9, 75, 125);
}

/* Responsive Navbar */
@media (max-width: 1024px) {
    .logo {
        width: 130px;
    }
    .nav-links a {
        font-size: 16px;
    }
    .nav-links li {
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 3%;
        flex-direction: column;
        align-items: center;
    }
    .logo {
        width: 150px;
        margin-bottom: 10px;
    }
    .nav-links {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px;
    }
    .logo {
        width: 100px;
    }
    .nav-links {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        width: auto;
    }
    .nav-links li {
        margin: 5px;
    }
    .nav-links a {
        font-size: 14px;
    }
}




/* Contact Section */
.contact-section {
    padding: 50px 20px;
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 2000;
}

/* Section Title */
.section-title {
    background-color: rgb(9, 75, 125);
    color: rgb(248, 205, 26);
    padding: 15px 0;
    font-size: 42px;
    text-align: center;
    width: 100vw;  
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px; 
}





/* General Paragraph Styling */
.contact-section p {
    font-size: clamp(1rem, 1.5vw, 1.8rem); /* Responsive font size */
    color: #555; /* Dark gray for readability */
    line-height: 1.6; /* Optimal line spacing */
    margin-bottom: 1rem; /* Consistent spacing */
    text-align: justify; /* Align text for better readability */
}

/* Responsive Design Adjustments */
@media (max-width: 1024px) {
    p {
        font-size: clamp(0.9rem, 1.4vw, 1.6rem);
    }
}

@media (max-width: 768px) {
    p {
        font-size: clamp(0.85rem, 1.3vw, 1.4rem);
    }
}

@media (max-width: 480px) {
    p {
        font-size: clamp(0.8rem, 3.5vw, 1.2rem);
        text-align: left; /* Left-align for better mobile readability */
    }
}
h3{
    font-size: 22px;
    color: rgb(9, 75, 125);
    margin-bottom: 15px;
}

.contact-section h2 {
    background-color: rgb(9, 75, 125);
    color: rgb(248, 205, 26);
    padding: 15px 0;
    font-size: 42px;
    text-align: center;
    width: 98vw;  
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px; 
}

/* Contact Container */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    gap: 20px;
}

/* Left Side (Contact Info & Map) */
.contact-info {
    flex: 1;
    text-align: left;
    padding: 20px;
    min-width: 350px;
}

.contact-info h3 {
    font-size: 22px;
    color: rgb(9, 75, 125);
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-info a {
    color: rgb(9, 75, 125);
    text-decoration: none;
    font-weight: bold;
}

/* Google Maps */
.map-container {
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

/* Right Side (Inquiry Form) */
  .contact-form {
    max-width: 600px; /* Increased from default */
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
  }

  .contact-form h3 {
    text-align: center;
    margin-bottom: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  }

  .contact-form textarea {
    height: 120px;
    resize: vertical;
  }

  .button-container {
    text-align: center;
  }

  .button-container button {
    background-color: #007bff;
    color: white;
    padding: 10px 25px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  .button-container button:hover {
    background-color: #0056b3;
  }

/* Responsive Design */

/* Tablet (Medium Screens) */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        min-width: unset;
        text-align: center;
    }

    .map-container iframe {
        height: 200px;
    }
}

/* Mobile (Small Screens) */
@media (max-width: 768px) {
    .contact-section {
        padding: 30px 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 14px;
    }

    .contact-form button {
        padding: 10px;
        font-size: 16px;
    }

    .map-container iframe {
        height: 180px;
    }
}





#verticle-line{
    width: 75%;
    height: 2px;
    margin: 20px auto;
    background-color: rgb(9, 75, 125);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    
}

.row {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers the entire content horizontally */
    align-items: center; /* Vertically centers the content */
    width: 100%; /* Ensures the row uses full width */
}

.footer-col {
    display: flex;
    align-items: center; /* Vertically aligns the text and icons */
    justify-content: center;
    gap: 20px; /* Adds space between "Follow Us" and the icons */
}

.footer-col h4 {
    font-size: 18px;
    color: black;
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
    text-align: center;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.social-links {
    display: flex;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: black;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: white;
    background-color: rgb(9, 75, 125);
}


.footer-col h5{
    line-height: 2;
    text-align: center;
}
.rights {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
