@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: #003366;
    color: white;
    padding: 10px 20px;
    position: fixed;
	z-index: 100;
	width: 100%;
    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: #007BFF;
}

/* Dropdown styles */
.dropdown {
   
    display: inline-block;
}
.course_pretitle{
    margin-bottom: 1rem;
    background-color: #003a61;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 400;
    font-size: 1.1rem;
}
.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 #00bfff; /* Light blue border */
}
 h6{
    font-size: 18px;
 }
p{
    line-height: 1.5;
}
.dropdown-content.open {
    display: block;
}

/* 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: #00bfff; /* Light blue hover effect */
}

.all-categories-btn {
    display: block;
    margin-top: 20px;
    color: #00bfff;
    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 {
    background: url("hero-image.jpg") no-repeat center center / cover !important;
    color: white;
    background: #00274d;
        padding: 100px 20px;
    text-align: center;
    position: relative;
   background-blend-mode: luminosity;
	
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.fas{
    margin-right: 11px !important;
    color: #007acc;
}
.hero h1 {
    margin: 10px 0;
    font-size: 35px;
	    text-shadow: 0 0 5px black;
}
.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: #003d7a;
}
.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 #007acc;
    padding: 10px;
    position: absolute;
    bottom: 1%;
    color: #007acc;
    text-decoration: none;
}
.card img {
    width: 50px;
    margin-bottom: 10px;
}
/* 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;
}
	 .map-point {
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: red;
            border-radius: 50%;
            cursor: pointer;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        }
/* 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: Black;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9rem;
}

.register-button:hover {
    background-color: #0056b3;
	color: white;
}

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

    .schedule-table thead {
        display: none; /* Hide the table header */
    }
	 .map-container{
        display: none;
    }
    .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;
    }
}
.card h3 {
    margin: 10px 0;
    color: #003366;
}
.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;
    margin-bottom: 15px;
}
.expertise-card h4 {
    margin: 10px 0;
    color: #333;
}
.expertise-card p {
    color: #007acc;
    font-weight: bold;
}
.expertise-card a {
    color: #007acc;
    font-weight: bold;
    text-decoration: none;
}
.courses-section {
    background-color: white;
    padding: 40px 20px;
	text-align: -webkit-center;
}
.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;
	    place-items: center;
}
.course-card {
    background-color: #f9f9fc;
    padding: 45px 10px 70px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    max-width: 400px;
	max-height: 330px;
	min-width: 215px;
}
.course-card img {
    width: 100%;
    border-radius: 10px;
	    filter: grayscale(1);
	min-height: 180px;
	max-height: 180px;
}
.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: #007acc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
footer {
    background-color: #003366;
    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: #aad4ff;
    text-decoration: none;
}



footer {
    background-color: #003366;
    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: #aad4ff;
    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: #003366;
}

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

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

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

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

.tab-content.active {
    display: block;
}
    .expertise-section{
            text-align: -webkit-center;
        }
        .client-image-area{
            width: 23%;

        }
        .our-clients-list{
            display: grid;
           justify-items: center;
        }
        .map-container {
            position: relative;
            display: inline-block;
        }
        .map-image {
            max-width: 1260px; /* Adjust as needed */
            height: auto;
        }
        .map-point {
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: red;
            border-radius: 50%;
            cursor: pointer;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        }
.burger-menu {
    display: none; /* Show burger menu for smaller screens */
}
@keyframes ldio-rpinwye8j0b {
    0% { transform: rotate(0deg) }
    50% { transform: rotate(180deg) }
    100% { transform: rotate(360deg) }
    }
    .courses-section{
        place-items: center;
    }
    .ldio-rpinwye8j0b div {
    position: absolute;
    text-align: center;
    animation: ldio-rpinwye8j0b 1s linear infinite;
    width: 160px;
    height: 160px;
    top: 20px;
    left: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 0 0 #003366;
    transform-origin: 80px 82px;
    }
    .loadingio-eclipse {
    width: 200px;
    height: 200px;
    display: inline-block;
    overflow: hidden;
    }
    .ldio-rpinwye8j0b {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0; /* see note above */
    }
    .ldio-rpinwye8j0b div { box-sizing: content-box; }
.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: #007BFF;
        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: #0056b3;
    }
    .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;
    }
	.course-card img{
        max-height: fit-content;
    }
	.course-card {

		max-height: fit-content;
	}
    .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;
    }
	.map-container{
		display: none;	
	}
    .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: #003366;
            flex-wrap: wrap;
    }
    .course-card {
        width: 100%;
    }
    .contact-box{
        display: none;
    }
}