/* styles.css */
@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Barlow", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #14201c;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0a3223;
  /* Color for headings, subheadings and title throughout the website */
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #12a16b;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #14201c;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #12a16b;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f9f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000704;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
a{
  color: var(--primary-color);
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

--------------------------------------------------------------*/
 .section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #14201c, transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}


.section-title p {


  margin-bottom: 0;
  font-size: 15px;
  color: black;
  font-weight: 400;

}


html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  /* Ensure the content takes the full viewport height */
}







/* Cookie Popup Styling */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f8f9fa;
  border-top: 1px solid #ccc;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 7px;
  color: #333;
}

.cookie-content p {
  margin-bottom: 15px;
  font-size: 0.9rem !important;
}

.cookie-link {
  color: #056579;
  text-decoration: underline;
  font-weight: bold;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
}

.btn-accept {
  background-color: #056579;
  color: #fff;
}

.btn-reject {
  background-color: #e74c3c;
  color: #fff;
}

.btn:hover {
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-buttons {
    flex-direction: column;
    gap: 5px;
  }
}












/* Style for the popup overlay */
.popup-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

/* Make the first option bold */
.bold-option {
  font-weight: bold;
}

/* Style for the popup content with border */

/* Style for the popup logo */
.popup-logo {
  position: absolute;
  top: -60px;
  /* Adjust the logo's position above the box */
  left: 50%;
  transform: translateX(-50%);
  /* Center the logo horizontally */
  width: 80px;
  /* Set a fixed width for the logo */
  height: 80px;
  /* Set a fixed height for the logo */
  background: rgb(255, 255, 255);
  /* Add a semi-transparent circle for a glass effect */
  border-radius: 50%;
  /* Make the logo background circular */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Add a subtle shadow */
  padding: 5px;
  /* Add some padding inside the circle */
  z-index: 2;
  /* Ensure the logo is above the popup content */
}

/* Style the logo image */
.popup-logo img {
  width: 100%;
  /* Fit the image within the container */
  height: 100%;
  /* Maintain aspect ratio */
  object-fit: contain;
  /* Ensure the logo scales proportionally */
}



/* Style for the popup content with glassmorphism */
.popup-content {
  position: relative;
  background: rgba(235, 232, 232, 0.301);
  /* Semi-transparent white */
  padding: 25px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  border-radius: 15px;
  /* Rounded corners */
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
  /* Soft shadow */
  border: 1px solid rgba(0, 0, 0, 0.2);
  /* Subtle border for glass effect */
  animation: popup-fade-in 0.3s ease-in-out;
  backdrop-filter: blur(15px);
  /* Enhanced blur for content */
  -webkit-backdrop-filter: blur(15px);
  /* Safari support */
  border: 2px solid #b3b2b2;
}

/* Close button style */
/* Close button style */
.close-btnn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #ffffff;
  /* Bright color for contrast */
  cursor: pointer;
  background: none;
  border: none;
  transition: transform 0.2s;
}

.close-btnn:hover {
  transform: scale(1.2);
  /* Subtle hover effect */
  color: #de262c;
  /* Highlight on hover */
}

/* Header style */
.popup-content h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #ffffff;
}

/* Add stylish underline to text */
.popup-content p {
  font-size: 1rem;
  color: #ffffff;
  /* White text for visibility */
  margin-bottom: 15px;
  position: relative;
}

.popup-content p::after {
  content: '';
  display: block;
  width: 50%;
  height: 2px;
  background: #ffffff;
  margin: 8px auto 0;
}


/* Dropdown menu styling */
.popup-content select {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #cccccc;
}

/* Button styling */
.popup-content button {
  margin-top: 15px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  /* Modern gradient */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Add button shadow */
}

.popup-content button:hover {
  background: linear-gradient(135deg, #0056b3, #003f7f);
  transform: scale(1.05);
  /* Subtle hover effect */
}

/* Fade-in animation */
@keyframes popup-fade-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}







/* Hero Section Styling */
#slider {
  width: 100%;
  padding-top: 90px;
}

