* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }

  .top-banner {
    background: #e0f7fa;
    color: #d32f2f;
    text-align: center;
    padding: 8px 0;
    font-weight: bold;
  }

  .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .main-header .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .main-header nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }

  .main-header .phone {
    background: #4caf50;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    
  }
  
  .hero {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
   color: #0d47a1;
   font-size:32px;

  }

  .hero h2 {
    font-size: 2rem;
  }

  .explore-btn {
    background: #2196f3;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    margin-bottom: 40px;
  }

  .stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .stat-item {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 16px;
    width: 160px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .stat-item.years {
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: bold;
  }

  .stat-item span {
    display: block;
    font-size: 2rem;
  }

  .course-section {
    padding: 40px 20px;
  }

  .course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .course-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
  }

  .course-card:hover {
    transform: scale(1.03);
  }

  .course-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
  }

  .course-description {
    font-size: 0.95rem;
    color: #555;
  }
  .dubai-section {
    padding: 40px 20px;
    background-color: #f5f5f5;
    text-align: center;
  }

  .dubai-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0d47a1;
  }

  .dubai-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
  }

  .register-btn {
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .register-btn:hover {
    background-color: #1eb851;
  }

  .section-title {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 2rem;
    color: #2e3a59;
  }
  
  .webinar-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
  }
  
  .webinar-card {
    background-color: #fff;
    width: 300px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s ease-in-out;
  }
  
  .webinar-card:hover {
    transform: translateY(-5px);
  }
  
  .webinar-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #00796b;
    font-weight: bold;
  }
  
  .webinar-date {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #555;
  }
  
  .webinar-desc {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
  }
  
  .register-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #2196f3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
  }
  
  .register-btn:hover {
    background-color: #1976d2;
  }


  /* hambuger */
  /* Base styles */
.header {
  background: #97b2cd;
  color: white;
  padding: 10px 20px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    flex-direction: column;
    background-color: #222;
    border-radius: 5px;
    width: 200px;
    padding: 10px;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .nav-links li {
    padding: 10px 0;
    border-bottom: 1px solid #444;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li a:hover {
    color: #00ffcc;
  }
}

/* Tablet or small laptops */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links li a {
    font-size: 14px;
  }
}

/* Desktop & Large Screens */
@media (min-width: 1025px) {
  .nav-links li a {
    font-size: 16px;
  }
}

/* Container for logo and navbar */
.nav-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

/* Style for the navbar */
.navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Individual nav items */
.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 8px 16px;
  transition: background 0.3s ease;
}

.navbar ul li a:hover {
  background-color: #f0f0f0;
  border-radius: 5px;
}


#rcs-logo{
  height: 40px;
 mix-blend-mode: multiply;
  background: transparent;

}
.rcs{
  color: #105e9e;
  font-size: 30px;
}

.section-title {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 2rem;
  color: #0d47a1;
}

/* Style the phone number in navbar for mobile view */
.navbar .phone {
  font-weight: bold;
  color: #105e9e;
  font-size: 1rem;
}

@media (max-width: 991px) {
  .navbar .phone {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
