/* General Styles */
/* ---------------------------------- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff; /* White background to match the logo */
}

/* Header Section */
/* ---------------------------------- */
header {
    background-color: #f0f0f0; /* Light grey background to match the logo */
    color: #1c1e22; /* Dark text color for contrast */
    padding: 10px 0;
}

/* Navigation */
/* ---------------------------------- */
.navbar {
    background-color: #FFFFFF !important;
    min-height: 100px;
    padding: 5px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
    color: blue !important;
    font-weight: bold;
    font-size: 1.6em;
    padding: 5px 0;
}

.navbar-brand img {
    max-width: 170px;
    height: auto;
    margin-right: 10px;
}

.navbar-toggler {
    background-color: transparent;
    border: none;
    padding: 8px;
    outline: none !important;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: blue !important;
    font-weight: bold;
    font-size: 1.2em;
    padding: 8px 15px;
    display: block;
    width: 100%;
    text-align: center;
    transition: color 0.3s ease;
}

.navbar-brand:hover,
.navbar-nav .nav-link:hover {
    color: red !important; /* Slightly lighter text on hover */
}

.navbar-brand,
.navbar-nav .nav-link {
    color: blue !important; /* Blue text color for links */
    font-weight: bold;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #1c1e22; /* Dark text color for contrast */
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
/* ---------------------------------- */
.hero {
    position: relative;
    height: 50vh;
    padding: 160px 15px 80px;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('images/hero.jpg') no-repeat center center;
    background-size: cover;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 120px 15px 60px;
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.2em;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .hero p {
        font-size: 1.1em;
        padding: 0 15px;
        margin-bottom: 25px;
    }
}

.cta-button {
    background-color: #1c1e22;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
}

.cta-button:focus,
.cta-button:hover {
    background-color: #333;
}
/* Featured Destinations Section */
/* ---------------------------------- */
.featured-destinations {
    padding: 50px 20px;
    text-align: center;
}

.card {
    margin-bottom: 30px;
}

.card-title {
    color: #1c1e22; /* Dark text color */
    font-weight: bold;
}

.card-text {
    color: #555; /* Slightly lighter text color for descriptions */
}

/* Meet Our Guides Section */
/* ---------------------------------- */
.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.grid-item {
    flex: 1 1 200px;
    margin: 10px;
    text-align: center;
}

.grid-item img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}

.grid-item h4 {
    color: #1c1e22; /* Dark text color */
    margin-top: 15px;
}

.grid-item p {
    color: #555; /* Slightly lighter text color for descriptions */
}

/* Customer Testimonials Section */
/* ---------------------------------- */
.testimonials {
    background-color: #f9f9f9; /* Light background for testimonials */
    padding: 50px 20px;
}

blockquote {
    color: #1c1e22; /* Dark text color */
    font-style: italic;
}

.blockquote-footer {
    color: #555; /* Slightly lighter text color for footer */
}

/* Footer Section */
/* ---------------------------------- */
footer {
    background-color: #f0f0f0; /* Single color for the footer container */
    color: #1c1e22; /* Dark text color */
    padding: 40px 0;
    text-align: left;
}

.footer-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    margin: 20px;
    min-width: 220px; /* Ensure minimum width for each column */
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #1c1e22; /* Dark text color */
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8;
}

