/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #ff5252;
    transform: translateY(-3px);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #ff6b6b;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ff6b6b;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-links a:hover {
    color: #ff6b6b;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.destination-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.destination-img {
    height: 250px;
    overflow: hidden;
}

.destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-card:hover .destination-img img {
    transform: scale(1.1);
}

.destination-info {
    padding: 20px;
}

.destination-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.destination-info p {
    color: #666;
    margin-bottom: 15px;
}

/* About Page Styles */
  
    body {
      margin: 0;
      padding: 0;
      font-family: 'Arial', sans-serif;
      background-color: #ffffff;
      color: #333;
      line-height: 1.6;
    }

    .containerabout {
      max-width: 1200px;         /* Limits the width on large screens */
      margin: 0 auto;            /* Centers the container */
      padding: 40px 30px;        /* Adds padding on left and right sides */
      box-sizing: border-box;
    }
    
    .spacing {
  margin-bottom: 20px; /* adds space below each content block */
}

    h1, h2, p {
      text-align: justify;
    }

    h1 {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .section {
      margin-bottom: 40px;
      width: 100%;
    }

    .section h2 {
      font-size: 24px;
      margin-bottom: 10px;
      color: #222;
    }

    .section p {
      font-size: 18px;
      margin: 0;
    }
  




/* Footer */
footer {
    background: #222;
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #ff6b6b;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bbb;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #ff6b6b;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 20px;
    }

    .nav-links li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-img {
        order: -1;
    }
}

/* Contact Page Specific Styles - All uniquely named */
        .contact-body {
            background-color: #f5f7fa;
            color: #333;
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        .contact-container-main {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 15px;
        }

        .contact-header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .contact-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-logo {
            font-size: 28px;
            font-weight: 700;
            color: #ff6b6b;
        }

        .contact-section-main {
            padding: 80px 0;
        }

        .contact-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-title h1 {
            font-size: 40px;
            color: #333;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .contact-title h1::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: #ff6b6b;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-title h2 {
            font-size: 36px;
            color: #333;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .contact-title h2::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: #ff6b6b;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            
        }

        .contact-content-box {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 40px;
            margin-bottom: 40px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .contact-method {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .contact-method:hover {
            transform: translateY(-5px);
        }

        .contact-icon {
            font-size: 24px;
            color: #ff6b6b;
            margin-bottom: 15px;
        }

        .contact-form-container {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
        }

        .contact-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }

        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }

        .contact-btn {
            display: inline-block;
            background: #ff6b6b;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }

        .contact-btn:hover {
            background: #ff5252;
            transform: translateY(-3px);
        }

        .contact-map-container {
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-top: 40px;
        }

        .contact-footer {
            background: #222;
            color: white;
            padding: 60px 0 20px;
        }

        .contact-footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        @media (max-width: 768px) {
            .contact-form-row {
                grid-template-columns: 1fr;
            }
            
            .contact-nav {
                flex-direction: column;
            }
            
            .contact-logo {
                margin-bottom: 15px;
            }
        }


/* Table Style */

    body {
      font-family: Arial, sans-serif;
      padding: 20px;
      background-color: #f9f9f9;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      background-color: #ffffff;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    th, td {
      padding: 15px;
      text-align: left;
      border-bottom: 1px solid #ddd;
      vertical-align: top;
    }
    th {
      background-color: #f0f0f0;
      font-size: 18px;
    }
    td:first-child {
      font-weight: bold;
    }
    .checkmark {
      color: green;
      margin-right: 8px;
    }
    