/*
Theme Name: Education
Theme URI: http://example.com/education
Author: Your Name
Author URI: http://example.com
Description: A dynamic education WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: education
*/


/* ====== RESET & BASE STYLES ====== */
/* ===== General Styles ===== */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #001f4d;
            background-color: #fff;
            margin: 0;
            padding: 0;
        }

        /* ===== Header Styles ===== */
        .header-container {
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0, 31, 77, 0.1);
            padding: 15px 20px;
        }

        .logo-img {
            max-width: 180px;
            height: auto;
        }

        .college-trust {
            font-size: 1.1rem;
            color: #002366;
            font-weight: 600;
            margin-bottom: 2px !important;
            line-height: 1.1;
        }

        .college-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: #002366;
            margin-bottom: 2px !important;
            line-height: 1.1;
        }

        .college-header {
            background-color: #05246b;
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            padding: 5px 15px;
            border-radius: 3px;
            margin-bottom: 2px !important;
            line-height: 1.1;
        }

        .contact-info {
            font-size: 0.9rem;
            margin-bottom: 2px !important;
            line-height: 1.1;
        }

        .contact-info span {
            color: #000;
            margin-right: 20px;
        }

        .contact-info i {
            color: #05246b;
            margin-right: 5px;
        }

        .address-text {
            font-size: 0.9rem;
            color: #000;
            margin-bottom: 2px !important;
            line-height: 1.1;
            font-weight: 500;
        }

        /* ===== Navigation ===== */
        .nav-menu {
            background-color: #001f4d;
            padding: 0;
        }
 .navbar-toggler {
            border: 2px solid #ffffff !important;
            background-color: rgba(255, 255, 255, 0.1) !important;
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
        }
        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }

        .nav-menu .nav-link {
            color: #fff;
            font-weight: 500;
            padding: 12px 20px;
            border: none;
            transition: 0.3s;
        }

        .nav-menu .nav-link:hover,
        .nav-menu .nav-link.active {
            color: #ffc107;
            background-color: rgba(255, 193, 7, 0.1);
        }

        .nav-menu .nav-link.active {
            font-weight: bold;
        }

        /* ===== Main Content ===== */
        .main-content {
            background-color: #f8f9fa;
            min-height: 500px;
            padding: 20px 0;
        }

        /* ===== Sidebar ===== */
        .sidebar-section {
            background-color: #f8f9fa;
            border: 1px solid #ccc;
            border-radius: 5px;
            margin-bottom: 20px;
            height: 300px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 0;
        }

        .sidebar-header {
            background-color: #ff5722;
            color: white;
            padding: 10px 15px;
            font-weight: bold;
            font-size: 1rem;
            text-align: center;
            flex-shrink: 0;
        }

        .sidebar-content {
            padding: 15px;
            overflow-y: auto;
            flex-grow: 1;
        }

        .person-img {
            width: 100%;
            max-width: 150px;
            height: auto;
            border-radius: 5px;
            margin-bottom: 10px;
        }

        .person-name {
            color: #002366;
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* ===== Hero Image ===== */
        .hero-section {
            height: 100%;
            max-height: 500px;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
        }

        /* ===== News Section ===== */
        .news-header {
            background-color: #ff5722;
            color: white;
            padding: 10px 15px;
            font-weight: bold;
            font-size: 1rem;
            margin-bottom: 0;
            text-align: center;
            flex-shrink: 0;
            position: sticky;
            /* हे महत्त्वाचे */
            top: 0;
            /* वर अडकवण्यासाठी */
            z-index: 10;
            /* वर दिसण्यासाठी */
        }

        .news-wrapper {
            height: 250px;
            /* heading खाली जागा */
            overflow: hidden;
            position: relative;
            background-color: #fff;
            border-radius: 0 0 5px 5px;
            padding-top: 5px;
            /* news-header खाली थोडा gap */
        }

        .news-content {
            display: inline-block;
            animation: scrollUp 15s linear infinite;
        }

        @keyframes scrollUp {
            0% {
                transform: translateY(100%);
            }

            100% {
                transform: translateY(-100%);
            }
        }

        .news-item {
            padding: 8px 12px;
            font-size: 14px;
            color: #333;
            display: flex;
            align-items: center;
            background-color: #f8f9fa;
        }

        .news-item i {
            margin-right: 8px;
            color: #ff5722;
        }

        /* ===== WhatsApp Link ===== */
        .whatsapp-link {
            color: #25d366;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        .whatsapp-link:hover {
            color: #128c7e;
        }

        /* ===== Floating WhatsApp Button ===== */
        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 12px 18px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 999;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .whatsapp-btn:hover {
            background-color: #128c7e;
            transform: translateY(-2px);
        }

        .whatsapp-btn i {
            font-size: 1.4rem;
        }

        /* ===== Vision & Mission Boxes ===== */
        .vision-box,
        .mission-box {
            border-radius: 10px;
            height: 100%;
            transition: background-color 0.3s ease, color 0.3s ease;
            cursor: pointer;
        }

        /* Default styles */
        .vision-box {
            background-color: #f5f5f5;
            /* peach */
            color: #000;
        }

        .mission-box {
            background-color: #f5f5f5;
            color: #000;
        }

        /* Hover effect */
        .vision-box:hover,
        .mission-box:hover {
            background-color: #ffc6b9;
            /* dark blue */
            color: #fff;
        }

        /* Make sure text inside also turns white */
        .vision-box:hover .vision-title,
        .mission-box:hover .mission-title,
        .vision-box:hover .vision-desc,
        .mission-box:hover .mission-list {
            color: #fff;
        }

        /* ===== Responsive ===== */
        @media (max-width: 768px) {
            .college-title {
                font-size: 1.4rem;
                text-align: center;
            }

            .college-trust,
            .contact-info,
            .address-text {
                text-align: center;
            }

            .nav-menu .nav-link {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }

        .about-title {
            font-size: 2rem;
            font-weight: 800;
            color: #05246b;
            border-left: 5px solid #ff5722;
            padding-left: 15px;
        }

        .about-description {
            font-size: 1rem;
            line-height: 1.7;
            color: #333;
            margin-bottom: 15px;
        }

        /* Management Section */
.management-body-section {
  background-color: #f9f9f9;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #05246b;
  border-bottom: 4px solid #ff6b00;
  display: inline-block;
  padding-bottom: 10px;
}

.management-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.management-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.management-img {
  width: 160px; /* increased image size */
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #05246b;
  margin: 0 auto 15px auto;
  display: block;
}

.management-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #05246b;
  margin-bottom: 5px;
  text-align: center;
}

.management-role {
  font-size: 0.95rem;
  color: #555;
  text-align: center;
}


/* styles.css */

.whatsapp-btn {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #dcf8c6; /* हलका WhatsApp green hover */
}

.social-icon {
  font-size: 18px;
  cursor: pointer;
  transition: filter 0.3s ease;
}

.social-icon:hover {
  filter: brightness(1.2);
}



 body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
        }

        .admission-contact {
            background: linear-gradient(135deg, #ff5722);
            color: white;
            padding: 20px 0;
            text-align: center;
            margin-bottom: 0;
        }

        .admission-contact h3 {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .contact-numbers {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .address-line {
            background-color: #05246b;
            color: white;
            font-size: 18px;
            font-weight: bold;
            padding: 8px 0;
            margin: 0;
        }

        .footer-main {
            background-color: white;
            padding: 40px 0;
            border-top: 3px solid #e74c3c;
        }

        .college-logo {
            max-width: 180px;
            height: auto;
            margin-bottom: 20px;
        }

        .college-info h4 {
            color: #2c5aa0;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .college-info p {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .contact-info {
            color: #333;
            font-size: 16px;
            line-height: 1.8;
        }

        .contact-info strong {
            color: #2c5aa0;
        }

        .social-icons {
            margin-top: 20px;
        }

        .social-icons a {
            display: inline-block;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            margin-right: 10px;
            color: white;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .social-icons .facebook {
            background-color: #3b5998;
        }

        .social-icons .instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }

        .social-icons .whatsapp {
            background-color: #25d366;
        }

        .social-icons a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .whatsapp-inquiry {
            background-color: #25d366;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            font-weight: bold;
            margin-top: 15px;
            transition: all 0.3s ease;
        }

        .whatsapp-inquiry:hover {
            background-color: #128c7e;
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }

        .whatsapp-inquiry i {
            margin-right: 8px;
            font-size: 18px;
        }

        @media (max-width: 768px) {
            .admission-contact h3 {
                font-size: 22px;
            }
            
            .contact-numbers {
                font-size: 20px;
            }
            
            .address-line {
                font-size: 16px;
            }
            
            .college-info h4 {
                font-size: 20px;
            }
        }




.nav-menu {
  background-color: #002050;
  padding: 10px 0;
  white-space: nowrap;
  overflow-x: auto;
}

.custom-navbar {
  display: flex;
  flex-wrap: nowrap;
  gap: 25px;
  padding-left: 0;
  margin: 0;
}

.custom-navbar li {
  list-style: none;
  white-space: nowrap; /* prevent word wrap */
}

.custom-navbar li a {
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  padding: 6px 10px;
  transition: color 0.3s ease;
}

.custom-navbar li a:hover {
  color: #ffc107 !important;
}

/* Hide scrollbar but still scrollable horizontally if needed */
.nav-menu::-webkit-scrollbar {
  display: none;
}
.nav-menu {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}


