* {
    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;
    width: 100%;
}

.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 {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 244, 78, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
    padding: 5px;
}

.story-container {
    max-width: 1900px;
    margin: 0 auto;
    padding: 70px 10px;
}

.about-story {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 60px;
}

.about-story h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-story p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #001aff, #3b83ff);
    margin-bottom: 20px;
    border-radius: 3px;
}

.line1 {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #001aff, #3b83ff);
    margin: 0 auto 20px auto;
    border-radius: 3px;
}

.section-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.main-content {
    padding: 40px 20px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.left-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.right-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.second-content {
    padding: 40px 20px;
    background-color: #9da3a93e;
}

.second-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.left-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.right-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

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

.footer-container {
    display: flex;
    justify-content: space-around;
    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;
}

/* 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) {
    .menu-toggle {
        display: block;
        z-index: 2000;
    }
        .home-link::after {
        display: none;
    }

    nav {
        flex-wrap: wrap;
        padding: 10px 15px;
    }

    .logo-img {
        width: 150px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        width: 100%;
        gap: 1rem;
        padding: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #ddd;
        margin-left: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .mega-dropdown {
        display: none !important;
    }

    .about-story {
        margin-top: 80px;
        padding: 40px 20px;
    }

    .about-story h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .about-story p {
        font-size: 1rem;
    }

    .story-container {
        padding: 40px 20px;
    }

    .main-content {
        padding: 30px 15px;
    }

    .content-wrapper {
        gap: 30px;
    }

    .left-image img {
        width: 100%;
        height: auto;
    }

    .right-content {
        max-width: 100%;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .second-wrapper {
        padding: 30px 15px;
        gap: 30px;
    }

    .left-content {
        max-width: 100%;
    }

    .right-image img {
        width: 100%;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-logo {
        width: 150px;
    }

    .footer-text {
        font-size: 14px;
    }

    .footer-column h3 {
        font-size: 16px;
    }

    .footer-column p {
        font-size: 14px;
    }
    
}

@media (max-width: 480px) {
    nav {
        padding: 8px 10px;
    }

    .logo-img {
        width: 120px;
    }

    .menu-toggle {
        font-size: 1.5rem;
    }

    .about-story {
        margin-top: 70px;
        padding: 30px 15px;
    }

    .about-story h1 {
        font-size: 1.5rem;
    }

    .about-story p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .intro-text {
        font-size: 0.95rem;
    }

    .story-container {
        padding: 30px 15px;
    }

    .main-content {
        padding: 20px 10px;
    }

    .second-wrapper {
        padding: 20px 10px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-links li {
        font-size: 13px;
    }
}  