.carousel-caption {
  font-family: 'Noto Sans Bengali', sans-serif;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto !important;
  /* Ensure bottom is not affecting positioning */
  text-align: center;
  /* Center align text */
  left: 0;
  /* Ensure it spans the full width */
  right: 0;
  /* Ensure it spans the full width */
}

.carousel-caption h5 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 0;
  /* Remove any margin that may push it off-center */
  padding: 20px 40px;
  /* Adjust padding if needed */
  background-color: rgba(236, 0, 0, 0.5);
  /* Set the background color of the box */
  border-radius: 25px;
  /* Make the corners rounded */
  display: inline-block;
  /* Adjust width to fit text */
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
  .carousel-caption h5 {
    font-size: 15px;
    /* Adjust font size for smaller screens */
    padding: 15px 30px;
    /* Adjust padding for smaller screens */
  }
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 15px;
    /* Further adjust font size for very small screens */
    padding: 10px 20px;
    /* Further adjust padding for very small screens */
  }
}

/* Carousel Inner Height */
.carousel-inner {
  max-height: 600px !important;
}






/* Navbar Styles */
.navbar {
  position: fixed;
  /* Sticks the navbar to the top of the viewport */
  top: 0;
  /* Ensures it stays at the top */
  z-index: 1000;
  /* Makes sure it stays above other content */
  padding: 0;
  /* Reduce padding to make the navbar thinner */
  height: 90px;
  /* Fixed height for the navbar */
  background-color: rgba(255, 255, 255, 0.5) !important;
  /* 50% opacity for transparency */
  border: none;
  /* Removes border */
  box-shadow: none;
  /* Removes shadow */
}

/* Navbar Brand */
.navbar-brand {
  font-weight: bold;
}

/* Adjust Navbar Link Font Size */
.navbar-nav .nav-link {
  font-family: 'Noto Sans Bengali', sans-serif;
  /* Bengali font */
  font-size: 25px;
  /* Font size for navbar links */
  font-weight: 700;
  /* Bold font weight */
  margin-right: 10px;
  /* Space between links */
  color: var(--primary-color) !important
  /* Red color for navbar links */
}

/* Navbar Link Hover Effect */
.nav-link:hover {
  color: #1492d7 ! IMPORTANT;
  opacity: 0.9;
  /* Blue color on hover */
}






