/* header */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Roboto';
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

.logo {
    width: 180px;
    height: 70px;
    margin-right: 60px; /* Adjust spacing from the nav links */
}
.whatsapp-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    font-size: 30px;
    width: 60px; /* Set width to make it a circle */
    height: 60px; /* Set height to make it a circle */
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon a {
    color: white;
    text-decoration: none;
}

.whatsapp-icon:hover {
    background-color: #128C7E;
    cursor: pointer;
}
/* General styles for the navigation bar */
nav {
    background-color: #f8f9fa;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100vw;
    height: 90px;
    text-decoration: none;
}

.head{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.logo img {
    width: 170px;
    height: auto;
    margin-top: 10px;
    margin-left:15px;
}
.head {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 30px; /* Adjust the spacing between the nav-links */
}

.nav-link {
    margin-right: 70px; /* Adjust this value for custom spacing on the right */
    color: black;
    transition: color 0.2s ease;
    font-weight: bold;
    font-size: 20px;
}

.nav-link:last-child {
    margin-right: 30px; /* Ensure the last link doesn’t have extra margin */
}
.a{
    text-decoration: none;
    color: black;
}

.nav-link:hover {
    color: #ccc;
}

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

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 500px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
}

.dropdown-content a {
    color: black;
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    text-align: left;
    flex: 1 1 30%;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: flex;
}
.dropdown-content {
    display: none; /* Hide dropdown when not hovering */
}

.banner{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 20px;
}

.banner img{
    width: 100vw;
    height: auto;
    object-fit: contain;
}


/* Search bar styles */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    cursor: pointer;
    font-size: 20px;
    padding: 10px;
}

#search-input {
    width: 0;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: width 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

.search-container.expanded #search-input {
    width: 200px;
    opacity: 1;
    visibility: visible;
}

#suggestions {
    position: absolute;
    top: 35px;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

#suggestions div {
    padding: 10px;
    cursor: pointer;
}

#suggestions div:hover {
    background-color: #f1f1f1;
}

/* Hamburger menu styles */
.hamburger {
    position: relative;
    width: 30px;
    height: 4px;
    background: #000;
    border-radius: 10px;
    cursor: pointer;
    z-index: 2;
    transition: 0.3s;
}

.hamburger::before, .hamburger::after {
    content: "";
    position: absolute;
    height: 4px;
    right: 0;
    background: #000;
    border-radius: 10px;
    transition: 0.3s;
}

.hamburger::before {
    top: -10px;
    width: 20px;
}

.hamburger::after {
    top: 10px;
    width: 25px;
}

.toggle-menu {
    position: absolute;
    width: 30px;
    height: 100px;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
}

.hamburger, .toggle-menu {
    display: none;
}

nav input:checked ~ label .hamburger {
    background: transparent;
}

nav input:checked ~ label .hamburger::before {
    top: 0;
    transform: rotate(-45deg);
    width: 30px;
}

nav input:checked ~ label .hamburger::after {
    top: 0;
    transform: rotate(45deg);
    width: 30px;
}

.hero {
    width: 100vw;
    height: 450px; /* This will make the hero section the same height as the viewport */
    overflow: hidden; /* This will hide anything that goes outside the hero section */
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will make the image cover the entire hero section */
    filter: brightness(1); /* This will make the image slightly darker */
    }

/* .hero img:hover {
    filter: brightness(1); /* This will make the image return to its original brightness when hovered over 
} */

/*Slider1*/
body {
    font-family: Arial, sans-serif;
    background-color: #ffff;
    margin: 0;
    padding: 0;
}

 .slider1-container {
  width: 1349px; /* Specific width */
  height: 350px; /* Specific height */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin: auto; */
  position: relative;
} 

.text {
    display: flex;
    margin-left: 10px;
    color: black;
    font-size: 3em; /* Larger font size */
    font-weight: bold; /* Bold text */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for 3D effect */
}

