* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Funnel Sans", sans-serif !important;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

p {
    font-size: 18px;
}

#navbar.scrolled {
    background-color: #003049 !important;

}

.nav-link {
    color: #fff;
}

.nav-item i {
    font-size: 13px;
}

#offcanvasNavbar .nav-link {
    font-size: 1.1rem;
    color: #fff;
    transition: color 0.3s;
}

#offcanvasNavbar .nav-link:hover {
    color: #de6819;
}

@media (max-width:1000px) {
    .nav-item .nav-link {
        padding-left: 20px;
    }
}


.navbar-toggler .fa-bars {
    color: #ffffff;
    transition: transform 0.3s;
}

.navbar-toggler:hover .fa-bars {
    transform: rotate(180deg);
}


header {
    position: relative;
    color: #fff;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(13, 41, 51, 0.5); */
}

.banner-content {
    /* background-color: rgba(0, 48, 73, 0.7); */
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
}

header h1 {
    font-size: 3rem;
}

header p {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.main_btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 1.5rem;
    background: linear-gradient(65deg, #de6819, #fccd44);
    color: #111;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.1s;
}

.main_btn:hover {
    transform: scale(1.03);
    background: linear-gradient(65deg, #fccd44, #de6819);
    color: #fff;
}

/* About Section */
.about-section {

    color: #fff;
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
    background-attachment: fixed;
}

.about-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 15, 22, 0.466);
    /* Dark overlay */
    z-index: 1;
}

.about-section h2,
.about-section p {
    position: relative;
    z-index: 2;
}

.about-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-section p {

    max-width: 700px;
    margin: 0 auto;
}



/* Services Section */
#services {
    padding: 2rem 2rem;
}

h2 {
    margin-bottom: 2rem;
    font-size: clamp(30px, 4vw, 42px);
    /* Responsive font size */
    font-weight: bold;
    /* Add visual hierarchy */
    line-height: 1.2;
    /* Improve readability */

    text-transform: capitalize;
    /* Adjust case for readability */
    text-align: center;
    /* Center-align by default */
}

@media (max-width: 768px) {
    h2 {
        text-align: center;
        /* Align left for smaller screens if needed */
        margin-bottom: 2rem;
        /* Reduce spacing for smaller screens */
    }
}



/* Services Grid Layout */
.services-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center; /* Centers the items horizontally */
    max-width: 100%; /* Prevents excessive width */
    margin: 0 auto; /* Centers the grid container within its parent */
}

.service-card {
    position: relative;
    width: calc(100% - 2rem); /* Responsive width with some gap */
    max-width: 300px; /* Maximum width of the card */
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    cursor: pointer;
    text-align: left;
    margin: 0 auto; /* Ensures each card is centered */
}

/* Optional Media Query for smaller screens */
@media (max-width: 768px) {
    .service-card {
        width: 100%; /* Use full width on small screens */
    }
}

.service-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: center;
}





.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: right;
}

/* Icon Styling */
.icon {
    display: flex;

    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card i {

    font-size: 48px;
    transition: color 0.3s ease;
}

/* Service Title */
.service-card h3 {
    font-size: 1.5rem;

    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

/* List Styling with Hover Animation */
.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
}

.service-card li::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;

    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effects */
.service-card:hover {
    transform: scale(1.02);
    box-shadow: 4.0px 8.0px 8.0px rgba(0, 0, 0, 0.38);
}

.service-card:hover i {
    color: #fff;
}

.service-card:hover h3 {
    color: #fff;
}

.service-card:hover li {
    color: #fff;
}

.service-card:hover li::before {
    color: #fff;
    transform: translateX(5px);
    /* Adds a slight animation to the arrow icon */
}

/* Background Image Animation */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.6s ease-in-out;
    z-index: 0;
    border-radius: 12px;
}

.service-card:hover::before {
    left: 0;
    opacity: 0.85;
}

/* Ensure text is visible above background image */
.service-card h3,
.service-card li,
.service-card i {
    position: relative;
    z-index: 1;
}



/* Value Quadrant Section Styling */
#value-quadrant {
    padding: 4rem 2rem;
    text-align: center;
    background: #003049;

}

