* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #D2D2D2;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    padding-top: 70px; /* Ensures content doesn’t go under the navbar */
}

.navbar {
    background-color: #000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw; /* Ensures it doesn’t overflow */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    z-index: 1000; /* Keeps navbar on top */
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    white-space: nowrap;
}

.logo span {
    color: #35AEFF;
    transition: text-shadow 0.3s ease-in-out;
}

.logo span:hover {
    text-shadow: 0 0 10px #35AEFF, 0 0 20px #35AEFF, 0 0 30px #35AEFF;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center; /* Prevents items from floating out */
}

.nav-links li {
    display: inline;
}

.nav-item {
    text-decoration: none;
    color: white;
    font-size: 1em;
    transition: all 0.3s ease-in-out;
}

.nav-item:hover {
    font-weight: bold;
    color: #35AEFF;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    color: white;
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        text-align: center;
        width: 100%;
        background: #000;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }
}

/*----------------------------------------------------------------------------------------------------------------*/
/* First Section Styling */
/* Hero Section with Professional Styling and Slider */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 50px;
    overflow: hidden;
}

.hero-slider {
    display: flex;
    width: 300%; /* Adjust based on number of slides */
    transition: transform 0.8s ease-in-out;
    overflow: hidden;
    position: relative;
}

.hero-slide {
    width: 100%;
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.hero-content {
    max-width: 500px;
    padding: 10px;
}

.hero-content h1 {
    font-size: 2.4em;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.hero-content h1 span {
    color: #35AEFF;
}



.hero-content p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}


.hero-content .socials {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.hero-content .socials a {
    font-size: 1.8em;
    color: #222;
    transition: transform 0.3s ease-in-out;
}

.hero-content .socials a:hover {
    transform: scale(1.2);
    color: #35AEFF;
}

.connect-button {
    background: #35AEFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.connect-button a{
    color: white;
    text-decoration: none;
}

.connect-button:hover {
    background: #1E90FF;
}

.hero-image img {
    width: 320px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-controls .dot {
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-controls .dot.active {
    background: #35AEFF;
}

@media screen and (max-width: 992px) {
    .hero-section {
        height: auto;
        text-align: center;
        padding: 30px 15px;
    }

    .hero-slider {
        width: 100%;
    }

    .hero-slide {
        flex-direction: column;
        align-items: center; /* ⭐ ensures everything centers horizontally */
        justify-content: center;
        padding: 20px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-content h1,
    .hero-content p {
        text-align: center;
    }

    .hero-content .socials {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 20px 0;
    }

    .connect-button {
        font-size: 1em;
        padding: 8px 18px;
        margin: 0 auto;
        display: block;
    }

    .hero-image img {
        width: 260px;
        margin-top: 15px;
    }
}



/*-------------------------------------------------------------------------------------------------------------------------------------------*/
/* Carousel Section */
.carousel-section {
    /* background-color: #35AEFF; */
    background-image: url(images/int4.jpg);   
    width: 100%;
    text-align: center;
    padding: 120px 20px;
    color: white;
}



/* Section Title */
.carousel-section h2 {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

/* Wrapper to contain all slides */
.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Individual Cards */
.carousel-item {
    background: linear-gradient(135deg, #13181d, #717172); /* Subtle gradient */
    color: white;
    padding: 40px;
    border-radius: 20px;
    font-size: 1.5em;
    text-align: center;
    min-width: 100%;
    height: 200px; /* Slightly larger */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Hover Effect */
.carousel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* Navigation Buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.8em;
    color: #35AEFF;
    font-weight: bold;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.prev-btn:hover, .next-btn:hover {
    background: white;
    transform: scale(1.1);
}

.prev-btn {
    left: -15px;
}

.next-btn {
    right: -15px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .carousel-section {
        padding: 30px 10px;
    }

    .carousel-item {
        height: 170px; /* Adjusted for mobile */
        font-size: 1.3em;
    }

    .prev-btn, .next-btn {
        font-size: 1.5em;
        padding: 10px 15px;
    }
}


/*-----------------------------------------------------------------------------------------------------------------------------------------*/

/* Testimonials Section */
.testimonials-section {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.testimonials-title {
    font-size: 2.5em;
    color: #35AEFF;
    margin-bottom: 40px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.testimonial-card {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    max-width: 300px;
    margin: auto;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.stars {
    font-size: 1.5em;
    color: black;
    margin-bottom: 10px;
}

.testimonial-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 0.9em;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-card a {
    color: #35AEFF;
    text-decoration: none;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }
}



/*---------------------------------------------------------------------------------------*/

.brands-section {
    text-align: center;
    background: #f8f9fa;
    padding: 60px 20px;
}

.brands-section h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 20px;
}

.brands-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.brands-container img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}

.brands-container img:hover {
    filter: grayscale(0%);
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    background: #35AEFF;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.cta-button:hover {
    background: #1E90FF;
}

@media screen and (max-width: 768px) {
    .brands-container {
        flex-direction: column;
        gap: 15px;
    }
    .brands-container img {
        max-width: 100px;
    }
}


/*-----------------------------------------------*/
/* Footer Section */
.footer {
    background-color: #35AEFF;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.footer .social-icons {
    display: flex;
    gap: 15px;
}

.footer .social-icons a {
    font-size: 1.5em;
    color: black;
    transition: color 0.3s ease-in-out;
}

.footer .social-icons a:hover {
    color: white;
}

.footer .footer-links {
    display: flex;
    gap: 15px;
}

.footer .footer-links a {
    text-decoration: none;
    color: black;
    font-size: 1em;
    transition: color 0.3s ease-in-out;
}

.footer .footer-links a:hover {
    color: white;
}

.footer .copyright {
    font-size: 0.9em;
    color: black;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .footer .social-icons {
        justify-content: center;
    }
    .footer .footer-links {
        flex-direction: column;
    }
}




/*ABOUT US STYLES-----------------------------------------------------------------------------------------------*/

/* Hero Section with Overlay for About Page */
.about-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    background: url('images/frontdimage3.jpg') ;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay */
}

.about-text {
    position: relative;
    z-index: 1;
    max-width: 80%;
    padding: 20px;
}

.about-text h1 {
    color: white;
    font-size: 2.8em;
    font-weight: bold;
    line-height: 1.3;
}

.about-text h1 span {
    color: #35AEFF;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .about-hero {
        height: 60vh;
    }

    .about-text h1 {
        font-size: 2.2em;
    }
}

@media screen and (max-width: 768px) {
    .about-hero {
        height: 50vh;
        padding: 20px;
    }

    .about-text h1 {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 480px) {
    .about-hero {
        height: 45vh;
    }

    .about-text h1 {
        font-size: 1.5em;
    }
}


/*SECOND HERO */

.about-me {
    background-color: white;
    text-align: center;
    padding: 50px 20px;
}

.about-me h2 {
    font-size: 2.5em;
    color: #35AEFF;
    margin-bottom: 20px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
}

.about-text {
    flex: 1;
    text-align: left;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

.about-text a {
    color: #35AEFF;
    text-decoration: none;
    font-weight: bold;
}

.about-text a:hover {
    text-decoration: underline;
}

.highlight-text {
    color: #35AEFF;
    font-weight: bold;
    margin-top: 15px;
}

.about-image img {
    width: 250px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-image img {
        width: 200px;
    }
}



/*JOURNEY HERO*/
.my-journey {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.my-journey h2 {
    font-size: 2.5em;
    color: #35AEFF;
    margin-bottom: 30px;
}

.journey-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.journey-box {
    background: white;
    color: black;
    border-radius: 15px;
    padding: 20px;
    width: 45%;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.journey-box h3 {
    font-size: 1.8em;
    color: #35AEFF;
    text-align: left;
    margin-bottom: 15px;
}

.journey-box h3 i {
    color: #000;
    font-size: 1.2em;
    margin-left: 5px;
}

.journey-item {
    background: #35AEFF;
    padding: 15px;
    border-radius: 10px;
    color: white;
    margin-bottom: 15px;
}

.journey-item h4 {
    font-size: 1.2em;
    font-weight: bold;
}

.journey-item p {
    font-size: 1em;
    margin: 5px 0;
}

.journey-item span {
    font-size: 0.9em;
    font-style: italic;
}


.see-more-btn {
    display: block;
    text-align: center;
    background: #35AEFF;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 10px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.see-more-btn:hover {
    background:black;
}



/* Responsive Design */
@media screen and (max-width: 992px) {
    .journey-container {
        flex-direction: column;
        align-items: center;
    }

    .journey-box {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .journey-box {
        width: 100%;
    }

    .journey-item {
        padding: 12px;
    }

    .my-journey h2 {
        font-size: 2em;
    }

    .journey-box h3 {
        font-size: 1.5em;
    }

    .journey-item h4 {
        font-size: 1.1em;
    }
}





/*MISSION HERO*/
.mission-statement {
    background: #f8f9fa; /* Light background for contrast */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mission-container {
    max-width: 900px;
    padding: 30px;
    background: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    animation: fadeIn 1.2s ease-in-out;
}

.mission-container h2 {
    font-size: 2.2em;
    color: #35AEFF;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.2em;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
}

.mission-text .quote {
    font-size: 2em;
    color: #35AEFF;
    font-weight: bold;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .mission-container {
        padding: 20px;
    }

    .mission-container h2 {
        font-size: 1.8em;
    }

    .mission-text {
        font-size: 1.1em;
    }
}








/*SERVICES PAGE------------------------------------------------------------------------------------------*/
.services-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    background: url('images/gtre.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 50px;
}

.services-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.5em;
    color: #35AEFF;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2em;
    font-style: italic;
    font-weight: 500;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .services-hero {
        height: 50vh;
        padding: 30px;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }
}





.services-offered {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.services-offered h2 {
    font-size: 2.5em;
    color: #35AEFF;
    margin-bottom: 30px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
}

.service-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.service-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(53, 174, 255, 0.4); /* Blue overlay */
    border-radius: 15px;
}

.service-box p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    text-align: center;
    z-index: 2;
}

/* Hover Effect */
.service-box:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-box {
        height: 220px;
    }

    .service-box p {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .service-box {
        height: 200px;
    }

    .service-box p {
        font-size: 1em;
    }
}






.why-choose {
    background-color: white;
    text-align: center;
    padding: 60px 20px;
}

.why-choose h2 {
    font-size: 2.5em;
    color: #35AEFF;
    margin-bottom: 30px;
}

.choose-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.choose-box {
    background: #35AEFF;
    color: white;
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: fadeInUp 1s ease-in-out;
}

.choose-box h3 {
    font-size: 1.3em;
    font-weight: bold;
}

.choose-box p {
    font-size: 1.1em;
    margin-top: 10px;
    line-height: 1.6;
}

.choose-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    margin-top: 40px;
}

.contact-section p {
    font-size: 1.3em;
    font-weight: bold;
    font-style: italic;
    color: black;
}

.social-icons {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    font-size: 1.8em;
    color: black;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #35AEFF;
}

/* Contact Button */
.contact-btn {
    background: black;
    color: white;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 25px;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.contact-btn:hover {
    background: #35AEFF;
    transform: scale(1.05);
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .choose-container {
        flex-direction: column;
        align-items: center;
    }

    .choose-box {
        max-width: 90%;
    }

    .contact-section p {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 768px) {
    .contact-btn {
        font-size: 1em;
        padding: 10px 20px;
    }

    .social-icons a {
        font-size: 1.5em;
    }
}






/*CONTACT ----------------------------------------------------------------------------------------------------*/
.contact-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('images/contact-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 50px;
}

.contact-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.5em;
    color: #35AEFF;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-content p {
    color: rgb(182, 179, 179);
    font-size: 1.2em;
    font-style: italic;
    font-weight: 500;
}

.contact-form-section {
    background: linear-gradient(to right, #ffffff, #f2faff);
    padding: 80px 20px;
    text-align: center;
  }
  
  .contact-form-section h2 {
    font-size: 2.5em;
    color: #1e2a38;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .contact-form-section .form-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-form {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }
  
  .contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    font-size: 1em;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1em;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #35AEFF;
    outline: none;
    background-color: #fff;
  }
  
  .contact-form button {
    padding: 14px;
    background-color: #35AEFF;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #1e90ff;
  }
  
  /* Mobile Responsive */
  @media screen and (max-width: 768px) {
    .contact-form-section h2 {
      font-size: 2em;
    }
  
    .contact-form {
      padding: 30px 20px;
    }
  }
  


/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        padding: 30px;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }
}







.contact-info {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
}

.contact-info h2 {
    font-size: 2em;
    color: #35AEFF;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #333;
}

.contact-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2em;
    color: #222;
    text-decoration: none;
    background: white;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.contact-item i {
    font-size: 1.5em;
    color: #35AEFF;
}

.contact-item:hover {
    background: #35AEFF;
    color: white;
    transform: scale(1.1);
}

.contact-item:hover i {
    color: white;
}

/* Live Map Styling */
.map-container {
    width: 100%;
    max-width: 800px;
    margin: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .contact-icons {
        flex-direction: column;
    }

    .contact-item {
        justify-content: center;
    }

    .map-container iframe {
        height: 250px;
    }
}