/* Floating WhatsApp Icon */
.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-icon img {
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-icon img:hover {
  transform: scale(1.1);
}

/* Call Options (Initially Hidden) */
.call-options {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 999;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.call-button {
  display: block;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
}

.call-button i {
  margin-right: 10px;
}

/* WhatsApp Call Button */
.whatsapp-call {
  background-color: #25d366;

}

.whatsapp-call:hover {
  background-color: #1ebe56;
  color: white;
}

/* Direct Call Button */
.direct-call {
  background-color: #056579;

}

.direct-call:hover {
  background-color: #045265;
  color: white;
}

.direct-messager,
.direct-messager:hover {
  background-color: #2772c7;
  color: white;
}

/* Show Call Options when clicked */
.show-options {
  display: block;
}







/* Red Contact Button */
.contact-btn {
  position: absolute;
  bottom: 80px;
  /* 20px from the bottom */
  left: 53%;
  /* Center horizontally */
  transform: translateX(-50%);
  /* Center the button exactly */
  background-color: red;
  /* Red background */
  color: white;
  /* White text color */
  padding: 10px 20px;
  /* Padding for the button */
  font-size: 16px;
  /* Button text size */
  border: none;
  /* Remove border */
  border-radius: 5px;
  /* Slightly rounded corners */
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
}

/* Hover effect for Contact Button */
.contact-btn:hover {
  background-color: darkred;
}




/* Language Switcher (Flags) */
.language-switcher {
  display: flex;
  justify-content: center;
  /* Center the flags */
  margin-bottom: 20px;
  /* Adjust space between flags and Contact button */
  padding-top: 20px;
  /* Add some padding at the top to move the flags down */
}

.flag-icon {
  width: 30px;
  /* Size of the flag icons */
  height: auto;
  margin: 0 10px;
  cursor: pointer;
}






/* Mobile Navigation Sidebar */
.mobile-nav {
  height: 100%;
  width: 0;
  /* Initially hidden */
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.mobile-nav a {
  padding: 10px 30px;
  text-decoration: none;
  font-size: 18px;
  color: #f1f1f1;
  display: block;
  transition: 0.3s;
}

.mobile-nav a:hover {
  background-color: #575757;
}

.mobile-nav .closebtn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 36px;
}



/* Overlay when sidebar is active */
.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  transition: 0.5s;
}

/* Content darkening when sidebar is open */
.content {
  transition: 0.5s;
}

/* Media Query for mobile view */
@media (max-width: 768px) {
  .navbar .collapse {
    display: none;
    /* Hide the normal navbar links on mobile */
  }

  .navbar-toggler {
    display: block;
    /* Show the mobile nav button */
  }
}











/* Container for image and logo */
.image-container {
  position: relative;
  /* Needed for absolute positioning of the logo */
}

/* Style for the logo */
.card-logo {
  position: absolute;
  top: 250px;
  /* Adjust as needed */
  right: 10px;
  /* Adjust as needed */
  width: 50px;
  /* Adjust as needed */
  height: auto;
  /* Maintain aspect ratio */
  opacity: 0.8;
  /* Optional: adjust opacity */
  z-index: 10;
  /* Make sure the logo is on top */
}

/* Ensure the image is displayed correctly */
.card-img-top {
  width: 100%;
  height: auto;
}

/* Adjust logo size on smaller screens */
@media (max-width: 576px) {
  .navbar-brand img {
    max-height: 40px;
    /* Reduce the logo size on smaller screens */
  }
}






#hero p {
  color: #000000;
  /* Change this to your desired color (e.g., #ffffff for white) */
}





/* Background Image with Adjustable Opacity for Services Section */
#services {
  position: relative;
  /* Required for overlay positioning */
  background-image: url('bg.jpg');
  /* Your background image */
  background-size: cover;
  /* Ensure the image covers the section */
  background-position: center;
  /* Center the image */
  padding: 60px 0;
  /* Adjust padding as needed */

}


.profile-border {
  border: 6px solid #186997;

}




/* Testimonial Section Styles */
#testimonials .card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card-title {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 1.25rem;
}

.card-text {
  font-size: 1rem;
}







/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--primary-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--primary-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--primary-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--primary-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}





/* Service Cards */
.card {
  margin-top: 20px;
}

.card-title {
  text-align: center;
}

/* Card hover effect */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



.aa {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-weight: 700;
  text-align: center;
  color: #186997;
  margin-top: 50px;
  text-decoration: underline;
}






/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #0a567e;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--primary-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}


.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}







/* Gallery Section */
.gallery-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.section-title {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.gallery-item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Ensure two images per row on mobile (max-width: 576px) */
@media (max-width: 576px) {
  .gallery-item {
    margin-bottom: 20px;
  }

  .col-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* Adjust layout on medium screens */
@media (min-width: 768px) {
  .gallery-item {
    margin-bottom: 30px;
  }
}







/* Team Section */
.team-section {
  background-color: #f4f4f4;

}

.section-title {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
}



.team-item {
  flex: 0 0 400px;
  text-align: center;
}

.team-item img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-item h5 {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 18px;
  margin-top: 10px;
  font-weight: 600;
}

.team-item p {
  font-size: 14px;
  color: #555;
}

/* Animation for automatic scrolling */

/* Stop animation on hover */
.team-slider:hover {
  animation-play-state: paused;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .team-item {
    flex: 0 0 150px;
  }
}





/* Stop animation on hover */
.team-slider:hover {
  animation-play-state: paused;
}


.team-slider .card {
  font-size: 20px;
  border-radius: 25px;
  margin: auto;
  height: 100%;
}

.team-slider .col-md-4 {
  padding-bottom: 30px;
}

.team-slider .card img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.team-slider .socials {
  padding: 20px;
}

.team-slider.card-link {
  display: contents;
}



/* Social Icons Styling */
.social-icons {
  position: absolute;
  bottom: 10px;
  /* Distance from bottom */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  padding: 10px;
}

.social-icon {
  margin-right: -20px;
  /* Adjust the overlap between icons */
}

.social-icon img {
  width: 24px;
  /* Size of the icons */
  height: 24px;
  display: block;
}

/* Optional: Add hover effect */
.social-icon:hover img {
  opacity: 0.7;
}


#slider video {
  object-fit: cover;
  /* Ensures the video covers the entire container */
  width: 100%;
  height: 100vh;
  /* Makes the video full height */
}




#slider {
  overflow: hidden;
  /* Prevent overflow in slider */
  position: relative;
  /* Ensure it's positioned relative to parent */
}