#value-quadrant h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
}

/* Quadrant Column Layout */
.quadrant-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: left;
}

.quadrant-column {
    padding: 1.5rem;
    border-left: 2px solid #e0e0e0;
    position: relative;
}

.quadrant-column:first-child {
    border-left: none;
    /* Remove border from the first column */
}

/* Icon Styling */
.quadrant-column i {
    font-size: 2.5rem;
    color: #de6819;
    margin-bottom: 1rem;
    display: block;
}

/* Quadrant Titles */
.quadrant-column h3 {
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* Subtitle for Each Quadrant */
.quadrant-column p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #de6819;
    margin-bottom: 1rem;
}

/* List Styling */
.quadrant-column ul {
    list-style: none;
    padding-left: 0;
}

.quadrant-column li {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
}

.quadrant-column li::before {
    content: "\f0da";
    /* Font Awesome icon for bullet */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 0.8rem;
}

/* Distinctive Colors for Each Quadrant */
.performance {
    color: #de6819;
}

.discovery {
    color: #fccd44;
}

.concerns {
    color: #669bbc;
}

.reflection {
    color: #15616d;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .quadrant-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quadrant-columns {
        grid-template-columns: 1fr;
    }

    .quadrant-column {
        border-left: none;
        border-top: 2px solid #e0e0e0;
    }

    .quadrant-column:first-child {
        border-top: none;
    }
}


.hotel-development {
    padding: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}


.phases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.phase {
    background-color: #fff;
    /* border: 2px solid #003049; */
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2),
        0 4px 6px rgba(0, 0, 0, 0.15);
}

.phase h3 {
    font-size: 1.5rem;
    /* color: #de6819; */
    margin-bottom: 1rem;
}

.phase ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase ul li {
    font-size: 1rem;
    color: #555;
    margin: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.phase ul li::before {
    content: "•";
    color: #003049;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .phases {
        grid-template-columns: 1fr;
    }
}

/* Co-Founders Section Styling - Dark Theme */
#co-founders {
    padding: 4rem 2rem;

    /* color: #e0e0e0; */
    text-align: center;
}



/* Grid Layout for Founders */
.founders-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Founder Profile Styling */
.founder-profile {
    /* background-color: #1a1a1a; */
    border-radius: 12px;
    padding: 2rem;
    width: 300px;
    position: relative;
    text-align: center;
    overflow: hidden;
    transition: transform 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /* border: 1px solid #333; */
}

.founder-profile:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* Image Wrapper Styling */
.image-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    /* box-shadow: 0 0 15px rgba(0, 255, 255, 0.5); */
    transition: box-shadow 0.3s ease;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.founder-profile:hover .image-wrapper {
    box-shadow: 0 0 15px rgb(255, 187, 0);
}

.founder-profile:hover .image-wrapper img {
    transform: scale(1.03);
}

/* Content Styling */
.content h3 {
    font-size: 1.2rem;
    color: #003049;
    margin-bottom: 0.5rem;
}

.content .title {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.content .details {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Neon Line Effect */
.founder-profile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* background: linear-gradient(90deg, #ff7d00, #0defff); */
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.founder-profile:hover::before {
    transform: scaleX(1);
}

.founder-profile::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 4px;
    /* background: linear-gradient(90deg, #0defff, #ff7d00); */
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: right;
}

.founder-profile:hover::after {
    transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .founders-grid {
        flex-direction: column;
        align-items: center;
    }
}



.hotel-projects {
    padding: 2rem;
    padding-top: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Three items per row */
    gap: 0;
}

.project {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

/* Add only inner borders */
.project::after,
.project::before {
    content: "";
    position: absolute;
    background-color: #ddd;
}

.project::after {
    /* Horizontal inner border */
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
}

.project::before {
    /* Vertical inner border */
    width: 1px;
    height: 100%;
    top: 0;
    right: 0;
}

/* Remove right border on the last column */
/* .project:nth-child(3n)::before {
    display: none;
} */

/* Remove bottom border for the last row */
@media (min-width: 998px) {
    .project:nth-last-child(-n+2)::after {
        display: none;
    }
}

.project h3 {
    color: #003049;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.project p {
    color: #555;
    font-size: 0.9rem;
}

.project:hover {
    background-color: #fff;
    transition: background-color 0.3s ease;
}

/* Responsive: Two items per row on tablets */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project:nth-child(2n)::before {
        display: none;
    }

    /* Remove bottom border for the last row */
    .project:nth-last-child(-n+1)::after {
        display: none;
    }
}

/* Responsive: Single column on small devices */
@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project::before {
        display: none;
    }

    /* Remove bottom border for the last item */
    .project:nth-last-child(1)::after {
        display: none;
    }
}


.footer_container a {
    text-decoration: none;
    color: #fff;
}

.footer_container a:hover {
    color: #de6819;
}

.footer_container a:hover i {
    color: #fff;
}




/** ABOUT US PAGE**/
.abouthero-section {
    height: 50vh;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
}

.abouthero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.5s ease-out;
}

