* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1800px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.2rem;
    align-items: center;
    margin-left: 300px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #1a73e8;
}

.whatsapp-btn {
    background: green;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.whatsapp-icon {
  font-size: 20px;
}

.whatsapp-btn:hover {
    background: green;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 244, 78, 0.3);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 95%;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
    transition: transform 0.9s ease;
}

.whatsapp-float:hover {
    transform: scale(1.2);
    background-color: #1ebe5d;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgb(246, 246, 246);
    }
}

.search-container {
    position: relative;
    width: 74%;
    margin-top: 120px;
    margin-left: 199px;
}

.search-input {
width: 100%;
padding: 0.75rem 1rem 0.75rem 2.5rem;
border: 1px solid #a9a9a9;
border-radius: 0.5rem;
font-size: 1rem;
transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
outline: none;
border-color: #3b82f6;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-icon {
position: absolute;
left: 0.75rem;
top: 50%;
transform: translateY(-50%);
color: #9ca3af;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Direct List View */
.list-view {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 20px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    background: white;
    top: 100px;
    align-self: flex-start; 
    max-height: calc(100vh - 120px); 
    overflow-y: auto;
    border-radius: 8px;
    padding: 1.5rem;
    height: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.sidebar h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.category-item {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    border: 1px solid transparent;
}

.category-item:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.category-item.active {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

/* Content Area */
.content-area {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.content-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.content-title {
    font-size: 1.8rem;
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.content-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}


.dropdown-item {
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #333;
}


.dropdown-content {
    max-height: 0;              
    overflow: hidden;           
    transition: max-height 0.1s ease, padding 0.1s ease; 
    padding: 0 20px;            
    border-top: 1px solid #e9ecef;
    background: #ecf5fe;        
}


.dropdown-content.open {
    max-height: 2000px;          
    padding: 10px;  
}

.dropdown-content a {
    color: #2c5aa0;
    text-decoration: underline;
}

.dropdown-content ul {
    columns: 2;              
    -webkit-columns: 2;      
    -moz-columns: 2;         
    column-gap: 40px;        
    list-style: disc inside; 
    margin: 0;
    padding: 0;    
      

}
.dropdown-content li {
   font-size: 13px;
   white-space: nowrap;
}

/* Float Items */
.float_item {
    position: fixed;
    bottom: 130px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.whatsapp-float, .floating-email-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.whatsapp-float {
    background-color: #25d366;
    color: white;
}

.floating-email-icon {
    background-color: #666;
    color: white;
}

.whatsapp-float:hover, .floating-email-icon:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #fff;
    padding: 60px 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 110px;
    line-height: 1.8em;
    margin-right: 100px;        
    padding: 0 10px;   
    width: 100%;
}

.footer-column {
  min-width: 20px;

}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;

}

.footer-text {
  font-size: 16spx;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-icons i {
  font-size: 20px;
  margin-right: 15px;
  color: #357ae8;
  transition: color 0.3s;
}

.social-icons i:nth-child(2) {
  color: #e4405f;
}
.social-icons i:nth-child(3) {
  color: #1da1f2;
}
.social-icons i:nth-child(4) {
  color: #21759b;
}

.social-icons i:hover {
  opacity: 0.7;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-column p {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.5;
}

.Iicon {
  color: #4285f4;
  margin-right: 10px;
}

.footer-links {
  display: grid;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.footer-links a {
  text-decoration: none;
  color: inherit; 
  transition: color 0.1s ease;
}


.footer-links li {
  margin-bottom: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-links li:hover {
  color: #1a73e8;
}

.footer-hours {
  text-align: center;
  margin-top: 40px;
}

.footer-hours h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.footer-hours h3::after {
  content: '';
  display: block;
  height: 2px;
  width: 50px;
  background-color: #1a73e8;
  margin: 8px auto 0;
}

/* Responsive */
@media (max-width: 768px) {
    .list-view {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .search-container {
        width: 90%;
        margin-left: 5%;
    }

    .nav-links {
        margin-left: 0;
        gap: 1rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* Mega Dropdown Styles */
.nav-links li {
    position: relative;
}

.home-link::after {
    content: '\f0d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-links li:hover .home-link::after {
    transform: rotate(180deg);
}

.mega-dropdown {
    position: absolute;
    top: 170%;
    left: 380%;
    transform: translateX(-50%);
    background: white;
    width: 95vw;
    max-width: 1200px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%) translateY(20px);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 1000;
}

.nav-links li:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 300px;
    gap: 2rem;
    padding: 2.5rem;
}

.dropdown-column h3 {
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.dropdown-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

.dropdown-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-links li {
    margin-bottom: 0.75rem;
}

.dropdown-links a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-links a:hover {
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    color: #1e3c72;
    transform: translateX(5px);
    padding-left: 1rem;
}

.dropdown-links i {
    margin-right: 0.75rem;
    width: 18px;
    color: #000000;
    font-size: 0.9rem;
}

/* Featured Section */
.featured-section {
    background-color: #f2f2f2;
    border-radius: 12px;
    padding: 1.5rem;
}

.featured-section h3 {
    color: #1e3c72;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.featured-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.featured-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.featured-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
}

.featured-info h4 {
    color: #1e3c72;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.featured-info p {
    color: #666;
    font-size: 0.8rem;
}

.view-all-btn {
    display: inline-block;
    background-color:rgba(0, 123, 254, 0.934);
    color: white !important; 
    padding: 0.75rem 1.5rem;
    border-radius: 27px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #346ccd);
}

.view-all-btn i {
    color: white;
}

/* Animation for dropdown items */
.dropdown-links li {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.3s ease forwards;
}

.dropdown-links li:nth-child(1) { animation-delay: 0.1s; }
.dropdown-links li:nth-child(2) { animation-delay: 0.15s; }
.dropdown-links li:nth-child(3) { animation-delay: 0.2s; }
.dropdown-links li:nth-child(4) { animation-delay: 0.25s; }
.dropdown-links li:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mega-dropdown-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .mega-dropdown {
        width: 95vw;
        left: 2.5vw;
        transform: none;
    }

    .mega-dropdown-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .nav-links li:hover .mega-dropdown {
        transform: translateY(0);
    }
}


/*search not found*/

.no-results {
    text-align: center;
    padding: 40px;
    color: #666;
}

