@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
.ubuntu-light {
    font-family: "Ubuntu", serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .ubuntu-regular {
    font-family: "Ubuntu", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .ubuntu-medium {
    font-family: "Ubuntu", serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .ubuntu-bold {
    font-family: "Ubuntu", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .ubuntu-light-italic {
    font-family: "Ubuntu", serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .ubuntu-regular-italic {
    font-family: "Ubuntu", serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .ubuntu-medium-italic {
    font-family: "Ubuntu", serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .ubuntu-bold-italic {
    font-family: "Ubuntu", serif;
    font-weight: 700;
    font-style: italic;
  }
 *{
    font-family: "Ubuntu", serif;
 }
body {
    font-family: "Ubuntu", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
header {
    font-family: "Ubuntu", serif;
    background-color: #d13239;
    color: white;
    padding: 10px 20px;
    
    justify-content: space-between;
    align-items: center;
}
header img {
    height: 50px;
}
.header-right a {
    text-decoration: none;
    margin: 0 10px;
     
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: black;
}

/* Dropdown styles */
.dropdown {
   
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 16px;
    padding: 5px 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 3px solid #d13239; /* Light blue border */
}
 h6{
    font-size: 18px;
 }
p{
    line-height: 1.5;
}
.dropdown-content.open {
    display: block;
}
/* General Table Styling */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 1rem;
    text-align: left;
}

/* Table Header */
.schedule-table thead {
    background-color: #f4f4f4;
}

.schedule-table th {
    padding: 0.75rem;
    border: 1px solid #ddd;
}

/* Table Body */
.schedule-table td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    word-wrap: break-word; /* Ensure text wraps within cells */
}

/* Alternating Row Colors */
.schedule-table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

/* Register Button Styling */
.register-button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9rem;
}

.register-button:hover {
    background-color: #d13239;
}

/* Mobile View Styling */
@media (max-width: 768px) {
    .schedule-table {
        border: 0;
    }

    .schedule-table thead {
        display: none; /* Hide the table header */
    }

    .schedule-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .schedule-table td {
        display: block;
        text-align: right;
        font-size: 0.9rem;
        border: 0;
        padding: 0.5rem;
        position: relative;
    }

    .schedule-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        text-align: left;
        font-weight: bold;
        font-size: 0.9rem;
        color: #333;
    }

    .register-button {
        width: 100%; /* Make the button span full width */
        padding: 0.75rem;
    }
}
/* Mega Menu styles */
.mega-menu {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.column {
    flex: 1;
    padding: 10px;
    min-width: 200px; /* Ensure minimum width for columns */
}

.column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #00274d; /* Dark blue text for headings */
}

.column ul {
    list-style: none;
    padding: 0;
}

.column ul li {
    margin-bottom: 5px;
}

.column ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.column ul li a:hover {
    color: #d13239; /* Light blue hover effect */
}

.all-categories-btn {
    display: block;
    margin-top: 20px;
    color: #d13239;
    text-decoration: none;
    font-weight: bold;
    text-align: left;
}

.all-categories-btn:hover {
    text-decoration: underline;
}

/* Fix for overlapping or misaligned menu */
.dropdown-content .mega-menu {
    position: relative;
    top: 0;
}
.header-right a{
    color: white;
}
/* Ensure proper spacing around dropdown */
.dropdown-content {
    padding: 10px 0;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mega-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .column {
        width: 100%;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .header-right a {
        margin: 5px 0;
    }
}
.hero {
   
    color: white;
    background-color: #d13239;
     
    padding: 60px 20px;
    text-align: center;
    position: relative;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:#0000006b;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 50vh;
}
.fas{
    margin-right: 11px !important;
    color: #d13239;
}
.hero h1 {
    margin: 10px 0;
    font-size: 35px;
}
.hero input[type="text"] {
    padding: 10px;
    width: 300px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}
.hero button {
    padding: 10px 20px;
    border: none;
    background-color: #007acc;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.cta-buttons button {
    padding: 10px 15px;
    border: none;
    background-color: #0059b3;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}
.cta-buttons button:hover {
    background-color: black;
}
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px;
    flex-wrap: wrap;
}
.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px;
    text-align: center;
}
.course-info a{
    background: transparent;
    border-bottom: 1px solid #d13239;
    padding: 10px;
    position: absolute;
    bottom: 1%;
    color: #d13239;
    text-decoration: none;
}
.card img {
    width: 50px;
    margin-bottom: 10px;
}
.card h3 {
    margin: 10px 0;
    color: #d13239;
}
.card a {
    text-decoration: none;
    color: #0059b3;
    font-weight: bold;
}
.expertise-section {
    
    padding: 40px 20px;
    
    max-width: 1250px;
    margin: 0 auto;
}
.expertise-section h2 {
    color: #333;
    margin-bottom: 10px;
}
.expertise-section h3 {
    color: #666;
    margin-bottom: 30px;
}
.header-content{
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    max-width: 1250px;
    margin: 0 auto;
}
.expertise-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.expertise-card img {
    width: 60px;
    filter: grayscale(1);
    margin-bottom: 15px;
}
.expertise-card h4 {
    margin: 10px 0;
    color: #333;
}
.expertise-card p {
    color: #d13239;
    font-weight: bold;
}
.expertise-card a {
    color: #d13239;
    font-weight: bold;
    text-decoration: none;
}
.courses-section {
    background-color: white;
    padding: 40px 20px;
}
.courses-section h2 {
    text-align: center;
    color: #333;
}
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    max-width: 1250px;
    margin: 0 auto;
}
.course-card {
    background-color: #f9f9fc;
    padding: 45px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    max-width: 400px;
}
.course-card img {
    width: 100%;
    filter: grayscale(1);
    border-radius: 10px;
}
.course-info {
    margin-top: 15px;
}
.course-info h4 {
    color: #333;
    margin-bottom: 5px;
}
.course-info p {
    display: flex;
    align-items: center;
    margin: 5px 0;
    color: #666;
}

.course-info p img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.course-info p span {
    color: #333;
    font-weight: bold;
}
.view-all-button {
    text-align: center;
    margin-top: 30px;
}
.view-all-button a {
    padding: 10px 20px;
    background-color: #d13239;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
footer {
    background-color: #d13239;
    color: white;
    padding: 20px;
    font-size: 14px;
}
footer .footer-section {
    margin-bottom: 20px;
}
footer h4 {
    color: #fff;
    margin-bottom: 10px;
}
footer p {
    margin: 5px 0;
}
footer a {
    color: white;
    text-decoration: none;
}



footer {
    background-color: #d13239;
    color: white;
    padding: 20px;
    font-size: 14px;
}
footer .footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1250px;
      margin: 0 auto;
}
footer .footer-section {
    flex: 1 1 30%;
    margin: 10px;
}
footer h4 {
    color: #fff;
    margin-bottom: 10px;
}
footer p {
    margin: 5px 0;
}
footer a {
    color: White;
    text-decoration: none;
}
footer .footer-bottom {
    margin-top: 20px;
    text-align: center;
}
.course-details{
    text-align: left;
}
.hero h1{
    color: white;
}
.tabs {
    display: flex;
    justify-content: space-around;
    background: #d13239;
}

.tab-button {
    padding: 1em 2em;
    cursor: pointer;
    border: none;
    background: #d13239;
    color: white;
    font-size: 1em;
    outline: none;
    transition: background 0.3s;
}

.tab-button.active {
    background: #d13239;
}

.tab-button:hover {
    background: #d13239;
}

.tab-content {
    display: none;
    padding: 2em;
    background: #f9f9f9;
    border: 1px solid #ddd;
}

.tab-content.active {
    display: block;
}

.burger-menu {
    display: none; /* Show burger menu for smaller screens */
}

.contact-box {
    position: fixed;
    top: 60px;
    right: 20px;
    width: 350px;
    background: #f8f9fa;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: Arial, sans-serif;
    z-index: 1000;
    overflow: hidden;
  }

  .contact-box .header {
    background-color: #0056a4;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
  }
.requestcallback{
    text-align: center;
    padding: 10px;
    background: #0056a4;
    color: white !important;
}

  .contact-box .content {
    padding: 15px;
    display: flex;
    gap: 10px;
  }

  .contact-box .content img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }

  .contact-box .details {
    flex: 1;
  }

  .contact-box .details p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
  }

  .contact-box .details a {
    display: block;
    font-size: 14px;
    text-decoration: none;
    color: #0056a4;
    margin-bottom: 5px;
  }

  .contact-box .footer {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: #333;
  }

  .contact-box .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
  }

  .contact-box .close-btn:hover {
    color: #000;
  }
    /* Styling for the schedule table */
    .schedule-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        font-family: Arial, sans-serif;
        font-size: 16px;
        text-align: left;
    }
    
    /* Table header styling */
    .schedule-table thead th {
        background-color: #f4f4f4;
        color: #333;
        padding: 10px;
        border: 1px solid #ddd;
        text-transform: uppercase;
        font-weight: bold;
    }
    
    /* Table body styling */
    .schedule-table tbody td {
        padding: 10px;
        border: 1px solid #ddd;
        vertical-align: middle;
    }
    
    /* Alternate row coloring for better readability */
    .schedule-table tbody tr:nth-child(odd) {
        background-color: #f9f9f9;
    }
    
    /* Hover effect for table rows */
    .schedule-table tbody tr:hover {
        background-color: #f1f1f1;
    }
    
    /* Register button styling */
    .schedule-table a.register-button {
        display: inline-block;
        padding: 8px 12px;
        background-color: #d13239;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        text-align: center;
        font-size: 14px;
    }
    
    /* Hover effect for the register button */
    .schedule-table a.register-button:hover {
        background-color: #d13239;
    }
    .expertise-section button{
        border: none;
        background: none;
       
    }
/* Responsive Styling */
@media (max-width: 768px) {
    .burger-menu {
        display: block;
        border: none;
        background: transparent;
        font-size: 28px;
        color: white;
        border-radius: 6px;
    }
	header{
		width: 89%;
	}
 .map-container{
        display: none;
    }
    .header-right {
        display: none; /* Hide menu initially */
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #00336A;
        padding: 10px 0;
        z-index: 1000;
    }

    .header-right.open {
        display: flex; /* Show menu when toggled */
    }

    .dropdown-content {
        position: relative; /* Adjust dropdown for mobile */
        flex-direction: column;
    }

    .dropdown-content .mega-menu {
        flex-direction: column; /* Stack columns for mobile */
    }

    .dropdown-content .column {
        flex: none;
    }
    .tabs{
        display: flex;
            justify-content: space-around;
            background: #d13239;
            flex-wrap: wrap;
    }
    .course-card {
        max-width: 100%;
    }
    .contact-box{
        display: none;
    }
}