.abouthero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* Fade-in animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.our-expertise {
    animation: fadeIn 1.5s ease;
}



.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
}

.expertise-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideInRight 1.5s ease;
}

.expertise-card {

    padding: 20px;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(13, 38, 76, 0.19) 0px 9px 20px;
}

.expertise-icon {
    font-size: 2rem;
    color: #de6819;
    margin-bottom: 10px;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mission Section */
.mission-vision {
    padding: 60px 20px;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
}

.mission-vision .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.mission-vision .card {
    background: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    padding: 20px;
    border-radius: 8px;
    border: 0;
    text-align: center;
}

.mission-vision .card h3 {
    color: #003049;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 40px 20px;
    background: #003049;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.services-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 1.5rem;
}

.services-header {
    text-align: center;
    margin-bottom: 2rem;
}

.services-header h2 {
    font-size: 36px;
    margin-bottom: 0.5rem;
    color: #003049;
    text-align: center
}

.services-header p {
    font-size: 18px;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 40px;
    color: #de6819;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 20px;
    margin-bottom: 0.5rem;
    color: #003049;
}

.service-description {
    font-size: 16px;
    color: #555;
}


.industries {
    background-color: #ffffff;
    padding: 50px 0;
}

.industries h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card i {
    font-size: 50px;
    color: #de6819;
    margin-bottom: 20px;
}

/* Adjust Icon Hover Effect */
.industry-card:hover i {
    color: #003049;
    /* Change icon color on hover */
}

.industry-card {

    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.industry-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}




.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .industry-card {
        padding: 20px;
    }

    .industry-card i {
        font-size: 40px;
    }

    .industry-card h3 {
        font-size: 1.25rem;
    }

    .industry-card p {
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
}

.testimonial-card h5 {
    margin-top: 20px;
    font-weight: bold;
}

/* FAQ Section */
.faq {
    background-color: #ffffff;
    padding: 50px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}


.contact-cta {
    text-align: center;
    margin-top: 30px;
}

.contact-cta a {
    color: #003049;
    text-decoration: none;
    font-weight: bold;
}

.contact-cta a:hover {
    text-decoration: underline;
}


.accordion-button {
    background-color: #f9f9f9;
    color: #003049;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    border: none;
}

.accordion-button:hover {
    background-color: #f0f0f0;
    color: #de6819;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #003049;
    color: #ffffff;
}

.accordion-body {
    background-color: #ffffff;
    color: #333;
    padding: 20px;
    border: 1px solid #ddd;
}

.accordion-item {
    margin-bottom: 15px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.contact-info h2 {
    color: #003049;
    margin-bottom: 1.5rem;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box i {
    font-size: 2rem;
    color: #de6819;
}

.info-box p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.contact-info a {
    color: #555;
    text-decoration: none;
}

.info-box:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-form {
    flex: 2;
    min-width: 300px;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.contact-form h2 {
    color: #003049;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #003049;
    box-shadow: 0 0 5px rgba(0, 48, 73, 0.5);
}

.btn-submit {
    display: inline-block;
    background-color: #de6819;
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #003049;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}