/* Container for Google Map to make it responsive */
.map-responsive {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  margin-bottom: 1rem;
  /* Space below the map */
  background-color: #b5babd;
  /* Optional: background color for better visibility */

}

/* Map iframe styling */
.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* This one remains */
  height: 100%;
  /* This will ensure it fills the map container properly */
  border: 0;
}

/* Ensure map responsiveness and centering */
@media (max-width: 768px) {
  .map-responsive {
    padding-top: 75%;
    /* Adjust aspect ratio for better mobile view if needed */
    max-width: 100%;
    margin: 0 auto;
    /* Center the map */
  }
}

@media (max-width: 576px) {
  .map-responsive {
    padding-top: 70%;
    /* Adjust this to reduce space on smaller screens */
  }
}






.sound-toggle {
  position: absolute;
  top: 20px;
  /* Move to top */
  left: 20px;
  /* Move to left */
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
}

.sound-toggle button {
  background-color: transparent;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
}




/* Style for language switcher in the footer */
.language-switcher-footer {
  position: absolute;
  right: 50px;
  bottom: 33px;
}


.flag-icon-footer {
  /* width: 30px; */
  height: 35px;
  /* margin-left: 10px; */
  cursor: pointer;
}

/* Ensure flags in the footer appear only on desktop view */
@media (max-width: 768px) {
  .language-switcher-footer {
    display: none;
  }
}

/* Ensure flags in the mobile sidebar are visible only on mobile */
@media (min-width: 769px) {
  .language-switcher {
    display: none;
  }
}

.pagination {
  justify-content: center;
}

a.card {
  text-decoration: none;
  color: black;
}


.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  min-height: 362px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background-repeat: no-repeat;
  object-fit: cover;
  background-size: cover;
  background-position: top left;
}


.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 400;
}


.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.page-title nav ol li a {
  color: #186997;
  text-decoration: none;
}


.truncate2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.truncate3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.truncate4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* number of lines to show */
  line-clamp: 4;
  -webkit-box-orient: vertical;
}






.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.cursor::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor.active {
  width: 60px;
  height: 60px;
}




