@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.dropdown-menu {
    display: none; /* Flex layout for dropdown */
    flex-wrap: wrap;
    width: 900px; /* Fixed width for dropdown */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

html{
    overflow-x: hidden;
}

body{
    font-family: "Poppins", serif;
}

.dropdown-menu.show {
    display: flex; /* Show when 'show' class is added */
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    flex: 1 1 30%; /* 3 items per row (adjust flex basis to 30%) */
    gap: 15px;
    padding: 15px;
    margin: 5px;
    border-radius: 8px;
    background-color: #f8f9fa; /* Default background color */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dropdown-item:hover {
    background-color: #e9ecef; /* Light hover effect */
    transform: translateY(-3px);
}

.dropdown-item i {
    font-size: 24px;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
}

/* Custom Colors for Icons */
.dropdown-item:nth-child(1) i {
    background-color: #007bff; /* Blue */
}
.dropdown-item:nth-child(2) i {
    background-color: #28a745; /* Green */
}
.dropdown-item:nth-child(3) i {
    background-color: #ffc107; /* Yellow */
}
.dropdown-item:nth-child(4) i {
    background-color: #17a2b8; /* Teal */
}
.dropdown-item:nth-child(5) i {
    background-color: #dc3545; /* Red */
}
.dropdown-item:nth-child(6) i {
    background-color: #6c757d; /* Gray */
}

.dropdown-item h6 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.dropdown-item small {
    font-size: 12px;
    color: #6c757d;
}

.dropdown-item.selected {
    background-color: #007bff !important;
    color: #fff !important;
    transform: none; /* Reset hover effect for selected */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        width: 100%; /* Full width for smaller screens */
        padding: 10px; /* Adjust padding for smaller screens */
    }
    .dropdown-item {
        flex: 1 1 100%; /* Single column on smaller screens */
        padding: 10px; /* Adjust padding for smaller screens */
        margin: 5px 0; /* Adjust margin for single column layout */
    }
}

@media (max-width: 480px) {
    .dropdown-item {
        flex: 1 1 100%; /* Ensure single column for very small screens */
        padding: 8px; /* Smaller padding for very small screens */
    }
}



.logo img{
    width: 80px;
    height: 50px;
}


















/* search --------------------------------------------------------*//* Modern Search Form Styles */
.form-control {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px; /* Rounded input */
    padding: 8px 25px; /* Slightly larger padding for comfort */
    font-size: 16px; /* Larger font size for readability */
    background-color: #f9f9f9; /* Light background color for input */
    border: 1px solid #ddd; /* Soft border color */
    transition: all 0.3s ease-in-out; /* Smooth transitions for focus */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Light shadow for depth */
}

/* Input Field Focus Effect */
.form-control:focus {
    outline: none; /* Remove the default outline */
    border-color: #0D3153; /* Primary color for border */
    box-shadow: 0 0 15px rgba(112, 192, 71, 0.3); /* Subtle green glow */

}

/* Search Button Styles */
.btn-outline-primary {
    padding: 8px 30px; /* Comfortable padding */
    font-size: 16px; /* Aligned font size with input */
    background-color: #0D3153; /* Primary color */
    color: white; /* White text color */
    border: 1px solid #0D3153; /* Matching border */
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px; /* Rounded input */
    margin-left: -10px;
}

.btn-outline-primary:hover {
    background-color: #58a636; /* Darker green for hover */
    border-color: #58a636; /* Darker border on hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Slight shadow on hover */
}

/* Secondary Button with Secondary Color */
.btn-outline-secondary {
    border-radius: 50px; /* Matching rounded corners */
    padding: 12px 30px; /* Equal padding to the primary button */
    font-size: 16px; /* Consistent font size */
    background-color: #0D3153; /* Secondary color */
    color: white; /* White text color */
    border: 1px solid #0D3153; /* Matching border */
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-secondary:hover {
    background-color: #0a2437; /* Darker shade for hover */
    border-color: #0a2437; /* Darker border on hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow effect on hover */
}

/* Icon inside button */
.btn-outline-primary .fa-search,
.btn-outline-secondary .fa-search {
    margin-right: 10px; /* Space between icon and text */
    font-size: 18px; /* Larger icon for prominence */
}

/* Flexbox Layout for Search Form */
.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute space between input and button */
}

