body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  margin: 20px;
}

.container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.events-section {
  flex: 1;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-more {
  font-size: 14px;
  color: #0073e6;
  text-decoration: none;
}

.event {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.event-date {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
  width: 80px;
  border-left: 6px solid #f4b400;
  margin-right: 20px;
}

.event-date .day {
  font-size: 24px;
  font-weight: bold;
  display: block;
}

.event-date .month-year {
  font-size: 12px;
}

.event-info {
  flex: 1;
}

.event-title {
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 5px;
}

.event-location {
  font-size: 14px;
  color: #333;
  margin: 0;
}

.video-section {
  width: 500px;
}

.tabs {
  display: flex;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.tab {
  padding: 10px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-weight: bold;
  border-right: 1px solid #ccc;
}

.tab.active {
  border-bottom: 2px solid #0073e6;
}

.video-container iframe {
  width: 100%;
  height: 315px;
}

/* ---------------------------------------------------letest news css------------------- */

 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff;
            color: #333;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 50px auto;
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }

        .section {
            flex: 1;
        }

        .section h2 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }

        .section .view-more {
            float: right;
            font-size: 14px;
            text-decoration: none;
            color: #007BFF;
            font-weight: bold;
        }

        .section .view-more:hover {
            text-decoration: underline;
        }

        .latest-news .news-item, .awards .award-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }

        .latest-news .news-item:last-child, .awards .award-item:last-child {
            border-bottom: none;
        }

        .news-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: #f1f1f1;
            color: #333;
            font-weight: bold;
            text-align: center;
            border: 2px solid #04da3d;
            border-radius: 4px;
            margin-right: 15px;
        }

        .news-date span {
            font-size: 20px;
        }

        .news-date small {
            font-size: 12px;
        }

        .news-title, .award-title {
            font-size: 16px;
            margin: 0;
        }

        .news-title a, .award-title a {
            color: #333;
            text-decoration: none;
        }

        .news-title a:hover, .award-title a:hover {
            color: #007BFF;
        }

        .awards ul {
            list-style-type: none;
            padding: 0;
        }

        .awards ul li {
            margin: 8px 0;
        }

        .awards ul li i {
            color: #007BFF;
            margin-right: 5px;
        }
        /* General Styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }

        /* Request Section */
        .request-section {
            display: flex;
            align-items: center;
            background-color: #f4f4f9;
            border: 1px solid #ddd;
            padding: 20px;
            margin: 20px auto;
            border-radius: 8px;
            width: 90%;
            max-width: 1200px;
        }

        .request-icon {
            width: 50px;
            height: 50px;
            background-color: #007BFF;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            border-radius: 50%;
            margin-right: 15px;
        }

        .request-text {
            flex-grow: 1;
        }

        .request-text h4 {
            margin: 0;
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }

        .request-text a {
            color: #007BFF;
            text-decoration: none;
            font-size: 14px;
        }

        .request-text a:hover {
            text-decoration: underline;
        }

        .enquire-now-btn {
            background-color: #007BFF;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
        }

        .enquire-now-btn:hover {
            background-color: #0056b3;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
        }

        .modal {
            background: #fff;
            width: 90%;
            max-width: 400px;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .modal h2 {
            margin: 0 0 20px;
            font-size: 20px;
            text-align: center;
        }

        .modal .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: transparent;
            border: none;
            font-size: 18px;
            cursor: pointer;
        }

        .modal form {
            display: flex;
            flex-direction: column;
        }

        .modal form label {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .modal form input, .modal form textarea {
            margin-bottom: 15px;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
            width: 100%;
        }

        .modal form textarea {
            resize: none;
            height: 100px;
        }

        .modal form button {
            padding: 10px;
            background-color: #007BFF;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .modal form button:hover {
            background-color: #0056b3;
        }

        /* -----------------footer css---------------- */
        
      
       