.footer-column ul li a {
    color: #1c1e22; /* Dark text color */
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-column p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-column a {
    color: #1c1e22; /* Dark link color */
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 10px; /* Add space between social icons */
}

.footer-social img {
    width: 40px; /* Set a fixed size for social icons */
    height: auto;
}

.footer-map iframe {
    margin-top: 15px;
    border: 1px solid #555; /* Slight border for a cleaner look */
    border-radius: 5px; /* Rounded corners for the map */
    width: 100%; /* Ensure the map takes full width */
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ccc; /* Light border for separation */
    margin-top: 30px;
    color: #333; /* Single color for footer text */
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    background-color: #f0f0f0;
}

.footer-bottom a {
    color: #333; /* Matching footer bottom color */
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Scroll to Top Button */
/* ---------------------------------- */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1c1e22; /* Dark background color */
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    display: none; /* Initially hidden */
    z-index: 1000; /* Ensure it's above other elements */
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#scrollToTopBtn:focus,
#scrollToTopBtn:hover {
    background-color: #333; /* Slightly darker on hover */
    transform: translateY(-5px); /* Slight lift on hover */
}

.scroll-logo {
    width: 30px; /* Adjust size as needed */
    height: auto;
    vertical-align: middle;
    margin-right: 10px; /* Space between logo and text */
}

.scroll-text {
    font-size: 16px; /* Adjust text size */
    vertical-align: middle;
}

/* Responsive Adjustments */
/* ---------------------------------- */
@media (max-width: 992px) {
    /* Tablet View */
    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .footer-column {
        margin: 10px 0;
    }

    .navbar-brand {
        font-size: 1.3em;
    }

    .navbar-brand img {
        max-width: 45px;
    }
}

@media (max-width: 768px) {
    /* Mobile View */
    .navbar {
        min-height: 50px;
        padding: 5px 15px;
    }

    .navbar-brand {
        font-size: 0.75em;
        white-space: normal;
        line-height: 1.2;
        max-width: 75%;
        display: inline-block;
        text-align: left;
        padding: 5px 0;
    }

    .navbar-brand img {
        max-width: 60px;
        margin-right: 8px;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #ffffff;
        padding: 60px 0 20px 0;
        transition: all 0.3s ease-in-out;
        z-index: 1001;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .navbar-nav .nav-item {
        margin: 0;
        padding: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        font-size: 0.95em;
        padding: 15px 25px;
        display: block;
        color: #333;
        width: 100%;
        text-align: left;
        transition: all 0.2s ease;
        position: relative;
        cursor: pointer;
    }

    .navbar-nav .nav-link:active {
        background-color: #e9ecef;
    }

    .navbar-nav .nav-link:hover {
        background-color: #f8f9fa;
        color: #007bff !important;
        padding-left: 30px;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: red;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

    .navbar-toggler {
        position: fixed;
        right: 15px;
        top: 10px;
        z-index: 1002;
        padding: 5px;
    }

    .close-menu-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        z-index: 1002;
        padding: 8px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.2s ease;
    }

    .close-menu-btn:hover {
        background-color: #f8f9fa;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Add padding to main content to prevent overlap with fixed navbar */
    main {
        padding-top: 50px;
    }

    .hero {
        height: 60vh;
        padding: 100px 15px;
        position: relative;
        text-align: center;
        color: #fff;
      }
      
      .hero h1,
      .hero p {
        text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
      }
      
      .hero .container {
        z-index: 2;
        position: relative;
        padding: 0 15px;
      }
      
      .hero::before {
        background-position: center;
        background-size: cover;
      }
      

    /* Overlay when menu is open */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    body.menu-open .menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    .hero {
        height: 60vh;
        padding: 80px 0;
        margin-top: 0;
    }

    .hero::before {
        background-position: center;
    }

    .hero h1 {
        font-size: 2em;
        margin-bottom: 15px;
        padding: 0 15px;
    }

    .hero p {
        font-size: 1.1em;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .hero .container {
        width: 100%;
        padding: 0 20px;
    }

    .cta-button {
        font-size: 1em;
        padding: 8px 16px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    #scrollToTopBtn {
        right: 20px;
        bottom: 20px;
    }

    .scroll-logo {
        width: 30px;
        height: 30px;
    }

    .scroll-text {
        font-size: 12px;
    }
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 0.75rem; /* Slightly smaller font size for mobile */
        white-space: normal; /* Allow text to wrap to the next line */
        line-height: 1.2; /* Maintain line height for readability */
    }
    .navbar-brand img {
        max-width: 95px; /* Slightly larger logo size for mobile */
        margin-right: 10px; /* Maintain space between logo and text */
    }
    .navbar {
        padding: 5px 5px; /* Maintain padding */
    }
    .navbar-nav .nav-item {
        margin: 0 5px;
    }
}

/* Desktop View Adjustments */
@media (min-width: 769px) {
    .navbar {
        padding: 0 15px;
    }

    .navbar-collapse {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        background: none;
    }

    .close-menu-btn,
    .menu-overlay {
        display: none !important;
    }

    .navbar-nav .nav-item {
        margin: 0 5px;
        border: none;
    }

    .navbar-nav .nav-link {
        padding: 20px 15px;
        border: none;
        position: relative;
    }

    .navbar-nav .nav-link:hover {
        color: red !important;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: red;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }
}

/* Destination Pages */
/* ---------------------------------- */
.destination-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/destination1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
    margin-bottom: 50px;
}

.destination-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.destination-hero .lead {
    font-size: 1.5em;
}

.destination-details h2 {
    color: #1c1e22;
    margin-bottom: 20px;
}

.destination-details h3 {
    color: #1c1e22;
    margin-top: 30px;
    margin-bottom: 15px;
}

.destination-details ul {
    list-style-type: none;
    padding-left: 0;
}

.destination-details ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.destination-details ul li:before {
    content: "•";
    color: #1c1e22;
    position: absolute;
    left: 0;
}

.destination-details .card {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.destination-details .card:hover {
    transform: translateY(-5px);
}

.destination-details .card-body {
    padding: 25px;
}

.destination-details .card h4 {
    color: #1c1e22;
    margin-bottom: 20px;
}

.destination-details .img-fluid {
    transition: transform 0.3s ease;
}

.destination-details .img-fluid:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .destination-hero {
        padding: 100px 0;
    }

    .destination-hero h1 {
        font-size: 2.5em;
    }

    .destination-hero .lead {
        font-size: 1.2em;
    }
}

/* Service Pages */
/* ---------------------------------- */
.service-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/service1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
    margin-bottom: 50px;
}

.service-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.service-hero .lead {
    font-size: 1.5em;
}

.service-details h2 {
    color: #1c1e22;
    margin-bottom: 20px;
}

.service-details h3 {
    color: #1c1e22;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-details ul {
    list-style-type: none;
    padding-left: 0;
}

.service-details ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-details ul li:before {
    content: "•";
    color: #1c1e22;
    position: absolute;
    left: 0;
}

.service-details .card {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-details .card:hover {
    transform: translateY(-5px);
}

.service-details .card-body {
    padding: 25px;
}

.service-details .card h4 {
    color: #1c1e22;
    margin-bottom: 20px;
}

.service-details .img-fluid {
    transition: transform 0.3s ease;
}

.service-details .img-fluid:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0;
    }

    .service-hero h1 {
        font-size: 2.5em;
    }

    .service-hero .lead {
        font-size: 1.2em;
    }
}

