:root {
  --primary-color: #12ac8e;
  --primary-color-dark: #0d846c;
  --primary-color-light: #e9f7f7;
  --secondary-color: #fb923c;
  --text-dark: #333333;
  --text-light: #767268;
  --white: #ffffff;
  --max-width: 1200px;
}



body {
   

  font-family: 'Swis721 Th BT', sans-serif;

    background: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333;
  }
  
  
  
 
  /* Hamburger Menu Styles */


  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #4CAF50, #81C784); /* Green Gradient */
    color:#12ac8e;;
    padding: 80px 20px;
    text-align: center;
    background-color: #74EBD5;
background-image: linear-gradient(90deg, #74EBD5 0%, #9FACE6 100%);

  }
  
  .hero h1 {
    font-size: 3.5em;
  }
  
  .hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
  }
  
  .hero .btn-primary {
     background-color: #12ac8e;
    
    color: black;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1em;
    transition: background-color 0.3s;
  }
  
  .hero .btn-primary:hover {
    background-color: #FF9800; /* Orange */
  }
  
  /* Video Section */
  .video-section {
    padding: 60px 20px;
    text-align: center;
  }
  
  .video-section h2 {
    font-size: 2.5em;
    color: #12ac8e;
 
    ;
  }
  
  .video-section p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
  }
  
  .video-container {
    margin: 0 auto;
  }
  
  .video-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* About Us Section */
  .about-us {
    padding: 80px 20px;
    text-align: center;
  }
  
  .about-us h2 {
    font-size: 2.5em;
    color: #12ac8e;;
    margin-bottom: 20px;
  }
  
  .about-us p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
  }
  
  .core-values {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .value-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 30%;
    margin: 10px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .value-item:hover {background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    
    transform: translateY(-10px);
  }
  
  .value-item h3 {
    color: #12ac8e;;
  }
  
  .value-item p {
    color:black;
  }
  
  /* Why SS Medical Section */
  .why-ss-medical {
    padding: 80px 20px;
    text-align: center;
    background: beige;
    
    
  }
  
  .why-ss-medical h2 {
    font-size: 2.5em;
    color: #12ac8e;
  }
  
  .benefits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .benefit-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 20%;
    margin: 20px 0;
    transition: transform 0.3s ease;
    height:328px;
  }
  
  .benefit-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    height: 220px;
    width: 270px;
  }
  
  .benefit-item h3 {
    color: #12ac8e;
    margin-bottom: 13px;
  }
  
  .benefit-item p {
    color: black;
  }
  
  .benefit-item:hover {
    transform: scale(1.05);
  }
  
  /* FAQ Section */
  .faq {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .faq h2 {
    font-size: 2.5em;
    color: #12ac8e;
  }
  
  .faq-item {
    margin: 20px 0;
  }
  
  .faq-btn {
    background-color:#12ac8e;

    color: white;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 1.2em;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .faq-btn:hover {
    background-color: #388E3C; /* Darker Green */
  }
  
  .faq-content {
    display: none;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 10px;
  }
  
  .faq-content p {
    color: #666;
  }
  
  /* Apply Now Form */
  .apply-now {
    padding: 60px 20px;
    text-align: center;
  }
  
  .apply-now form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 88%;
    max-width: 650px;
    margin: 0 auto;
  }
  
  .apply-now input, .apply-now textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
  }
  
  .apply-now button[type="submit"] {
    background-color:#12ac8e;
    
    color: black;
    padding: 12px 30px;
    font-size: 1.1em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .apply-now button[type="submit"]:hover {
    background-color: #FF9800;
  }



  .footer {
    background-color: whitesmoke;
    padding: 2rem 1rem; /* Add padding for better spacing */
  }
  
  .footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid layout */
    gap: 2rem;
  }
  
  .footer__col {
    text-align: left; /* Align text to the left */
  }
  
  .footer__col h3, .footer__col h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-color);
  }
  
  .footer__col h3 span {
    color: var(--secondary-color);
  }
  
  .footer__col h4 {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .footer__col p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .footer__col p:hover {
    color: var(--primary-color);
  }
  
  .footer__col i {
    color: var(--primary-color);
    margin-right: 0.5rem;
  }
  
  .footer__bar {
    background-color: var(--primary-color);
    padding: 1rem 0;
  }
  
  .footer__bar__content {
    max-width: var(--max-width);
    margin: auto;
    padding: 0 1rem;
    text-align: center;
    color: var(--white);
  }
  
  .footer__socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--white);
    justify-content: center;
  }
  
  .footer__col.map iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 768px) {
    .footer__col h3, .footer__col h4 {
      text-align: center; /* Center text on smaller screens */
    }
    .footer__col.map iframe {
      height: 250px;
    }
  }
  
  @media (max-width: 480px) {
    .footer__bar__content p {
      font-size: 0.8rem;
    }
  }
  
  


  
  





  
  
 /* Hero Section */