/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(  --primary-color) 50%, color-mix(in srgb, var(  --primary-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform:translate(-50%, -50%);
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(  --primary-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(  --primary-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


.filter-btns{
  text-align: center;
}

.filter-btns button {
	border-radius: 4px;
	cursor: pointer;
	border: 2px solid #808080b3;
	background-color: var(--primary-color);
	color: white;
	margin-bottom: 15px;
	font-weight: 700;
	padding: 11px 15px;
	font-size: 26px;
}


.blog_items_container .item .img{
    max-width:150px;
    max-height:100px;
}
.blog_items_container .item .img img{
    max-width:100%;
    max-height:inherit;
    object-fit:contain;
}

.blog_items_container .item{
    background:#8484842b;
    padding:7px;
    border-radius:4px;
    margin-bottom:7px;   
}

.blog_items_container .item a{
   display:flex;
    align-items:center;
    gap:8px;;
    color:var(--primary-color);
    cursor:pointer;
    text-decoration:none;
    font-size:80%
}

.btn-primary{
    background-color:var(--primary-color) !important;
    border-color:var(--primary-color) !important;
    color:white !important
}


.secondary_items  .section-title{
    color:var(--secondary-color) !important;
}
.secondary_items .section-title h2::after{
    background-color:var(--secondary-color) !important;
}
.secondary_items  .section-title h2::before{
    background-color:var(--secondary-color) !important;
}









/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero .blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .blog-hero .blog-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog-hero .blog-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease-in-out;
  background-color: var(--surface-color);
}

.blog-hero .blog-item:hover {
  transform: translateY(-5px);
}

.blog-hero .blog-item:hover img {
  transform: scale(1.05);
}

.blog-hero .blog-item:hover .blog-content {
  background: linear-gradient(0deg, color-mix(in srgb, var(--default-color), transparent 10%) 0%, transparent 100%);
}

.blog-hero .blog-item.featured {
  grid-column: span 8;
}

@media (max-width: 991px) {
  .blog-hero .blog-item.featured {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-item.featured {
    grid-column: span 1;
  }
}

.blog-hero .blog-item.featured .post-title {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .blog-hero .blog-item.featured .post-title {
    font-size: 1.5rem;
  }
}

.blog-hero .blog-item:not(.featured) {
  grid-column: span 4;
}

@media (max-width: 991px) {
  .blog-hero .blog-item:not(.featured) {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-item:not(.featured) {
    grid-column: span 1;
  }
}

.blog-hero .blog-item img {
  width: 100%;
  height: 100%;
  
  transition: transform 0.3s ease-in-out;
  aspect-ratio: 16/9;
}

.blog-hero .blog-item .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(0deg, color-mix(in srgb, var(--default-color), transparent 20%) 0%, transparent 100%);
  transition: background 0.3s ease-in-out;
}

.blog-hero .blog-item .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--contrast-color);
}

.blog-hero .blog-item .post-meta .date,
.blog-hero .blog-item .post-meta .category {
  display: flex;
  align-items: center;
}

.blog-hero .blog-item .post-meta .date::before,
.blog-hero .blog-item .post-meta .category::before {
  font-family: "bootstrap-icons";
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-hero .blog-item .post-meta .date::before {
  content: "\f282";
}

.blog-hero .blog-item .post-meta .category::before {
  content: "\f5d3";
}

.blog-hero .blog-item .post-title {
  margin: 0;
  font-family: var(--heading-font);
}

.blog-hero .blog-item .post-title a {
  color: var(--contrast-color);
  text-decoration: none;
}

.blog-hero .blog-item .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}




/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts {
  padding-top: 60px;
  padding-bottom: 62px;
}

.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  line-height: 24px;
  color: var(--heading-color);
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}

.blog-posts .meta {
  position: relative;
  margin-top: -20px;
  padding: 0 30px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--primary-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta .post-date {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  font-size: 13px;
  padding: 6px 12px;
  text-align: center;
  margin-right: 15px;
  border-radius: 4px;
}

.blog-posts .meta .post-date span {
  display: block;
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 20px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--primary-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}



/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .card {
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  height: 100%;
  background-color: var(--surface-color);
}

.recent-blog-posts .card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.recent-blog-posts .card .card-top {
  padding: 1rem;
}

.recent-blog-posts .card .card-top img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.recent-blog-posts .card .card-top .author-name {
  font-size: 0.9rem;
  color: var(--heading-color);
}

.recent-blog-posts .card .card-top .likes {
  font-size: 0.9rem;
  color: var(--primary-color);
}

.recent-blog-posts .card .card-top .likes i {
  margin-right: 0.25rem;
}

.recent-blog-posts .card .card-img-wrapper {
  overflow: hidden;
  max-height: 250px;
}

.recent-blog-posts .card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.recent-blog-posts .card .card-body {
  padding: 1.5rem;
}

.recent-blog-posts .card .card-body .card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
  font-weight: 600;
}

.recent-blog-posts .card .card-body .card-title a {
  color: inherit;
}

.recent-blog-posts .card .card-body .card-title:hover {
  color: var(--primary-color);
}

.recent-blog-posts .card .card-body .card-text {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}




