/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    color: #333333;
    line-height: 1.6;
  }
  
  /* Hero Section */
.hero {
  height: 60vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), 
              url('../images/10.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  animation: fadeInUp 1s ease-in-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #eeeeee;
  animation: fadeInUp 1.5s ease-in-out;
}
  
  /* Keyframes for Hero Section Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Section Styling */
  .services-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 40px;
    background-color: #2e5ba8;
   
  }
  
  .container {
    display: flex;
    gap: 50px;
  }
  
  /* Left Text Content */
  .text-content {
    flex: 1 1 60%;
    color: #ffffff;
  }
  
  .text-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .text-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #f9fcff;
    line-height: 1.8;
    max-width: 500px;
    font-weight: 500;
  }
  
  /* Services Grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    
  }
  
  /* Service Items */
  .service-item {
    background: linear-gradient(135deg, #7d1919, #0f4686);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    text-decoration: none;
  }
  
  .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.5);
  }
  
  /* Icon Styling */
  .service-item .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
  
  }
  
  .service-item:hover .icon {
    transform: scale(1.1);
  }
  
  /* Text Inside Cards */
  .service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
  }
  
  .service-item p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
  }
  
  /* Individual Icon Backgrounds */
  .icon.neuro {
    background-image: url('../images/brain.svg');
  }
  
  .icon.cardiac {
    background-image: url('../images/heart.png');
  }
  
  .icon.vascular {
    background-image: url('../images/vascular.png');
  }
  
  .icon.aortic {
    background-image: url('../images/aortic.png');
  }
  
  .icon.liver {
    background-image: url('../images/liver.png');
  }
  
  /* Right Image Styling */
  .image-content {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
   margin-top: 30vh;
  }
  
  .image-content img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
  }
  
  .image-content img:hover {
    transform: scale(1.05);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.5);
  }
  
  
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2.5rem; /* Smaller font size for smaller screens */
    }
    
    .hero-content p {
      font-size: 1rem; /* Smaller font size for smaller screens */
    }
    
    .container {
      flex-direction: column; /* Default to column layout for smaller screens */
    }
    
    /* Left Text Content */
    .text-content {
      flex: 1 1 60%;
      color: #ffffff;
    }
    
    .text-content h1 {
      font-size: 2rem;
      margin-bottom: 20px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    
    .text-content p {
      font-size: 1rem;
      margin-bottom: 40px;
      color: #f9fcff;
      line-height: 1.8;
      max-width: 500px;
      font-weight: 500;
    }
    
    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns:auto ;
      gap: 30px;
    }
    #doctor{
      display: none;
    }
  }
  /* CIC Section Styles */
  .cic-section {
    background: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
    color: #333;
  }
  
  .cic-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: url('../images/14.jpg') no-repeat fixed center/cover;
    height: 350px;
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 20px;
    color: rgb(255, 255, 255); /* Ensures text stands out */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
  }
  
  .cic-info {
    text-align: center;
  }
  
  .cic-info h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .cic-info p {
    font-size: 2rem;
    line-height: 1.5;
  }
  
  /* Content Section */
  .cic-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
  }
  
  .cic-education,
  .cic-hours,
  .cic-appointment {
    flex: 1 1 300px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .cic-education h2,
  .cic-hours h2,
  .cic-appointment h2 {
    font-size: 1.5rem;
    color: #0078ff;
    margin-bottom: 15px;
  }
  
  .cic-education ul {
    list-style: disc;
    text-align: left;
    padding-left: 20px;
  }
  
  .cic-education ul li {
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  .cic-hours p,
  .cic-appointment p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .btn {
    display: inline-block;
    background: #0078ff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #0056b3;
  }
  /* Responsive Styles */
  @media only screen and (max-width: 768px) {
    /* Header Section */
    .cic-header {
      height: 200px; /* Reduce height for smaller screens */
      padding: 10px; /* Adjust padding for compact layout */
      text-align: center;
    }
  
    .cic-info h1 {
      font-size: 1.8rem; /* Reduce title size */
    }
  
    .cic-info p {
      font-size: 0.9rem; /* Reduce paragraph size */
    }
  
    /* Content Section */
    .cic-content {
      flex-direction: column; /* Stack content vertically */
      gap: 20px; /* Add spacing between sections */
    }
  
    .cic-education,
    .cic-hours,
    .cic-appointment {
      flex: 1 1 100%; /* Make sections full-width */
      padding: 15px; /* Reduce padding for smaller screens */
    }
  
    .cic-education ul li,
    .cic-hours p,
    .cic-appointment p {
      font-size: 0.9rem; /* Reduce font size for better readability */
    }
  
    .btn {
      font-size: 0.9rem; /* Adjust button text size */
      padding: 8px 15px; /* Compact buttons */
    }
  }
  
  @media only screen and (max-width: 576px) {
    /* Header Section */
    .cic-header {
      height: 180px; /* Further reduce header height */
      padding: 10px;
    }
  
    .cic-info h1 {
      font-size: 1.5rem; /* Smaller title size */
    }
  
    .cic-info p {
      font-size: 0.8rem; /* Smaller paragraph size */
    }
  
    /* Content Section */
    .cic-content {
      gap: 15px; /* Reduce spacing between sections */
    }
  
    .cic-education,
    .cic-hours,
    .cic-appointment {
      padding: 10px; /* Compact padding */
    }
  
    .cic-education ul li,
    .cic-hours p,
    .cic-appointment p {
      font-size: 0.8rem; /* Smaller font for list and text */
    }
  
    .btn {
      font-size: 0.8rem; /* Adjust button size */
      padding: 6px 12px;
    }
  }
  