@charset "utf-8";
/* CSS Document */

:root {
    --accent-color: #00B5B8;
    --text-color: #333;
    --bg-color: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* Navbar Styles */
.navbar {
    background-color: #075F72;
    padding: 1rem 0;
}

.navbar-brand {
    color: white;
    font-weight: 500;
}

.navbar-brand span {
    font-weight: 600;
}

.custom-navbar .nav-link {
    color: white !important;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.custom-navbar .nav-link.active {
    color: #FFD700 !important;
    font-weight: 600;
}

/* Hover effect for non-active links in the nav bar */
.custom-navbar .nav-link:not(.active):hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Navbar toggler customization */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section Styles */
.hero-section {
    padding: 80px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
}

.text-accent {
    color: #0A9EB1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

.contact-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.row.g-0 {
    width: 100%;
    margin: 0;
}

.contact-info {
    background-color: #0A9EB1;
    color: #fff;
    padding: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h6 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    opacity: 0.8;
}

.info-item p {
    margin-bottom: 0;
}

.map-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.map-link:hover {
    text-decoration: underline;
}

.arrow-icon {
    margin-left: 5px;
}

.contact-form {
    padding: 40px;
}

.form-label {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.form-control {
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.form-text {
    font-size: 0.8rem;
    color: #6c757d;
}

.btn-primary {
    background-color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #000;
}

@media (max-width: 767px) {
    .contact-info, .contact-form {
        padding: 30px;
    }
}

/* Footer Styles */
footer {
    background-color: #075F72;
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0;
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

footer h5 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer .list-unstyled li {
    margin-bottom: 1rem;
}

footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

footer .list-unstyled a:hover {
    color: #fff;
}

/* Newsletter Form */
footer .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

footer .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    border: none;
}

footer .btn-light {
    background-color: #6DE4EA;
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

footer .btn-light:hover {
    background-color: #6DE4EA;
}

/* Social Media Icons */
footer .gap-3 {
    margin-top: 1rem;
}

footer .gap-3 a {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

footer .gap-3 a:hover {
    opacity: 1;
}

/* Newsletter h5 styles */
.col-lg-4 h5 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Input and button styles */
.input-group .form-control,
.input-group .btn-light {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

/* Adjusting the layout for larger screens */
@media (min-width: 992px) {
    .col-lg-4 {
        max-width: 400px;
    }
}

/* Divider Line */
footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* Copyright Text */
footer .text-center {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Logo Section */
footer .h5 {
    color: #fff;
    font-weight: 600;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .countries-section h2 {
        font-size: 2rem;
    }
    
    .country-card {
        margin-bottom: 1.5rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    footer {
        padding: 3rem 0;
    }
    
    footer .col-lg-4,
    footer .col-lg-2 {
        margin-bottom: 2rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