/* Service Cards */
/* ---------------------------------- */
.service-category {
    margin-bottom: 60px;
}

.service-category h2 {
    color: #1c1e22;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.service-category .lead {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-img-top {
    transform: scale(1.05);
}

.service-card .card-body {
    padding: 25px;
}

.service-card .card-title {
    color: #1c1e22;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: bold;
}

.service-card .card-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card .btn-primary {
    background-color: #1c1e22;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.service-card .btn-primary:hover {
    background-color: #333;
}

/* General Travel Services Cards */
.service-card:not(:has(.card-img-top)) {
    background: #f8f9fa;
    border: 1px solid #eee;
}

.service-card:not(:has(.card-img-top)) .card-body {
    text-align: center;
}

.service-card:not(:has(.card-img-top)) .card-title {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.service-card:not(:has(.card-img-top)) .card-text {
    font-size: 0.9em;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .service-category h2 {
        font-size: 2em;
    }

    .service-category .lead {
        font-size: 1.1em;
    }

    .service-card .card-img-top {
        height: 180px;
    }
}

/* Photo Gallery Styles */
.photo-gallery {
    padding: 60px 0;
    margin-top: 30px;
}

.gallery-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-caption {
    margin-top: 15px;
}

.gallery-caption p {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
}

/* Add spacing between gallery items */
.row.g-4 {
    margin: -12px;
}

.row.g-4 > [class*="col-"] {
    padding: 12px;
}

/* Service Cards */
.card {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-img-top {
        height: 200px;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero p {
        font-size: 1.2em;
    }
}

/* Management Section Styles */
.management-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #1c1e22;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #007bff;
    margin: 20px auto 0;
}

.management-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.management-card:hover {
    transform: translateY(-5px);
}

.profile-image-wrapper {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.profile-name {
    font-size: 1.8rem;
    color: #1c1e22;
    margin: 20px 0 10px;
}

.profile-title {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 10px;
}

.profile-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.management-bio {
    color: #495057;
    line-height: 1.8;
}

.management-bio p {
    margin-bottom: 1.5rem;
    text-align: justify;
    text-indent: 2em;
}

@media (max-width: 992px) {
    .management-card {
        padding: 25px;
    }

    .profile-image-wrapper {
        width: 200px;
        height: 200px;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .management-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .management-card {
        padding: 20px;
        margin-bottom: 30px;
    }

    .profile-image-wrapper {
        width: 180px;
        height: 180px;
        margin-bottom: 20px;
    }

    .management-bio {
        margin-top: 30px;
    }
}

/* Contact Page Styles */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
    margin-top: 100px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 1.8em;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: #007bff;
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.info-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.info-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #007bff;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-3px);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.submit-btn {
    background: #007bff;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.notification.success {
    background: #28a745;
    color: #fff;
}

.notification.error {
    background: #dc3545;
    color: #fff;
}

.notification i {
    font-size: 1.2rem;
}

.notification.fade-out {
    animation: slideOut 0.3s ease-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact {
        margin-top: 60px;
        padding: 40px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.privacy-policy .policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.privacy-policy .policy-section {
    margin-bottom: 40px;
}

.privacy-policy .policy-section:last-child {
    margin-bottom: 0;
}

.privacy-policy h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.privacy-policy h3 {
    color: #555;
    font-size: 20px;
    margin: 20px 0 15px;
}

.privacy-policy p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-policy ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-policy ul li {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.privacy-policy .contact-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
}

.privacy-policy .contact-details a {
    color: #007bff;
    text-decoration: none;
}

.privacy-policy .contact-details a:hover {
    text-decoration: underline;
}

.privacy-policy .last-updated {
    font-style: italic;
    color: #888;
    margin-top: 10px;
}

/* Media Queries for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 40px 0;
    }

    .privacy-policy .policy-content {
        padding: 25px;
    }

    .privacy-policy h2 {
        font-size: 22px;
    }

    .privacy-policy h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .privacy-policy {
        padding: 30px 0;
    }

    .privacy-policy .policy-content {
        padding: 20px;
    }

    .privacy-policy h2 {
        font-size: 20px;
    }

    .privacy-policy h3 {
        font-size: 16px;
    }
} 