.slides1 {
    width: 700px;
    height: 252px;
    display: flex;
    margin-left: 170px; /* Move the div to the right */
    position: relative;
    overflow: hidden;
    border: 2px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
}

.slide1 {
    min-width: 100%;
    box-sizing: border-box;
    transition: transform 1s ease-in-out;
}

.slide1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


/* Slider */


    /* body {
        font-family: Arial, sans-serif;
    } */
    .centered-heading {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        font-weight: bold;
        font-size: large;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    .centered-heading h2 {
        text-align: center;
        font-weight: bold;
        font-size: 2em;
        color: #364999;
    }
    .lined-heading {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
    }
    
    .lined-heading::before,
    .lined-heading::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid rgb(174, 171, 171); /* Adjust color and thickness as needed */
        margin: 0 10px; /* Adjust spacing as needed */
    }
   
    
    .slider {
    position: relative;
    overflow: hidden;
    width: 100%; /* Adjust based on your requirement */
}

.slide-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* This ensures the slide track takes the full width of the container */
}

.slide {
    flex: 0 0 auto;
    width: 150px; /* Adjust the width of the slide */
    margin: 0 10px;
    text-align: center;
}

.slide img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.slide p {
    margin-top: 10px;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: none;
    color: black;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn svg {
    width: 16px;
    height: 16px;
    fill: black;
}

.prev-btn {
    left: 10px;
}
.prev-btn::before {
    border-width: 8px 12px 8px 0;
    border-color: transparent black transparent transparent;
}

.next-btn {
    right: 10px;
}
.next-btn::before {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent black;
}

/*boxes*/


.box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1280px;
}

.box {
    position: relative;
    padding: 0; /* Adjust as needed */
    font-family: Arial;
    box-sizing: border-box;
    background-color: white;
    width: calc(33.333% - 30px);
    height: 241.64px;
    margin: 15px 7.5px; /* Adjust the left and right margins as needed */
    overflow: hidden; /* Add this to ensure the image doesn't overflow */
    transition: all 0.3s ease; /* Add this line to animate the changes */
}

.box-image {
    height: 100%;
    width: 100%; /* Add this to ensure the image covers the width */
    background-size: cover;
    background-position: center;
    border: 1px solid #364999;
}

.bottom-left-link {
    width: 90%;
    position: absolute;
    top: 50%; /* Center vertically */
    left: 0; /* Adjust this value to your preference */
    transform: translateY(-50%); /* Adjust for true vertical centering */
    color: black; /* Dark grey color for better contrast */
    text-decoration: none;
    background-color: transparent; /* Optional: Add a semi-transparent background */
    padding: 5px 10px; /* Optional: Add some padding */
    border-radius: 3px; /* Optional: Add rounded corners */
    font-size: 28px; /* Increase font size */
    font-family: sans-serif; /* Change the font */
    font-weight: bold; /* Make the text bolder */
    line-height: 1.2; /* Adjust line height to separate the words */
    word-break: break-word; /* Ensure long words break onto the next line */
}

/* Special style for Certificates link */
.box-image[style*="Certificate.jpg"] + .bottom-left-link {
    font-size: 22px; /* Smaller font size just for the Certificates link */
}
.box-image[style*="WelcomeKit.jpg"] + .bottom-left-link {
    font-size: 26px; /* Smaller font size just for the Certificates link */
}


.bottom-left-link:hover {
    transition: all 0.3s ease; /* Add this line to animate the changes */
}
/* .bottom-left-link:hover {
    transform: scale(0.5); /* Add this line to make the text a little bigger on hover 
} */

.bottom-left-link .fa-arrow-right {
    margin-left: 5px; /* Optional: Add space between text and icon */
}

.box:hover {
    transform: scale(1.05); /* Add this line to make the box a little bigger on hover */
}

/* footer */
/* footer */


 /* footer*/
 footer {
    width: 100vw;
    background-color: #f8f9fa;
    color:black;
    height: 300px;
    padding: 20px;
    clear: both;
}