.ms-3 {
    margin-left: 20px; /* Space between the search input and button */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .d-flex {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        align-items: stretch;
    }
    .form-control {
        margin-bottom: 15px; /* Space between input and button */
    }
    .btn-outline-primary,
    .btn-outline-secondary {
        width: 100%; /* Full-width button on small screens */
    }
}















/* Get Started Button Styles */
.btn-primary {
    background-color: #70C047; /* Primary color */
    color: white; /* White text */
    border: 1px solid #70C047; /* Border matches the primary color */
    padding: 12px 30px; /* Adequate padding for a comfortable button */
    font-size: 16px; /* Aligned with other elements for consistency */
    border-radius: 50px; /* Fully rounded corners */
    transition: all 0.3s ease-in-out; /* Smooth transition on hover */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Remove underline for cleaner look */
}

/* Button Hover Effect */
.btn-primary:hover {
    background-color: #58a636; /* Darker green on hover */
    border-color: #58a636; /* Matching border on hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Light shadow effect */
    transform: translateY(-2px); /* Slight upward movement on hover */
}

/* Icon inside the button (if any) */
.btn-primary .fa {
    margin-right: 10px; /* Spacing between the icon and text */
    font-size: 18px; /* Larger icon size */
}

/* Button Focus Effect */
.btn-primary:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 10px rgba(112, 192, 71, 0.4); /* Focus glow effect */
}























