
        
     
        
body {
       /* --color-white: #FFFFFF;
    --light-color: #F8F9FA; */
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        
.whatsapp_chat_container {
height:auto;background:
transparent;position:
fixed;bottom:10px;right:10px;z-index:99999;
}

.whatsapp_chat_container .whatsapp_chat_options {
    display: none;
}

.whatsapp_chat_container .whatsapp_chat_btn {
height:60px;width:60px;border-radius:50%;background:#25D366;transition: 0.5s;cursor:pointer;;
-webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
}

.whatsapp_chat_container .whatsapp_chat_btn i{
  font-size:25px;transition: 0.5s
}

.whatsapp_chat_container:hover .whatsapp_chat_options {
    display: block;

}

.whatsapp_chat_container:hover .whatsapp_chat_btn {
height:0;width:0;

}

.whatsapp_chat_container:hover .whatsapp_chat_btn i {
  font-size:0;

}        


#apply-button-floating {
  position: fixed;
  bottom: 100px;
  right: 10px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  text-decoration: none;
  opacity: 1;
  transition: background-color 0.3s ease;
}

#apply-button-floating.is-over-footer {
  background-color: #fff; 
  color: #333;
}

  .header-top {
        background-color: var(--primary-color); /* Dark blue background */
        color: var(--color-white);
        padding: 20px 0; /* Vertical padding */
        position: sticky; /* Makes it stick */
        top: 0; /* Sticks to the top */
        z-index: 1050; /* Higher than navbar z-index (1040 by default for Bootstrap) */
        box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Subtle shadow */
    }


    .header-logo img {
        height: 80px; /* Adjust logo height as needed */
        width: auto;
        object-fit: cover;
      
    }

    .college-info h1 {
        font-size: 2.2rem; /* College name size */
        font-weight: 700; /* Bold */
        margin-bottom: 0;
        line-height: 1.2;
    }

    .college-info p {
        font-size: 1.1rem; /* Motto size */
        font-style: italic;
        margin-top: 5px;
        line-height: 1;
        opacity: 0.9; /* Slightly less opaque */
    }

    /* Responsive adjustments */
    @media (max-width: 991.98px) { /* Medium devices (md) and smaller */
        .header-top {
            padding: 8px 0;
        }
        .header-logo img {
            height: 60px; /* Smaller logos on tablets */
        }
        .college-info h1 {
            font-size: 1.8rem;
        }
        .college-info p {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 767.98px) { /* Small devices (sm) and smaller */
        .header-top {
            padding: 5px 0;
        }
        /* .header-logo {
            display: none; /* Hide logos on very small screens to save space */
        /* } */ 
        .college-info {
            text-align: center !important; /* Center text when logos are hidden */
            flex-grow: 1; /* Allow it to take full width */
        }
        .college-info h1 {
            font-size: 1.5rem;
        }
        .college-info p {
            font-size: 0.8rem;
        }
        .header-top .d-flex.justify-content-center {
            justify-content: center !important; /* Ensure content is centered */
        }
    } 

        
  /* Base Navbar Styles */
.navbar {
    background: var(--secondary-color) !important; /* Your brand color */
    padding-top: 0.75rem; /* A bit more padding for visual comfort */
    padding-bottom: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.navbar .nav-item{margin-left:5px;}

.navbar .nav-link {
    color: var(--color-white); /* White text for links */
    font-weight: 500;
    padding: 0.5rem 1rem; /* Adjust padding for links */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    border-radius: 0.3rem; /* Slightly rounded corners for links */
}

.navbar .nav-link:hover {
    color: var(--primary-color); /* A slightly different hover color */
    background-color: rgba(255, 255, 255, 0); /* Slight white overlay on hover */
}

/* Active Nav Link Styling */
.navbar .nav-link .active {
    background: var(--primary-color) !important; /* Your active link background color */
    color: var(--color-white) !important; /* Ensure active link text is white */
    font-weight: 600; /* Make active link text bolder */
}

/* Navbar Toggler (Hamburger Icon) */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5); /* White border for toggler */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    /* Ensure the hamburger icon is white/visible on your background */
}

/* --- Responsive Adjustments (using Bootstrap Breakpoints) --- */

/* Styles for Extra Small to Medium Devices (less than 992px) */
@media (max-width: 991.98px) {
    .navbar {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .navbar-collapse {
        /* This ensures the collapsed menu takes full width and has background */
        background-color: var(--color-white); /* Match navbar background */
        border-top: 1px solid rgba(255, 255, 255, 0.2); /* Separator line */
        margin-top: 0.5rem; /* Space between toggler and menu */
        padding-bottom: 1rem; /* Padding at the bottom of the collapsed menu */
    }

    .navbar-nav {
        /* Remove auto margins on small screens to make links left-aligned */
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%; /* Ensure menu takes full width */
    }

    .navbar-nav .nav-item {
        margin-bottom: 0.25rem; /* Space between stacked nav items */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none; /* No border on the last item */
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1.5rem; /* Larger padding for touch targets */
        text-align: left; /* Align text to the left in collapsed menu */
    }

    .navbar-nav .nav-link.active {
        background-color: var(--primary-color) !important;
        border-radius: 0; /* Remove border-radius when stacked */
    }
}

/* Optional: Further refinement for extra small devices (less than 576px) */
@media (max-width: 575.98px) {
    .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
        
     
.hero-section {
            background-color:var(--primary-color);
            color: white;
            padding: 50px 0;
            font-weight:bolder;
            margin-bottom: 30px;
            text-align:center;
        };      
      
         .image-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 10px;
  }

  .image-container img {
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    object-position: top center;
  }

  /* Single image styling */
  .image-container img:only-child {
    flex: 1 1 100%;
    height: 400px;
    width: 100%;
  }

  /* Two images styling */
  .image-container img:nth-child(1):nth-last-child(2),
  .image-container img:nth-child(2):nth-last-child(1) {
    height: 300px !important;
    width: calc(50% - 5px);
    flex: 1 1 calc(50% - 5px);
   
  }

  /* Three or more images styling */
  .image-container img:nth-child(1):nth-last-child(n+3),
  .image-container img:nth-child(2):nth-last-child(n+2),
  .image-container img:nth-child(3):nth-last-child(n+1) {
    height: 300px !important;
    width: calc(33.333% - 7px);
    flex: 1 1 calc(33.333% - 7px);
  }
  @media (max-width: 768px) {
  .image-container {
    flex-direction: column;
    align-items: stretch;
  }

  .image-container img {
    width: 100% !important;
    height: auto !important;
    flex: 1 1 100% !important;
  }
}
    

    
      /* Footer Styles */
        footer {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin-top: 50px;
           
        }
        
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
    
        
        .contact-info {
            font-size: 1.2rem;
            margin: 20px 0;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }
        
        .social-icons a {
            color: var(--color-white);
            font-size: 1.8rem;
            transition: transform 0.3s;
        }
        
        .social-icons a:hover {
            transform: scale(1.1);
        }
        
        .copyright {
            font-size: 1rem;
            margin-top: 20px;
            color: #ffffcc;
        }
        
        /* Additional Footer Enhancements */
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 20px 0;
        }
        
        .footer-links a {
            color: var(--color-white);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        
       
        
      
        
        .footer-columns {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
     
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-columns {
                flex-direction: column;
                text-align: center;
            }
            
           
            .footer-links {
                gap: 15px;
            }
            }

            hr {
    margin: 0.3rem 0 !important;

}

         .section-title {
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 10px;
        }

         .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