.footerlogo {
    display: block;
    width: 240px;
    height: 85px;
    margin-right: auto;
    margin-bottom: 20px; /* Decreased margin-bottom */
    margin-left: 10px;
}



.logo-container p {
    max-width: 300px;
    margin-bottom: 30px;
}


footer .container {
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 20px;
}

footer .row {
    display: flex;
    align-items: flex-start;
    /* Aligns items to the start of the container */
    justify-content: space-between;
    /* Distributes space between items */

}

footer .Links {
    width: 100px;
    /* margin-left: auto; */
    display: flex;
    flex-direction: column;
    margin-left: 150px;
    margin-top: 25px;
    color: black
}

/* footer .links2 {
  
  margin-left: auto;
  display: flex;
  flex-direction: column;
  margin-left: 150px;
} */

footer h5 {

    font-weight: bold;
    margin-top: 0;
    font-size: 20px;
    /* Adjust this value to increase or decrease the font size */
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 55px;
    width: 80px;
}

footer li {
    margin-bottom: 10px;
}

footer a {
    color: black;
    text-decoration: none;
}

footer a:hover {
    color: #ccc;
}

footer .copyright {
    border-top: 1px solid #fff;
    display: flex;
    align-items: center;
    margin-left: 450px;
    margin-top: 60px;
    font-size: 14px;
    text-align: center;
    padding-top: 20px;
}

.contacts {
    margin-left: 200px;
    display: flex;
    flex-direction: column;
    margin-top: 23px;
}
.location-link {
    text-decoration: none;
    color: inherit;
}

.location-link:hover {
    color: #364999; /* Change this to your desired hover color */
}

/* ============ RESPONSIVE MEDIA QUERIES ============ */

