/* home */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    scroll-behavior: smooth;
}

nav {
    position:fixed;
    width: 100%;
    height: 10%;
    background: #9a38eb;
    color: rgb(10, 208, 238);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    z-index: 1000;
    font-weight:1000;
}
nav h2{
    font-size: 28px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #d4f402;
}

.login {
    border: 2px solid rgb(220, 37, 67);
    padding: 8px;
    border-radius: 50%;
}

.hero {
    height: 150vh;
    background: url(https://i.pinimg.com/736x/1e/a7/7c/1ea77c3d17332baa7cc206c3c7bf4387.jpg) center/cover;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-content h1 {
    font-size: 60px;
    color: rgb(239, 46, 7);
}

.hero-content p {
    font-size: 30px;
    color: #d7f208;
}

section {
    padding: 80px 50px;
    text-align: center;
}
 /* about us */
.about {
    background-color: #f4f4f4;
    text-align: center;
    padding: 60px 20px;
}

.about h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about p {
    max-width: 700px;
    margin: auto;
    color: #555;
    line-height: 1.6;
}
 /* new events */
.hero_2 {
    position: relative;
    height: 100vh;
    /* padding: 15px 50px; */
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(40%);
}

.hero_2 {
    color: rgb(232, 225, 225);
    text-shadow: 2px 2px 8px black;
    z-index: 1;
    text-align: center;
}

.search-box {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.search-box input {
    outline: none;
    width: 250px;
    border: 2px solid black;
    padding: 12px;
    border-radius: 25px 0 0 25px;
}

.search-box button {
    padding: 12px 20px;
    border: 2px solid black;
    background: #ff4081;
    color: white;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}

h2 {
    margin: 10px;
    font-size: 14px;
    font-weight: bold;
}

h3 {
    padding-top: 1rem;
    text-align: left;
    margin-top: 20px;
    text-shadow: 2px 2px 8px black;
    color: #ff4081;
    font-size: 20px;
    font-weight: bold;
}

h4 {
    text-align: center;
    text-shadow: 2px 2px 8px black;
    padding-top: 3rem;
}

a {
    color: tomato;
    padding-top: 5.5rem;
    text-align: center;
}

.events-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.newevents {
    color: #ff4081;
    padding-top: 4rem;
    text-shadow: #ff4081;
    text-align: left;
}

.image1 {
    position: relative;
    /* background: #fff; */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.image1 img {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #ff4081;
    cursor: pointer;
    transition: transform 0.4s ease-out;
}

.image1:hover img{
    transform: scale(1.1);
}

.image2 img {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #ff4081;
    cursor: pointer;
    transition: transform 0.4s ease-out;
}

.image2:hover img {
    transform: scale(1.1);
}

.image3 img {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #ff4081;
    cursor: pointer;
    transition: transform 0.4s ease-out;
}

.image3:hover img {
    transform: scale(1.1);
}

.image4 img {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #ff4081;
    cursor: pointer;
    transition: transform 0.4s ease-out;
}

.image4:hover img{
    transform: scale(1.1);
}

.event-info {
    position: absolute;
    display: flex;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    color: white;
}

h3 {
    color: #ff4081;
    text-align: left;
    padding-bottom: 70px;
}

span {
    color: #ff4081;
    font-size: larger;
}

.events-container h4 {
    color: white;
    padding-bottom: 10px;
}

.events-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    color: white;
}
 /* categories */
.categories {
    padding: 40px 60px;
    background: #f5f5f5;
}

.categories h1 {
    color: black;
    text-shadow: #555;
    text-align: left;
    padding-bottom: 10px;
}

.category-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.category-card {
    width: 180px;
    height: 150px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgb(16, 16, 16);
    cursor: pointer;
    transition: 1s ease;
}

.category-card i {
    font-size: 40px;
    color: #ff4081;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    text-shadow: #ff4081;
    margin-bottom: 40px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0.5, 0, 0.6);
}

    /* gallery */
.gallery-section {
    padding: 80px 40px;
    text-align: center;
    background-image: url("https://i.pinimg.com/736x/22/15/e4/2215e48edef9a276b02a8f51ebfbd5a7.jpg");
}

.gallery-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}



.gallery {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}



