* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    .announcement {
      background-color: #004080;
      color: #fff;
      padding: 11px 20px;
      text-align: center;
      font-size: 14px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    nav.navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #ffffff;
      padding-top: 5px;
      padding-right: 10px;
      padding-bottom: 10px;
      border-bottom: 1px solid #ddd;
      position: sticky;
      top: 40px;
      z-index: 999;
    }

    .logo {
      font-size: 22px;
      font-weight: bold;
      color: #004080;
      text-decoration: none;
    }

    .menu {
      display: flex;
      gap: 20px;
      position: relative;
    }

    .menu a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      position: relative;
    }

    .menu a:hover {
        text-decoration: none;
        color: #004080;
        font-weight: 500;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 110%;
      left: 0;
      background: #fff;
      border: 1px solid #ccc;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      min-width: 30% !important;
      z-index: 1000;
    }

    .dropdown-menu a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 15px;
      color: #333;
      text-decoration: none;
      white-space: nowrap;
    }

    .dropdown-menu a:hover {
      background-color: #f0f0f0;
      color: #004080;
      font-weight: 500;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: #333;
      margin: 4px 0;
    }

    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        padding-right: 2%;
        align-items: end;
        border-top: 1px solid #ccc;
      }

      .menu.show {
        display: flex;
      }

      .dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
      }

      .menu-toggle {
        display: flex;
      }
    }

    @media (max-width: 991px) {
      .menu {
        display: none;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        padding-right: 2%;
        align-items: end;
        border-top: 1px solid #ccc;
      }

      .menu.show {
        display: flex;
      }

      .dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
      }

      .menu-toggle {
        display: flex;
      }
    }

    /* Carousel */
    body {
        background: #f2f2f2;
    }

    .carousel-container {
        position: relative;
        max-width: 100%;
        margin: auto;
        overflow: hidden;
    }

    .carousel-slide {
        display: none;
        position: relative;
    }

    .carousel-slide img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Overlay Content */
    .overlay {
        position: absolute;
        top: 20%;
        left: 5%;
        color: black;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 20px;
        max-width: 40%;
    }

    .overlay h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .overlay p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .overlay .btn {
        display: inline-block;
        background: #ffffff;
        color: #004080;
        padding: 10px 20px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 4px;
    }

    /* Dots */
    .dots-container {
        text-align: center;
        position: absolute;
        bottom: 20px;
        width: 100%;
    }

    .dot {
        height: 12px;
        width: 12px;
        margin: 0 6px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.3s;
    }

    .active, .dot:hover {
        background-color: #004080;
    }

    /* Animation */
    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }

    @keyframes fade {
        from { opacity: .4; }
        to { opacity: 1; }
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
    .overlay {
        max-width: 80%;
        top: 15%;
    }

    .img-carousel{
        height: 330px !important;
    }

    .overlay h2 {
        font-size: 1.5rem;
    }

    .overlay p {
        font-size: 0.9rem;
    }

    .overlay .btn {
        padding: 8px 15px;
    }
    }

    /* Responsive*/
    @media screen and (max-width: 991px) {
    .overlay {
        max-width: 80%;
        top: 15%;
    }

    .img-carousel{
        height: 330px !important;
    }

    .overlay h2 {
        font-size: 1.5rem;
    }

    .overlay p {
        font-size: 0.9rem;
    }

    .overlay .btn {
        padding: 8px 15px;
    }
    }
    /*Responsive*/
    @media screen and (max-width: 1199px) {
    .overlay {
        max-width: 80%;
        top: 15%;
    }

    .img-carousel{
        height: 330px !important;
    }

    .overlay h2 {
        font-size: 1.5rem;
    }

    .overlay p {
        font-size: 0.9rem;
    }

    .overlay .btn {
        padding: 8px 15px;
    }
    }

    /*About CSS*/
    .about-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 10px;
        background: linear-gradient(to right, #004080, #0077cc);
        color: white;
        text-align: center;
    }

    .about-left, .about-center, .about-right {
        flex: 1;
        min-width: 280px;
        padding: 20px;
    }

    .about-left h2 {
        font-size: 28px;
    }

    .about-left p {
        font-size: 23px;
        margin-bottom: 25px;
    }

    .about-btn {
        display: inline-block;
        background: transparent;
        border: 2px solid #fff;
        color: #fff;
        padding: 10px 20px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 5px;
        transition: 0.3s;
    }

    .about-btn:hover {
        background-color: #fff;
        color: #004080;
    }

    .about-center img {
        max-width: 80%;
        height: auto;
    }

    .about-right p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Responsive for small screens */
        @media (max-width: 768px) {
        .about-section {
            flex-direction: column;
            text-align: center;
        }

        .about-left, .about-center, .about-right {
            padding: 10px;
        }
    }

    /*Trending Products Section*/
    .trending-section {
        padding: 40px 20px;
        text-align: center;
        background-color: #ffffff;
    }

    .section-title {
        font-size: 26px;
        font-weight: bold;
        margin-bottom: 40px;
        color: #004080;
    }

    /* Top content with text and 1 product */
    .trending-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        align-items: center;
        margin-bottom: 40px;
    }

    /* Left Info */
    .left-info {
        max-width: 300px;
        text-align: left;
    }

    .left-info h3 {
        font-size: 22px;
        color: #004080;
        margin-bottom: 10px;
    }

    .left-info p {
        font-size: 15px;
        color: #333;
        margin-bottom: 15px;
    }

    .view-btn {
        background: #004080;
        color: #fff;
        padding: 10px 18px;
        text-decoration: none;
        border-radius: 4px;
        font-weight: bold;
        display: inline-block;
    }

    /* Product Card */
    .product-card {
        position: relative;
        overflow: hidden;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }

    .product-card:hover {
        transform: scale(1.03);
    }

    .product-card img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* Overlay Text */
    .overlay-text {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 10px;
        background: rgba(0, 64, 128, 0.8);
        color: #fff;
        font-weight: bold;
        text-align: center;
    }

    /* Product Grid (4 items) */
    .product-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 0 20px;
    }

    .product-grid .product-card {
        width: 250px;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
    .trending-content {
        flex-direction: column;
    }

    .left-info {
        text-align: center;
    }

    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-grid .product-card {
        width: 90%;
    }
    }

    /*Stats Section*/
    .stats-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 20px 20px;
        background: linear-gradient(135deg, #004080, #0077cc);
        color: white;
        text-align: center;
    }

    .stat-box {
        flex: 1;
        min-width: 220px;
        padding: 20px;
    }

    .stat-box h2 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .stat-box p {
        font-size: 16px;
        font-weight: normal;
    }

    /* Responsive */
    @media (max-width: 768px) {
    .stat-box {
        width: 100%;
        padding: 20px 0;
    }
    }

    /*Testimonials Section*/
    .testimonial-container {
        width: 100%;
        max-width: 800px;
        margin: 50px auto;
        position: relative;
    }

    .testimonial-slider {
        position: relative;
        overflow: hidden;
    }

    .testimonial-slide {
        display: none;
        padding: 20px;
    }

    .testimonial-slide.active {
        display: block;
    }

    .testimonial-content {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .testimonial-content img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }

    .testimonial-content h4 {
        font-size: 16px;
        margin-bottom: 5px;
        color: #fff;
    }

    .testimonial-content p {
        font-size: 14px;
        color: #fff;
    }

    .testimonial-content .sub-text {
        font-size: 9px;
        color: #fff;
    }

    /* Responsive */
    @media (max-width: 600px) {
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-content div {
        margin-top: 10px;
    }
    }

    /*Instagram Section*/
    .instagram-section {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 60px 20px;
    }

    .background-gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        filter: brightness(0.5);
        gap: 5px;
    }

    .background-gallery img {
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 6px;
    }

    /* Overlay Content */
    .instagram-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        z-index: 1;
    }

    .instagram-overlay h2 {
        font-size: 32px;
        padding: 15px 30px;
        border-radius: 10px;
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        color: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        animation: gradient 5s ease infinite;
        background-size: 300% 300%;
    }

    /* Optional: Animate gradient */
        @keyframes gradient {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .anchor{
        color: #fff;
    }

    .instagram-overlay span {
        color: #fff;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
    .background-gallery img {
        width: 150px;
        height: 150px;
    }

    .instagram-overlay h2 {
        font-size: 24px;
        padding: 10px 20px;
    }
    }

    @media screen and (max-width: 480px) {
    .background-gallery img {
        width: 120px;
        height: 120px;
    }

    .instagram-overlay h2 {
        font-size: 18px;
        padding: 8px 15px;
    }
    }

    /*Mega Footer*/

    .mega-footer {
        background-color: #004080;
        color: white;
        padding: 40px 20px 10px;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
    }

    .footer-col {
        flex: 1 1 220px;
        margin: 15px;
    }

    .footer-col h3,
    .footer-col h4 {
        margin-bottom: 15px;
        color: #ffcb05;
    }

    .footer-col p,
    .footer-col ul,
    .footer-col li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        text-decoration: none;
        color: #ffffff;
        transition: 0.3s;
    }

    .footer-col ul li a:hover {
        color: #ffcb05;
    }

    .footer-col i {
        margin-right: 10px;
        color: #ffcb05;
    }

    .social-buttons {
        display: flex;
        gap: 20px;
        margin-top: 5%;
    }

    /* Common button styles */
    .icon {
        width: 50px;
        height: 50px;
        display: inline-block;
        border-radius: 50%;
        position: relative;
        background-color: #ddd;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .icon:hover {
        transform: scale(1.1);
    }

    /* Facebook icon */
    .facebook {
        background-color: #3b5998;
    }

    .facebook::before {
        content: "f";
        position: absolute;
        font-size: 28px;
        color: white;
        font-family: sans-serif;
        font-weight: bold;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    /* Instagram icon */
    .instagram {
        background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
    }

    .instagram::before {
        content: "";
        position: absolute;
        width: 22px;
        height: 22px;
        border: 2px solid white;
        border-radius: 4px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .instagram::after {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        background: white;
        border-radius: 50%;
        top: 32%;
        left: 60%;
    }

    /* WhatsApp icon */
    .whatsapp {
        background-color: #25d366;
    }

    .whatsapp::before {
        content: "";
        position: absolute;
        width: 24px;
        height: 24px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M20.5 3.5a11.64 11.64 0 00-16.43 0 11.64 11.64 0 00-3.44 8.24c0 2.1.55 4.13 1.6 5.9L1 23l5.53-1.44a11.56 11.56 0 005.04 1.18h.02a11.64 11.64 0 008.23-3.43 11.64 11.64 0 000-16.43zM12.6 20.07a9.5 9.5 0 01-4.81-1.3l-.34-.2-3.28.86.88-3.19-.22-.33a9.57 9.57 0 01-1.42-5 9.48 9.48 0 012.79-6.76 9.55 9.55 0 016.77-2.8 9.5 9.5 0 016.76 2.8 9.55 9.55 0 012.8 6.77 9.52 9.52 0 01-2.8 6.76 9.55 9.55 0 01-6.76 2.8z"/><path d="M17.21 14.3c-.3-.15-1.77-.87-2.05-.97-.27-.1-.47-.15-.66.15-.2.3-.76.97-.93 1.17-.17.2-.34.22-.64.07-.3-.15-1.26-.46-2.4-1.48-.88-.79-1.47-1.76-1.64-2.06-.17-.3-.02-.46.13-.6.13-.13.3-.34.44-.5.14-.17.2-.3.3-.5.1-.2.05-.38 0-.53-.06-.15-.66-1.58-.9-2.17-.23-.6-.47-.52-.66-.53h-.57c-.2 0-.5.07-.76.3-.26.23-1 1-1 2.4 0 1.4 1 2.76 1.14 2.95.13.2 2 3.02 4.8 4.23.67.29 1.2.47 1.61.6.68.22 1.3.19 1.78.11.54-.08 1.77-.72 2.02-1.41.25-.7.25-1.3.17-1.41-.07-.1-.26-.15-.56-.3z"/></svg>');
        background-size: 100%;
        background-repeat: no-repeat;
    }

    .footer-bottom {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 10px;
        font-size: 14px;
        margin-top: 20px;
    }

    /* Responsive */
    @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 25px;
    }
    }