/* Extra Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
    .toggle-menu, .hamburger {
        display: block;
        z-index: 3;
    }
    
    nav {
        padding: 10px 15px;
        height: 70px;
    }
    
    .logo {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 120px;
        height: 50px;
        margin: 0;
    }
    
    .logo img {
        width: 120px;
        height: auto;
        margin: 0;
    }
    
    .head {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        background: #cc373c;
        width: 280px;
        height: 100%;
        padding-top: 80px;
        z-index: 1;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .head a {
        padding: 20px;
        font-size: 1rem;
        color: white;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-content {
        position: static;
        width: 100%;
        min-width: auto;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.1);
        flex-direction: column;
    }
    
    nav input:checked ~ .head {
        transform: translateX(0);
    }
    
    .search-container {
        display: none;
    }
    
    .hero {
        height: 250px;
    }
    
    .slider1-container {
        width: 100%;
        height: auto;
        flex-direction: column;
        padding: 20px 10px;
    }
    
    .text {
        font-size: 1.5em;
        margin: 0 0 20px 0;
        text-align: center;
    }
    
    .slides1 {
        width: 95%;
        height: 180px;
        margin: 0 auto;
    }
    
    .centered-heading {
        margin: 20px 10px;
    }
    
    .centered-heading h2 {
        font-size: 1.5em;
    }
    
    .slider {
        padding: 0 10px;
    }
    
    .slide {
        width: 120px;
        margin: 0 5px;
    }
    
    .slide img {
        width: 80px;
        height: 80px;
    }
    
    .slide p {
        font-size: 12px;
    }
    
    .box-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .box {
        width: 100%;
        height: 200px;
        margin: 10px 0;
    }
    
    .bottom-left-link {
        font-size: 20px;
        left: 10px;
    }
    
    footer {
        height: auto;
        padding: 20px 10px;
    }
    
    footer .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footerlogo {
        width: 150px;
        height: auto;
        margin: 0;
    }
    
    footer .Links, .contacts {
        margin: 0;
        width: 100%;
    }
    
    footer ul {
        margin-top: 20px;
    }
    
    footer .copyright {
        margin: 30px 0 0 0;
        font-size: 12px;
        text-align: center;
    }
}

/* Small Mobile Devices (481px - 600px) */
@media (min-width: 481px) and (max-width: 600px) {
    .toggle-menu, .hamburger {
        display: block;
        z-index: 3;
    }
    
    nav {
        padding: 12px 20px;
        height: 75px;
    }
    
    .logo {
        position: absolute;
        top: 12px;
        left: 15px;
        width: 130px;
        height: 55px;
        margin: 0;
    }
    
    .logo img {
        width: 130px;
        height: auto;
        margin: 0;
    }
    
    .head {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        background: #cc373c;
        width: 300px;
        height: 100%;
        padding-top: 80px;
        z-index: 1;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .hero {
        height: 280px;
    }
    
    .slider1-container {
        width: 100%;
        height: auto;
        flex-direction: column;
        padding: 20px 15px;
    }
    
    .text {
        font-size: 1.8em;
        margin: 0 0 20px 0;
        text-align: center;
    }
    
    .slides1 {
        width: 90%;
        height: 200px;
        margin: 0 auto;
    }
    
    .box {
        width: calc(50% - 20px);
        height: 180px;
        margin: 10px;
    }
    
    .bottom-left-link {
        font-size: 18px;
    }
}

/* Small Tablets (601px - 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    nav {
        padding: 15px 25px;
        height: 80px;
    }
    
    .logo {
        width: 140px;
        height: 60px;
        margin-right: 30px;
    }
    
    .logo img {
        width: 140px;
        height: auto;
        margin-left: 10px;
    }
    
    .nav-link {
        margin-right: 40px;
        font-size: 18px;
    }
    
    .dropdown-content {
        min-width: 400px;
    }
    
    .hero {
        height: 350px;
    }
    
    .slider1-container {
        width: 100%;
        height: auto;
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .text {
        font-size: 2.2em;
        margin: 0 0 25px 0;
        text-align: center;
    }
    
    .slides1 {
        width: 80%;
        height: 220px;
        margin: 0 auto;
    }
    
    .centered-heading h2 {
        font-size: 1.8em;
    }
    
    .slide {
        width: 130px;
        margin: 0 8px;
    }
    
    .slide img {
        width: 90px;
        height: 90px;
    }
    
    .box {
        width: calc(50% - 20px);
        height: 200px;
        margin: 10px;
    }
    
    .bottom-left-link {
        font-size: 22px;
    }
    
    footer .row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    footer .Links, .contacts {
        margin: 0;
    }
    
    footer .copyright {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
}

/* Large Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    nav {
        padding: 18px 30px;
        height: 85px;
    }
    
    .logo {
        width: 160px;
        height: 65px;
        margin-right: 40px;
    }
    
    .logo img {
        width: 160px;
        height: auto;
        margin-left: 15px;
    }
    
    .nav-link {
        margin-right: 50px;
        font-size: 19px;
    }
    
    .dropdown-content {
        min-width: 450px;
    }
    
    .hero {
        height: 400px;
    }
    
    .slider1-container {
        width: 95%;
        height: 320px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .text {
        font-size: 2.5em;
        margin-left: 20px;
    }
    
    .slides1 {
        width: 500px;
        height: 230px;
        margin-left: 50px;
    }
    
    .slide {
        width: 140px;
        margin: 0 8px;
    }
    
    .slide img {
        width: 95px;
        height: 95px;
    }
    
    .box {
        width: calc(50% - 20px);
        height: 220px;
        margin: 10px;
    }
    
    .bottom-left-link {
        font-size: 24px;
    }
    
    footer .row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    footer .Links, .contacts {
        margin: 0;
    }
    
    footer .copyright {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
}

/* Small Laptops (1025px - 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
    nav {
        padding: 20px 35px;
        height: 88px;
    }
    
    .logo {
        width: 170px;
        height: 68px;
        margin-right: 50px;
    }
    
    .logo img {
        width: 170px;
        height: auto;
        margin-left: 15px;
    }
    
    .nav-link {
        margin-right: 60px;
        font-size: 19px;
    }
    
    .dropdown-content {
        min-width: 480px;
    }
    
    .hero {
        height: 420px;
    }
    
    .slider1-container {
        width: 1200px;
        height: 340px;
    }
    
    .text {
        font-size: 2.8em;
    }
    
    .slides1 {
        width: 600px;
        height: 240px;
        margin-left: 120px;
    }
    
    .slide {
        width: 145px;
        margin: 0 9px;
    }
    
    .slide img {
        width: 98px;
        height: 98px;
    }
    
    .box {
        width: calc(33.333% - 25px);
        height: 230px;
        margin: 12px;
    }
    
    .bottom-left-link {
        font-size: 26px;
    }
    
    footer .Links {
        margin-left: 100px;
    }
    
    .contacts {
        margin-left: 150px;
    }
    
    footer .copyright {
        margin-left: 300px;
    }
}

/* Large Laptops and Small Desktops (1367px - 1920px) */
@media (min-width: 1367px) and (max-width: 1920px) {
    nav {
        padding: 20px;
        height: 90px;
    }
    
    .logo {
        width: 180px;
        height: 70px;
        margin-right: 60px;
    }
    
    .logo img {
        width: 170px;
        height: auto;
        margin-left: 15px;
    }
    
    .nav-link {
        margin-right: 70px;
        font-size: 20px;
    }
    
    .hero {
        height: 450px;
    }
    
    .slider1-container {
        width: 1349px;
        height: 350px;
    }
    
    .text {
        font-size: 3em;
        margin-left: 10px;
    }
    
    .slides1 {
        width: 700px;
        height: 252px;
        margin-left: 170px;
    }
    
    .slide {
        width: 150px;
        margin: 0 10px;
    }
    
    .slide img {
        width: 100px;
        height: 100px;
    }
    
    .box {
        width: calc(33.333% - 30px);
        height: 241.64px;
        margin: 15px 7.5px;
    }
    
    .bottom-left-link {
        font-size: 28px;
    }
}

/* Large Desktops (1921px and above) */
@media (min-width: 1921px) {
    nav {
        padding: 25px;
        height: 100px;
    }
    
    .logo {
        width: 200px;
        height: 80px;
        margin-right: 80px;
    }
    
    .logo img {
        width: 190px;
        height: auto;
        margin-left: 20px;
    }
    
    .nav-link {
        margin-right: 80px;
        font-size: 22px;
    }
    
    .dropdown-content {
        min-width: 600px;
    }
    
    .hero {
        height: 500px;
    }
    
    .slider1-container {
        width: 1600px;
        height: 400px;
        margin: 0 auto;
    }
    
    .text {
        font-size: 3.5em;
        margin-left: 30px;
    }
    
    .slides1 {
        width: 800px;
        height: 300px;
        margin-left: 200px;
    }
    
    .centered-heading h2 {
        font-size: 2.5em;
    }
    
    .slide {
        width: 180px;
        margin: 0 15px;
    }
    
    .slide img {
        width: 120px;
        height: 120px;
    }
    
    .slide p {
        font-size: 16px;
    }
    
    .box-container {
        max-width: 1500px;
    }
    
    .box {
        width: calc(33.333% - 40px);
        height: 280px;
        margin: 20px 10px;
    }
    
    .bottom-left-link {
        font-size: 32px;
        padding: 8px 15px;
    }
    
    footer {
        height: 350px;
        padding: 30px;
    }
    
    .footerlogo {
        width: 280px;
        height: 100px;
    }
    
    footer .Links {
        margin-left: 200px;
    }
    
    .contacts {
        margin-left: 250px;
    }
    
    footer .copyright {
        margin-left: 600px;
        font-size: 16px;
    }
}

/* Landscape orientation for tablets */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        height: 300px;
    }
    
    .slider1-container {
        height: 280px;
    }
    
    .slides1 {
        height: 200px;
    }
    
    .box {
        height: 180px;
    }
    
    .bottom-left-link {
        font-size: 20px;
    }
}