.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 5px;
}

.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 60px;
  margin-right: 6px;
}
.features .feature-box h3 {
  font-size: 18px;
  color: #012970;
  font-weight: 700;
  margin: 0;
}
.features .feature-icons {
  margin-top: 20px;
}
.responsive-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.text-container {
    flex: 1;
    max-width: 70%;
}
.text-container h2 {
    font-size:24px;
}


.cta-button {
    display: inline-block;
    padding: 10px 60px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .responsive-section {
        flex-direction: column;
        text-align: center;
    }

    .text-container, .button-container {
        max-width: 100%;
        margin-bottom: 10px;
    }
}
 .gallery-container {
      max-width: 1000px;
      padding: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s ease;
      flex: 1 1 calc(33.333% - 10px); /* Three items per row */
      max-width: calc(33.333% - 10px);
    }

    .gallery-item:hover {
      transform: scale(1.02);
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }


    /* Responsive Styles */
    @media (max-width: 768px) {
      .gallery-item {
        flex: 1 1 calc(50% - 10px); /* Two items per row on tablets */
        max-width: calc(50% - 10px);
      }
    }

    @media (max-width: 480px) {
      .gallery-item {
        flex: 1 1 100%; /* Single column on mobile */
        max-width: 100%;
      }
    }
 
.sticky-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Space between icons */
    padding: 10px;
    background: #ffde21; /* Background color (optional) */
    border-radius: 5px; /* Rounded corners (optional) */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Shadow for better visibility (optional) */
}

/* Icon link styling */
.icon-link {
    display: block;
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */
}

.icon-link img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain; /* Ensure the icon fits within the container */
}

/* Hover effect */
.icon-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
}
#popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden; /* Initially hidden */
    opacity: 0;
    transition: visibility 0s, opacity 0.5s;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-image {
    width: 100%;
    border-radius: 10px;
}

.popup h2 {
    font-size: 1.2rem;
    margin: 15px 0;
}

.highlight-text {
    color: #ff6347; /* Tomato red */
    font-weight: bold;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ff6347, #ffd700); /* Gradient color */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counseling-btn {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.counseling-btn:hover {
    background-color: #218838;
}

/* Close button styling */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Responsive styling */
@media (max-width: 600px) {
    .popup-content {
        width: 90%;
    }
    .popup h2 {
        font-size: 1rem;
    }
    .counseling-btn {
        font-size: 0.9rem;
    }
}
 .call-widget {
    position: fixed;
    bottom: 20px; /* Distance from the bottom of the viewport */
    left: 20px;   /* Distance from the left of the viewport */
    z-index: 1000;
    cursor: pointer;
    text-align: center;
}

.call-button {
    display: block;
    background-color: #007bff; /* Button color */
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.call-button img {
    width: 50px; /* Adjust size as needed */
    height: auto;
}
   .grid-container {
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            max-width: 1200px;
            padding: 20px;
            width: 100%;
        }

        /* Styling for each card/block */
        .grid-item {
            background-color: #ffffff;
            border: 2px solid #4CAF50;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 30px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        /* Hover effect */
        .grid-item:hover {
            background-color: #4CAF50;
            color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        /* Text styling */
        .grid-item h3 {
            margin: 0;
            font-size: 18px;
        }
