* {
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #065792;
    --secondary-color: #49B6FC;
    --text-color: #333;
    --bg-color: #f9f9f9;
    --card-bg: #ffffff;
    --nav-width: 250px;
}

.dark-mode {
    --text-color: #f9f9f9;
    --bg-color: #121212;
    --card-bg: #1e1e1e;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    overflow-x: hidden;
    width: 100%;
}

/* Navigation */
nav {
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #ffeb3b;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 1rem;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.theme-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 1000;
    transition: right 0.5s ease;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid white;
}

.mobile-menu-header h3 {
    color: white;
    font-size: 1.5rem;
}

.mobile-nav-links {
    list-style: none;
    flex-grow: 1;
}

.mobile-nav-links li {
    margin-bottom: 1.5rem;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #ffeb3b;
    padding-left: 10px;
}

.mobile-theme-toggle {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    
    transition: all 0.3s ease;
}

.mobile-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-theme-toggle i {
    margin-right: 10px;
}

/* Main Carousel */
.main-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    max-width: 50%;
    
}

.carousel-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.carousel-btn {
    background: linear-gradient(90deg, #49B6FC, #065792);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 76, 141, 0.4);
    position: relative;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.carousel-btn:hover::before {
    left: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1; /* Ensure proper stacking */
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2; /* Active slide should be on top */
}

.carousel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 76, 141, 0.6);
}

.carousel-btn:active {
    transform: translateY(1px);
}

.aa {
    background: linear-gradient(90deg, #49B6FC, #065792);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 76, 141, 0.4);
    position: relative;
    overflow: hidden;
   left:3rem;
}


.aa::before {
    content: '';
    position: relative;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.aa:hover::before {
    left: 100%;
}

.aa:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 76, 141, 0.6);
}

.aa:active {
    transform: translateY(1px);
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
}

.view-all {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Products Carousel */
.products-carousel {
    max-width: 1200px;
    margin: 0 auto 3rem;
    position: relative;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.products-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.products-container::-webkit-scrollbar {
    display: none;
}

.product-card {
  flex: 0 0 auto;
  width: 280px;
  height: 350px;
  background: linear-gradient(135deg, var(--card-bg) 70%, #e3f0fc 100%);
  margin: 0 1rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(6, 87, 146, 0.10), 0 1.5px 6px rgba(73,182,252,0.08);
  transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
  position: relative;
  border: none;
}
.product-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 40px rgba(6,87,146,0.18), 0 3px 12px rgba(73,182,252,0.12);
}
.product-card a, .product-card[onclick] {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  transition: filter 0.3s, transform 0.3s;
  filter: brightness(0.95) saturate(1.1);
}
.product-card:hover .product-img {
  filter: brightness(1.05) saturate(1.2) blur(1px);
  transform: scale(1.04);
}
.product-action-btn {
  position: absolute;
  top: 38%;
  right: 18px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(6,87,146,0.18);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
  cursor: pointer;
}
.product-card:hover .product-action-btn {
  opacity: 1;
  transform: scale(1.08);
}
.product-info {
  padding: 1.2rem 1rem 1.3rem 1rem;
  background: transparent;
  text-align: left;
}
.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.product-info p {
  font-size: 1rem;
  color: var(--text-color);
  opacity: 0.85;
  margin-bottom: 0;
}
.product-price {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .product-img {
    height: 120px;
  }
  .product-info {
    padding: 0.8rem 0.7rem 1rem 0.7rem;
  }
}
.dark-mode .product-card {
  background: linear-gradient(135deg, #232b36 70%, #1a2330 100%);
  box-shadow: 0 8px 32px rgba(6,87,146,0.08), 0 1.5px 6px rgba(73,182,252,0.04);
}
.dark-mode .product-title {
  color: var(--secondary-color);
}
.dark-mode .product-info p {
  color: #e0e6ef;
}
.dark-mode .product-action-btn {
  background: linear-gradient(135deg, #49B6FC, #065792);
  color: #fff;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.carousel-nav-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.carousel-nav-btn:hover {
    background-color: var(--secondary-color);
}

/* About Us Section */
.about-us {
    background-color: var(--card-bg);
    padding: 4rem 2rem;
    margin: 2rem 0;
    width: 100%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Acknowledgements Section */
.acknowledgements {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 1rem;
    width: 100%;
}

.acknowledgements h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.acknowledgements-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.acknowledgement-card {
  background: linear-gradient(135deg, var(--card-bg) 70%, #e3f0fc 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(6, 87, 146, 0.10), 0 1.5px 6px rgba(73,182,252,0.08);
  transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
  max-width: 320px;
  text-align: center;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  position: relative;
  border: none;
}
.acknowledgement-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 40px rgba(6,87,146,0.18), 0 3px 12px rgba(73,182,252,0.12);
}
.acknowledgement-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--secondary-color);
  box-shadow: 0 2px 12px rgba(73,182,252,0.10);
  background: #fff;
}
.acknowledgement-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.ack-badge, .acknowledgement-card .role {
  display: inline-block;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 0.3em 1.1em;
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(73,182,252,0.10);
  border: none;
}
.acknowledgement-card .bio {
  line-height: 1.6;
  color: var(--text-color);
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .acknowledgement-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .acknowledgement-card img {
    width: 90px;
    height: 90px;
  }
}
.dark-mode .acknowledgement-card {
  background: linear-gradient(135deg, #232b36 70%, #1a2330 100%);
  box-shadow: 0 8px 32px rgba(6,87,146,0.08), 0 1.5px 6px rgba(73,182,252,0.04);
}
.dark-mode .acknowledgement-card h3 {
  color: var(--secondary-color);
}
.dark-mode .acknowledgement-card .bio {
  color: #e0e6ef;
}
.dark-mode .ack-badge, .dark-mode .acknowledgement-card .role {
  background: linear-gradient(90deg, #49B6FC, #065792);
  color: #fff;
}

/* Contact Section */
.contact {
    padding: 3rem 2rem;
    background-color: var(--primary-color);
    color: white;
    width: 100%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
}

.submit-btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #ffeb3b;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 3rem 2rem 1.5rem 2rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.footer-logo img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid var(--secondary-color);
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.2rem 0;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.contact-info i {
    margin-right: 0.8rem;
    color: var(--secondary-color);
    width: 16px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: var(--secondary-color);
    background: rgba(73, 182, 252, 0.2);
    transform: translateY(-3px);
}

.newsletter h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.newsletter p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links-bottom a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Dark mode adjustments */
.dark-mode footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    
    .logo span {
        display: none;
    }
    
    .carousel-content {
        max-width: 80%;
        left: 30px;
        bottom: 30px;
        text-align: center;
    }

    .carousel-content h2 {
        font-size: 1.8rem;
    }

    .carousel-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .products-carousel {
        padding: 0 0.5rem;
    }
    
    .product-card {
        width: 250px;
        margin: 0 0.5rem;
    }
    
    .acknowledgements-container {
        flex-direction: column;
        align-items: center;
    }
    
    .acknowledgement-card {
        max-width: 100%;
    }

    .footer-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
}

/* AOS Custom Animations */
[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
    transition-duration: 400ms;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
    transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
    transition-delay: 400ms;
}