body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #0c4771;
  color: #f1e9dd;
  overflow-x: hidden;
}

/* Navbar */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #fff;
  padding: 10px 30px;
}
.nav-item {
  padding: 0px 10px;
}



.navbar-nav .nav-link:hover {
  color: #b30000;
}

.navbar-brand img {
  max-height: 100px;
}

.navbar-toggler {
  border: none;
}

.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%280,0,0,0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .dropdown-menu {
  margin-top: 0;
  transition: all 0.2s ease;
}


/* Hero Section */
.hero-section {
  background-image:url('../img/about-slider.jpg');
  background-position:center;
  object-fit: contain;
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #f1e9dd;
  margin-top: 100px;
}
.hero-section2 {
  object-fit: contain;
  position: relative;
  overflow: hidden;
  color: #f1e9dd;
  margin-top: 100px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(60%);
}

.hero-content {
  position: absolute;
  bottom: 60px; /* adjust this for spacing from bottom */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}

.hero-logo {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.hero-button {
  background-color: #f1e9dd;
  color: #1f1a19;
  border: none;
  padding: 12px 24px;
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s;
}

.hero-button:hover {
  background-color: #bdb5aa;
  color: #1f1a19;
}

.social-icons {
  margin-top: 25px;
}

.social-icons a {
  color: #f1e9dd;
  margin: 0 8px;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #bdb5aa;
}
/* ######################## 2nd area ######################## */

.hero-section-2 {
            background-color: #1a1a1a; /* Dark background similar to the image */
            color: #ffffff; /* White text color */
            /* min-height: 100vh; /* Full viewport height */ */
            display: flex; /* Flexbox for centering */
            align-items: center; /* Center vertically */
            justify-content: center; /* Center horizontally */
            text-align: center; /* Center text within the column */
        }
        .main-heading {
            font-size: 3rem; /* Large font size */
            font-weight: 900; /* Extra bold/black */
            line-height: 1.1; /* Tight line spacing */
            margin-bottom: 2rem; /* Space below the heading */
            text-transform: uppercase; /* Ensure all caps */
        }
        .intro-text {
            max-width: 1000px; /* Max width for the paragraph */
            margin: 0 auto 2rem auto; /* Center the paragraph and add bottom margin */
            font-size: 1.25rem; /* Slightly larger font for readability */
            font-weight: 300; /* Lighter font weight */
        }
        .read-more-link {
            color: #b8860b !important; /* Gold/Brown color for the link */
            text-decoration: none; /* Remove underline by default */
            font-weight: 600; /* Semi-bold */
            letter-spacing: 2px; /* Spacing between letters */
            text-transform: uppercase; /* All caps */
            font-size: 0.875rem; /* Smaller font size */
        }
        .read-more-link:hover {
            color: #ffffff !important; /* White on hover */
        }

        /* Adjustments for smaller screens */
        @media (min-width: 992px) {
            .main-heading {
                font-size: 5rem; /* Larger font on desktops */
            }
        }

/* ######################## About area ######################## */
.about-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden; /* Hide overflow from image */
        }
        .about-background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Cover the entire area */
            filter: brightness(0.9); /* Slightly darken the image for text contrast */
        }
        .about-content {
            position: relative; /* Ensure content is above the image */
            z-index: 10; /* Bring content to the front */
            color: white; /* Default text color over image */
            text-align: center;
        }
        .about-button {
            border: 2px solid white;
            color: white;
            padding: 10px 30px;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 200px; /* Space above button */
        }
        .about-button:hover {
            background-color: white;
            color: black;
        }
        .logo-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background for logos */
            padding: 20px 0;
            z-index: 10; /* Ensure logos are above the image */
        }
        .logo-bar img {
            max-height: 40px; /* Adjust logo size */
            filter: brightness(0) invert(1); /* Makes logos white */
            opacity: 0.7; /* Slightly dim logos */
            margin: 0 20px; /* Space between logos */
        }

        /* Responsive adjustments for smaller screens */
        @media (max-width: 768px) {
            .logo-bar img {
                max-height: 30px;
                margin: 0 10px;
            }
            .logo-bar .d-flex {
                flex-wrap: wrap; /* Allow logos to wrap */
                justify-content: center !important;
            }
        }


/* ################## podcast section ######################## */

