/* General Styles */
body, html {
    margin: 0;
    padding: 0;
   
    
}


.topbar {
    width: 100%;
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    text-align:center;
    background: linear-gradient(to left, gray, #b38942);
    border: none;
}
.topbar-text {
    font-weight: bold;
}

.apply-link {
    color: black; /* Gold-like color for link */
    text-decoration: underline;
    font-weight: bold;
    margin-left: 5px;
}

.apply-link:hover {
    color: #a9803d; /* Darker shade on hover */
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

/* ------------------ General ------------------ */
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}



/* Breadcrumbs */
.breadcrumbs {
    padding: 10px;
    background-color: #f9f9f9;
    margin: 20px 0;
    font-size: 14px;
    
}

.breadcrumbs a {
    text-decoration: none;
    color: black;
}

.breadcrumbs a:hover {
    background-color: black;
    color: white;
    padding: 5px;
}


/* General Styles */
.page-cover {
    display: flex;
    align-items: center;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: auto;
    color: white;
    padding-left: 20px; /* Padding for large screens */
}

/* Desktop Cover */
@media (min-width: 992px) {
    .page-cover {
        background-image: url("https://course.maesthetics.pk/images/desktop-cover.jpg");
        height: 80vh;
        background-repeat: no-repeat;
        background-size: auto; /* Ensures the image is displayed in its original dimensions */
        background-position: right;
        width: 100%;
        justify-content: flex-start; /* Align content to the left */
    }
    
    
    .cover-heading {
        font-size: 46px;
        font-weight: bold;
       
        color: white;
        margin-bottom: 10px;
    }
    
    .cover-description {
        font-size: 25px;
        margin-top: 10px;
        text-align:center;
        color: white;
    }

    .verification-form {
        margin-top: 15px;
    }
    
    .search-field {
        font-size: 18px;
        padding: 15px;
    }

    .search-btn {
        font-size: 18px;
        padding: 12px;
    }
    
}

/* Mobile Cover */
@media (max-width: 991px) {
    .page-cover {
        background-image: url("https://course.maesthetics.pk/images/mobile-cover.jpg");
        height: 60vh;
        align-items: flex-end;
        justify-content: center; /* Centers content for mobile */
        padding-left: 0;
    }
    .content {
       
        width: 100%;
        padding: 0 0px;
        margin-bottom: 70px;
    }
}

.cover-heading {
    font-weight: bold;
    
    font-size: 30px;
}

.cover-description {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}

/* Form Styling */
.verification-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    padding: 10px;
}

.input-container {
    display: flex;
    align-items: center;
    width: 100%;
    border: 2px solid white;
    border-radius: 30px;
    overflow: hidden;
}

.search-field {
    width: 100%;
    padding: 10px;
    background-color: transparent;
    color: white;
    border: none;
    outline: none;
}

.search-field::placeholder {
    color: white;
}

.search-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.notice {
    font-size: 15px;
    color: #ffcc00;
    margin-top: 10px;
    text-align: center;
    text-decoration:underline;
}


/* STYLES SPECIFIC TO FOOTER  */
.footer {
  width: 100%;
  position: relative;
  height: auto;
  background-color: black;
}
.footer .col {
  width: 190px;
  height: auto;
  float: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 0px 20px 20px 20px;
}
.footer .col h1 {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 15px;
  line-height: 17px;
  padding: 20px 0px 5px 0px;
  color: #fff;
  font-weight: black;
  text-transform: uppercase;
  letter-spacing: 0.250em;
  text-align: left;
}
.footer .col ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer .col ul li {
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  font-weight: bold;
  padding: 5px 0px 5px 0px;
  cursor: pointer;
  transition: .2s;
  -webkit-transition: .2s;
  -moz-transition: .2s;
}
.social ul li {
  display: inline-block;
  padding-right: 5px !important;
  font-size:20x;
}

.footer .col ul li:hover {
  color: #ffffff;
  transition: .1s;
  -webkit-transition: .1s;
  -moz-transition: .1s;
}
.clearfix {
  clear: both;
}
@media only screen and (min-width: 1280px) {
  .contain {
    width: 1200px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1139px) {
  .contain .social {
    width: 1000px;
    display: block;
  }
  .social h1 {
    margin: 0px;
  }
}
@media only screen and (max-width: 950px) {
  .footer .col {
    width: 33%;
  }
  .footer .col h1 {
    font-size: 14px;
  }
  .footer .col ul li {
    font-size: 13px;
  }
}
@media only screen and (max-width: 500px) {
    .footer .col {
      width: 50%;
    }
    .footer .col h1 {
      font-size: 14px;
    }
    .footer .col ul li {
      font-size: 13px;
    }
}
@media only screen and (max-width: 340px) {
  .footer .col {
    width: 100%;
  }
}


.form-control{
    padding:20px;
}

.accreditation-partners {
    text-align: center;
  background:#eee;
    padding: 20px;
}

.accreditation-partners h2 {
    font-size: 1.8rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform:;
    font-family: 'Montserrat';
}

.accreditation-partners .accreditation-image {
    width: 80%;
    max-width: 600px;
    height: auto;
}

@media (max-width: 768px) {
    .accreditation-partners h2 {
        font-size: 1.5rem;
    }

    .accreditation-partners .accreditation-image {
        width: 90%;
    }
}

.cover2 .coverimage {
    width: 100%;
    
    height: auto;
}

.courses{
    
    padding-top:30px;
    padding-bottom:30px;
    
}

.courses h2{
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform:;
    text-align:center;
    font-family: 'Montserrat';
}

div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
  font-family: 'Montserrat' font-weight:bold;
}



* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
    padding:;
   
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/* Base styles for the responsive block */
.responsive {
    position: relative;
    background-color: #f0f0f0; /* Initial background color */
    width: 49.99999%; /* Adjusts on screen size */
    margin: 6px 0;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

/* Overlay to create the hover effect */
.responsive .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Initial transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    opacity: 0; /* Hidden by default */
}

/* Text displayed on hover */
.responsive .details-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
}

/* Hover effect for the entire block */
.responsive:hover .overlay {
    background-color: rgba(0, 0, 0, 0.9); /* Dark background on hover */
    opacity: 1; /* Show overlay */
}

.responsive:hover .details-text {
    opacity: 1; /* Show text on hover */
}

/* Responsive adjustments */
@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}


.registration-container {
  
    margin: 0 auto;
    padding: 5px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
}



p {
    text-align: left;
    
}

iframe {
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    border: 1px solid #ccc;
    overflow:hidden;
}