/* home page ------------------------------------*/
.hero-section {
    position: relative;
    background-image: url('/images/laptop.png'); /* Add your image path here */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-text {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-heading {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-subheading {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-cta {
    font-size: 1.25rem;
    padding: 12px 30px;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary-cta {
    background-color: #70C047;
    border: none;
}

.btn-secondary-cta {
    background-color: #0D3153;
    border: none;
    margin-left: 15px;
}

.btn-cta:hover {
    transform: translateY(-3px);
}

.btn-primary-cta:hover {
    background-color: #5cb85c;
}

.btn-secondary-cta:hover {
    background-color: #043b58;
}

/* About Us Section */
.about-us {
    /* background-image: url("/images/bg.jpg"); */
    background-color: #f9f9f9;
    padding: 80px 0;
    /* background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
}

.about-us h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.about-us p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-us .about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-us .row {
    display: flex;
    align-items: center;
}

.about-us .col-lg-6 {
    margin-bottom: 30px;
}

/* Call to Action Section */
.cta-section {
    background-color: #70C047;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: #0D3153;
    padding: 30px 0;
    color: white;
    text-align: center;
}






h1#typed-output {
    font-size: 2em;
    color: #28a745;
    border-right: 3px solid #28a745; /* Simulate cursor */
    display: inline-block;
    padding-right: 5px;
    animation: blink 0.7s infinite step-end;
  }


  .title2{
    color: #0D3153;
  }


  h2.title2{
    color: #0D3153;
  }
  /* Blinking cursor animation */
  @keyframes blink {
    0%, 100% {
      border-color: transparent;
    }
    50% {
      border-color: #28a745;
    }
  }





























  .feature-card {
    background: #fff;
    border: 1px solid #e3e6eb;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9f7ef;
    margin-bottom: 15px;
}

.icon-container i {
    font-size: 1.5rem;
    color: #28a745; /* Green for Fee Management */
}

.icon-container.admission i {
    color: #ff6f61; /* Red for Admission Management */
}

.icon-container.student i {
    color: #17a2b8; /* Blue for Student Management */
}

.icon-container.lms i {
    color: #6f42c1; /* Purple for Learning Management System */
}

.icon-container.academics i {
    color: #f0ad4e; /* Yellow for Academics Management */
}

.icon-container.teacher i {
    color: #007bff; /* Blue for Teacher Management */
}

.feature-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.feature-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.features-container {
    margin-top: 40px;
}



.title1{
    color: #5cb85c;
}






















.pricing-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    color: #0056b3;
}

.pricing-card {
    border-radius: 16px;
    text-align: center;
    padding: 40px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #fff;
    height: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 1rem;
}

.pricing-list li {
    margin-bottom: 12px;
}

.pricing-list li i {
    margin-right: 8px;
}

.btn-pricing {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
}

/* Gradient styles for cards */
.pricing-card-basic {
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.pricing-card-standard {
    background: linear-gradient(135deg, #58a636, #0d3b17);
    border: 3px dashed #ffffff; /* Active state border */
    box-shadow: 0 4px 15px rgba(252, 211, 66, 0.2); /* Highlight shadow for active card */
    
}

.pricing-card-premium {
    background: linear-gradient(135deg, #43cea2, #185a9d);
}

.btn-basic {
    background: #0056b3;
}

.btn-standard {
    background: #ffff;
    color: #fff;
}

.btn-premium {
    background: #185a9d;
}

.btn-pricing:hover {
    opacity: 0.9;
}

/* Style for Active Card */
.pricing-card-standard .btn-pricing {
    background: #0D3153;
}





















.faq-section {
    padding: 60px 20px;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0D3153;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.accordion-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.accordion-item:hover {
    transform: scale(1.02);
}

.accordion-button {
    font-size: 1.2rem;
    font-weight: 600;
    background-color: #ffffff;
    color: #343a40;
    border: none;
    padding: 20px;
    text-align: left;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background-color: #58a636;
    color: #fff;
}

.accordion-button:hover {
    background-color: #e9ecef;
    color: #58a636;
}

.accordion-button::after {
    content: "";
    display: none;
}

.accordion-button.collapsed::before {
    content: "\f067"; /* Plus icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    color: #58a636;
}

.accordion-button:not(.collapsed)::before {
    content: "\f078"; /* Chevron-down icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    color: #fff;
}

.accordion-body {
    background-color: #f8f9fa;
    padding: 20px;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-footer {
    text-align: center;
    margin-top: 60px;
    font-size: 1.2rem;
}

.faq-footer a {
    color: #58a636;
    text-decoration: none;
    font-weight: bold;
}

.faq-footer a:hover {
    color: #58a636;
}



















.about-section {
    padding: 60px 20px;
}

.about-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 50px;
}

.team-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-member {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-member .name {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 15px 0;
}

.team-member .role {
    font-size: 1rem;
    color: #888;
    margin-bottom: 15px;
}

.team-member .social-icons a {
    margin: 0 10px;
    color: #333;
    font-size: 1.5rem;
}

.team-member .social-icons a:hover {
    color: #007bff;
}

.about-description {
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.about-description h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-footer {
    text-align: center;
    margin-top: 60px;
    font-size: 1.2rem;
}

.about-footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.about-footer a:hover {
    color: #0056b3;
}













.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 20px;
    margin-top: 20px;
}

.footer .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.footer .footer-logo span {
    color: #007bff;
}

.footer h5 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer .social-icons {
    margin: 10px 0;
}

.footer .social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer .social-icons a:hover {
    color: #007bff;
}

.footer .footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer .footer-links a:hover {
    color: #007bff;
}

.footer .copyright {
    font-size: 1rem;
    margin-top: 30px;
    text-align: center;
    color: #ccc;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer .footer-links,
    .footer .social-icons {
        text-align: center;
    }
}




















.contact-us-container {
    padding: 60px 0;
    background-color: #fff;
}

.contact-us-container h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

.contact-us-info,
.contact-us-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-us-info:hover,
.contact-us-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.contact-us-info i {
    font-size: 3rem;
    color: #3498db;
    margin-right: 20px;
}

.contact-us-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-us-info h5 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
}

.contact-us-info p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.contact-us-form h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 30px;
}

.contact-us-form .form-control {
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.contact-us-form .form-control:focus {
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

.contact-us-form button {
    width: 100%;
    background-color: #3498db;
    color: #fff;
    font-size: 1.1rem;
    padding: 15px;
    border-radius: 10px;
    border: none;
    transition: background-color 0.3s ease;
}

.contact-us-form button:hover {
    background-color: #2980b9;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #ccc;
    border-radius: 8px;
    margin-top: 50px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .contact-us-info, .contact-us-form {
        padding: 30px;
    }

    .contact-us-container h2 {
        font-size: 2rem;
    }
}


a.linkActive{
    color: #58a636;
    font-weight: 700;
}

















.blog-section {
    padding: 60px 0;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h2 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #34495e;
}

.blog-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
    background: #ffffff;
    border-top: 4px solid #58a636;
    border-radius: 0 0 16px 16px;
    transition: background 0.3s;
}

.blog-content h5 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.blog-content p {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 15px 0;
}

.blog-content .read-more {
    font-size: 0.9rem;
    font-weight: bold;
    color: #58a636;
    text-decoration: none;
}

.blog-content .read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.blog-content .read-more:hover i {
    transform: translateX(5px);
}


.dropdown-menu {
    min-width: auto; /* Adjust width as needed */
}