.podcast-section {
            position: relative;
            min-height: 100vh; /* Full viewport height */
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff; /* White text over video */
            text-align: center;
            overflow: hidden; /* Hide any overflow from the video */
        }

        .video-background {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 1; /* Behind content */
            transform: translate(-50%, -50%);
            background-size: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: rgba(0, 0, 0, 0.6); /* Dark semi-transparent overlay */
            z-index: 2; /* Between video and content */
        }

        .podcast-content {
            position: relative;
            z-index: 3; /* Above overlay and video */
            max-width: 800px; /* Limit text width */
            padding: 20px;
        }

        .podcast-text {
            font-size: 1.6rem; /* Adjust font size for readability */
            line-height: 1.6;
            margin-bottom: 2rem;
            font-weight: 300; /* Lighter font weight */
        }
        .podcast-text strong {
            font-weight: 600; /* Make 'powerful' and 'practical' stand out */
        }


        .podcast-button {
            border: 2px solid white;
            color: white;
            padding: 10px 30px;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .podcast-button:hover {
            background-color: white;
            color: black;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .podcast-text {
                font-size: 1.2rem;
            }
        }
        @media (min-width: 992px) {
            .podcast-text {
                font-size: 2rem; /* Larger text on larger screens */
            }
        }


/* ############### Footer section ################### */
.site-footer {
            background-color: #1a1a1a; /* Dark background matching the theme */
            color: #ffffff;
            padding: 60px 0 20px 0; /* Increased top padding to accommodate menus */
            border-top: 5px solid #b8860b; /* Gold/Brown accent line */
        }
        .footer-menu-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #b8860b; /* Gold/Brown color for menu titles */
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        .footer-menu-list {
            list-style: none;
            padding: 0;
        }
        .footer-menu-list li {
            margin-bottom: 8px;
        }
        .footer-menu-list a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }
        .footer-menu-list a:hover {
            color: #ffffff; /* White hover effect */
        }

        /* Bottom Row Styles */
        .bottom-footer-row {
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid #333; /* Separator line */
        }
        .social-icons a {
            color: #ffffff;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: #b8860b; /* Gold/Brown hover effect */
        }
        .copyright-text {
            font-size: 0.9rem;
            color: #ccc;
        }

        /* Scroll Top Button Styling */
        #scrollTopBtn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 99;
            border: none;
            outline: none;
            background-color: #b8860b; /* Gold/Brown button */
            color: white;
            cursor: pointer;
            padding: 10px 15px;
            border-radius: 5px;
            opacity: 0;
            transition: opacity 0.5s, background-color 0.3s;
        }
        #scrollTopBtn:hover {
            background-color: #8b6b0b;
        }
        #scrollTopBtn.show {
            opacity: 1;
        }



/* ################# Contact Us ############################## */
/* Background section */
   .contact-section {
     background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
     position: relative;
     padding: 80px 0;
     color: #fff;
   }
   .contact-section::before {
     content: "";
     position: absolute;
     top: 0; left: 0;
     width: 100%; height: 100%;
     background: rgba(0, 0, 0, 0.7);
     z-index: 0;
   }

   .contact-container {
     position: relative;
     z-index: 1;
   }

   .contact-info i {
     font-size: 30px;
     color: #00bcd4;
     margin-right: 15px;
   }

   .contact-info h5 {
     color: #00bcd4;
     margin-bottom: 5px;
     font-weight: 600;
   }

   .contact-box {
     background: #fff;
     color: #000;
     padding: 30px;
     border-radius: 5px;
     box-shadow: 0 0 15px rgba(0,0,0,0.2);
   }

   .contact-box h4 {
     font-weight: 700;
     margin-bottom: 20px;
   }

   .form-control {
     border: none;
     border-bottom: 2px solid #ddd;
     border-radius: 0;
     margin-bottom: 20px;
     box-shadow: none;
   }

   .form-control:focus {
     border-color: #00bcd4;
     box-shadow: none;
   }

   .btn-custom {
     background: #00bcd4;
     color: #fff;
     font-weight: 600;
     width: 100%;
   }

   .btn-custom:hover {
     background: #0099b2;
   }


   /* ############################## Gift page css ############################# */
   .product-card {
     position: relative;
     background: #fff;
     border-radius: 15px;
     overflow: hidden;
     transition: all 0.3s ease;
     box-shadow: 0 3px 10px rgba(0,0,0,0.05);
     padding: 15px;
   }
   .product-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 20px rgba(0,0,0,0.1);
   }
   .product-card img {
     border-radius: 10px;
     transition: transform 0.3s ease;
   }
   .product-card:hover img {
     transform: scale(1.05);
   }
   .color-dot {
     display: inline-block;
     width: 16px;
     height: 16px;
     border-radius: 50%;
     margin: 0 3px;
     border: 2px solid #fff;
     box-shadow: 0 0 0 1px #ccc;
     cursor: pointer;
     transition: transform 0.2s;
   }
   .color-dot:hover {
     transform: scale(1.2);
   }
   .stars {
     font-size: 14px;
   }

   .product-card h6{
     color: #000000;
   }