.gallery-item {
    width: 200px;
    height: 200px;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: black;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s ease;
}



.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.overlay h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #f4f4f4;
}

.gallery-section h3 {
    color: #ff4081;
    text-align: left;
    padding: 10px;
}


.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .overlay {
    opacity: 1;
}
 /* customer reviews */
   body {
      background: #f5f7fb;
      color: #222;
      line-height: 1.6;
    }

    .reviews-section {
      max-width: 1200px;
      margin: 60px auto;
      padding: 20px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-header h2 {
      font-size: 36px;
      color: #1d3557;
      margin-bottom: 10px;
    }

    .section-header p {
      color: #666;
      font-size: 16px;
      max-width: 700px;
      margin: auto;
    }

    .rating-summary {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      background: white;
      padding: 25px;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .rating-box h3 {
      font-size: 42px;
      color: #e63946;
    }

    .stars {
      color: #ffb703;
      font-size: 22px;
      margin: 8px 0;
    }

    .rating-box p,
    .summary-text p {
      color: #555;
      font-size: 15px;
    }

    .reviews-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-bottom: 50px;
    }

    .review-card {
      background: white;
      padding: 24px;
      border-radius: 18px;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .review-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .review-top {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 16px;
    }

    .avatar {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      overflow: hidden;
      background: linear-gradient(135deg, #457b9d, #1d3557);
      position: relative;
      flex-shrink: 0;
    }

    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .avatar-fallback {
      width: 100%;
      height: 100%;
      display: none;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      font-weight: bold;
    }

    .review-info h4 {
      font-size: 18px;
      color: #1d3557;
    }

    .review-info span {
      font-size: 14px;
      color: #777;
    }

    .review-card .stars {
      font-size: 18px;
      margin-bottom: 12px;
    }

    .review-text {
      color: #444;
      font-size: 15px;
    }

    .review-form-box {
      background: white;
      padding: 30px;
      border-radius: 18px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .review-form-box h3 {
      text-align: center;
      color: #1d3557;
      margin-bottom: 20px;
      font-size: 28px;
    }

    .review-form {
      display: grid;
      gap: 16px;
    }

    .review-form input,
    .review-form select,
    .review-form textarea {
      width: 100%;
      padding: 14px;
      border: 1px solid #dcdcdc;
      border-radius: 10px;
      outline: none;
      font-size: 15px;
    }

    .review-form textarea {
      resize: none;
      min-height: 120px;
    }

    .review-form input:focus,
    .review-form select:focus,
    .review-form textarea:focus {
      border-color: #457b9d;
    }

    .review-form button {
      background: #e63946;
      color: white;
      border: none;
      padding: 14px;
      border-radius: 10px;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
    }

    .review-form button:hover {
      background: #c92635;
    }

    .message {
      text-align: center;
      margin-top: 10px;
      font-size: 15px;
      color: green;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .section-header h2 {
        font-size: 28px;
      }

      .rating-box h3 {
        font-size: 34px;
      }
      /* company details */
    }
            body {
            font-family: Arial, sans-serif;
            margin: 0;
            background-color: #f4f4f4;
        }

        .company-section {
            padding: 50px 20px;
            background: #fff;
        }

        .container {
            max-width: 1000px;
            margin: auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
        }

        .company-image {
            flex: 1;
        }

        .company-image img {
            width: 100%;
            border-radius: 10px;
        }

        .company-details {
            flex: 1;
        }

        .company-details h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .company-details p {
            font-size: 16px;
            margin: 8px 0;
        }

        .label {
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                text-align: center;
            }
        }
        /* contact us */
    body {
    background: #f2f2f2;
    }
    .contact {
    text-align: center;
    padding: 80px 20px;
    }

    .contact h2 {
    margin-bottom: 25px;
    font-size: 25px;
    }

    .contact-form {
    width: 40%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 15px;
    }

    .contact-form textarea {
    height: 120px;
    resize: none;
    }


    .contact-form button {
    padding: 12px;
    background: brown;
    border: none;
    color: black;
    font-size: 15px;
    cursor: pointer;
    }

    .contact-form button:hover {
    background: purple;
    background-color: blue;
    }        
    footer{
        background: #fa0404;
        color: #d4f402;
        padding: 10px;
        text-align: center;
    }