.hero {
  background-image: url("qwerty.jpeg"); /* Add your image path here */
  background-size: cover;
  background-position: center center; /* Ensure the image is centered */
  background-repeat: no-repeat;
  color: white;
  padding: 0; /* Remove previous padding to control height directly */
  height: 100vh; /* Set the height to 80% of the viewport height, or adjust as needed */
  text-align: center;
  position: relative;
  overflow: hidden;
  
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(116, 235, 213, 0.5), rgba(159, 172, 230, 0.5));
  animation: fadeEffect 10s ease-in-out infinite;
  z-index: 1; /* Places the gradient above the image but below text */
}

.hero .hero-content {
  position: relative;
  z-index: 2; /* Ensures text is above the gradient */
  margin-top: 30PX;
}

.hero h1 {
  font-size: 3.5em;
  animation: slideInFromTop 1s ease-out;
  margin-top: 230PX;

}

.hero p {
  font-size: 1.4em;
  margin-bottom: 30px;
  animation: slideInFromBottom 1s ease-out;
  font-weight: bolder;
  
}

.hero .btn-primary {

  background-color: #12ac8e;
  color: black;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1em;
  transition: background-color 0.3s;
 margin-top: auto;
 font-weight: bolder;

}

.hero .btn-primary:hover {
  background: linear-gradient(90deg, #f25a2b, #ff7f50)
}

/* Keyframe Animations */
@keyframes fadeEffect {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes slideInFromTop {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

  


/* Add this to the end of your CSS file */

/* General responsiveness for smaller screens */
@media screen and (max-width: 1200px) {
  .core-values, .benefits {
    flex-wrap: wrap;
    justify-content: center;
  }

  .value-item, .benefit-item {
    width: 45%; /* Adjust width for better alignment */
  }
}

@media screen and (max-width: 992px) {
  header .logo img {
    height: 60px;
    width: 60px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  .hero h1 {
    font-size: 2.5em;
  }

  .hero p {
    font-size: 1em;
  }

  .video-container iframe {
    width: 100%;
    height: auto;
  }

  .value-item, .benefit-item {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 0.9em;
  }

  .apply-now form {
    width: 95%;
    padding: 20px;
  }

  .faq-btn {
    font-size: 1em;
    padding: 10px;
  }
}

@media screen and (max-width: 576px) {
  header {
    padding: 10px 0;
  }

  header .logo img {
    height: 50px;
    width: 50px;
  }

  .hero h1 {
    font-size: 2em;
    font-weight: bolder;
  }

  .hero p {
    font-size: 1.4em;
    font-weight: bolder;
  
  }

  .hero .btn-primary {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #12ac8e;
   
  }

  .about-us p, .faq-content p, .why-ss-medical p {
    font-size: 0.9em;
  }

  .apply-now button[type="submit"] {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  footer {
    font-size: 0.8em;
  }
}

nav {
  
  padding: 5px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 1;
}
nav .logo {
  display: flex;
  align-items: center;
}
nav .logo img {
  height: 75px;
  width: auto;
  margin-right: 10px;
}
nav .logo h1 {
  font-size: 1.1rem;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Swis721 Th BT', sans-serif;
}

nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 1.5rem;
  font-family: 'Swis721 Th BT', sans-serif;
}
nav ul li a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: bolder;
  padding: 4px 8px;
  border-radius: 5px;
  font-family: 'Swis721 Th BT', sans-serif;
}

nav ul li a:hover {
  background-color: #f5f5f5;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: #1f1f1f;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  position: absolute;
  top: 0;
  left: -60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: rgba(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 2;
}
.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: #12ac8e;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
  font-family: 'Swis721 Th BT', sans-serif;
}

.menubar ul li a:hover {
  background-color: #f5f5f5;
}
@media screen and (max-width: 790px) {
  .hamburger {
    display: block;
  }
  nav ul {
    display: none;
  }
  
}

