.elementor-8 .elementor-element.elementor-element-7ef2f111{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-8 .elementor-element.elementor-element-7ef2f111:not(.elementor-motion-effects-element-type-background), .elementor-8 .elementor-element.elementor-element-7ef2f111 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-8 .elementor-element.elementor-element-70198229{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-8 .elementor-element.elementor-element-7c8e60a1{--display:flex;--min-height:0px;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:10px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-8 .elementor-element.elementor-element-17e4d353{margin:-17px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-8 .elementor-element.elementor-element-69779974{--display:flex;--min-height:0px;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:-23px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-8 .elementor-element.elementor-element-4c06ac4c{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-8 .elementor-element.elementor-element-40264b28{--display:flex;--margin-top:18px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-8 .elementor-element.elementor-element-40264b28:not(.elementor-motion-effects-element-type-background), .elementor-8 .elementor-element.elementor-element-40264b28 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-8 .elementor-element.elementor-element-28e67c6{--display:flex;}.elementor-8 .elementor-element.elementor-element-1697f1a0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8 .elementor-element.elementor-element-4da15946{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-8 .elementor-element.elementor-element-4da15946{--margin-top:-15px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-8 .elementor-element.elementor-element-28e665a2{margin:-3px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}}/* Nekit custom element styles *//* Top Bar Styles - Compact Version */
.badc-topbar {
  background-color: #62007a;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 15px; /* reduced padding for smaller height */
  flex-wrap: wrap; /* Allows items to wrap to the next line on smaller screens */
  font-family: 'SolaimanLipi', sans-serif; /* Using the specified font */
  font-size: 13px;
}

.badc-topbar-left span {
  white-space: nowrap; /* Ensures text stays on one line */
  font-size: 13px;
  line-height: 1; /* Compact line height */
}

.badc-topbar-right {
  display: flex;
  align-items: center;
  gap: 5px; /* Space between search input and buttons */
  font-size: 13px;
}

/* Smaller Input */
.badc-topbar-right input[type="text"] {
  padding: 4px 8px; /* smaller height & padding */
  font-size: 13px;
  border: none;
  border-radius: 3px;
  width: 140px; /* slightly narrower */
  height: 28px;
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Smaller Buttons */
.search-btn,
.lang-btn {
  padding: 4px 10px;
  font-size: 13px;
  height: 28px;
  line-height: 1;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.search-btn {
  background-color: green;
  color: white;
}

.lang-btn {
  background-color: #ddd;
  color: #000;
}

/* Responsive adjustments for smaller screens (e.g., mobile phones) */
@media (max-width: 600px) {
  .badc-topbar {
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align items to the left */
    gap: 8px; /* Add some space between stacked items */
    padding: 10px 15px; /* Slightly more padding for mobile readability */
  }

  .badc-topbar-left {
    width: 100%; /* Ensure the left text takes full width */
    text-align: center; /* Center the text on small screens */
  }

  .badc-topbar-right {
    width: 100%; /* Ensure the right section takes full width */
    flex-wrap: wrap; /* Allow search input and buttons to wrap if needed */
    justify-content: center; /* Center the search input and buttons */
  }

  .badc-topbar-right input[type="text"] {
    width: calc(100% - 120px); /* Adjust width to leave space for buttons */
    max-width: 200px; /* Prevent input from becoming too wide on slightly larger mobiles */
  }

  /* Make buttons take up less space if needed, or stack them */
  .search-btn,
  .lang-btn {
    flex-grow: 1; /* Allow buttons to grow and fill available space */
    max-width: 80px; /* Limit max width for buttons */
  }
}

/* Further adjustments for very small screens if necessary */
@media (max-width: 400px) {
  .badc-topbar-right {
    flex-direction: column; /* Stack search input and buttons */
    align-items: center; /* Center them when stacked */
    gap: 10px;
  }

  .badc-topbar-right input[type="text"],
  .search-btn,
  .lang-btn {
    width: 100%; /* Make all elements full width when stacked */
    max-width: 250px; /* Limit max width for better appearance */
  }
}/* Nekit custom element styles ends here */
/* Nekit custom element styles */.title-text h1,
.title-text h3 {
  text-shadow:
    4px 5px 4px rgba(0, 0, 0, 0.7),   /* dark glow around text */
    0 0 15px rgba(0, 0, 0, 0.9);      /* soft blur for depth */
}

.hero-fade-slider {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.hero-fade-slider .hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fadeSlider 10s infinite;
}

.hero-fade-slider .slide1 {
  animation-delay: 5s;
}

.hero-fade-slider .slide2 {
  animation-delay: 5s;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fadeSlider {
  0% { opacity: 1; }
  5% { opacity: 1; }
  45% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* Overlay Text & Logo */
.overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  color: white;
  z-index: 2;
}

.logo {
  height: 100px;
  margin-right: 20px;
}

.title-text h1 {
  margin: 0;
  font-size: 28px;
  color: white;
}

.title-text h3 {
  margin-top: 10px;
  font-size: 18px;
}/* Nekit custom element styles ends here */
/* Nekit custom element styles *//* --- Custom Top Menu Styles --- */

.custom-top-menu {
    background-color: #f8f8f8; /* Light grey background for the entire menu strip */
    border-bottom: 1px solid #ddd; /* Subtle bottom border */
    padding: 0 10px; /* Padding for the entire menu strip */
    box-sizing: border-box;
    font-family: 'SolaimanLipi', Arial, sans-serif; /* Use your preferred Bengali font */
    max-width: 1200px; /* Match your content width */
    margin: 0 auto; /* Center the menu */
    position: relative;
    z-index: 10;
}

.custom-top-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.custom-top-menu li {
    position: relative;
    background-color: transparent;
    margin: 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Vertical separator/border between menu items */
.custom-top-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 15px; /* Height of the dashed line */
    border-right: 1px dashed #ddd; /* Dashed separator color */
}

.custom-top-menu li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 14px;
    color: #555; /* Default fallback color */
    white-space: nowrap;
    transition: color 0.3s ease;
    line-height: 1.2;
}

/* Home icon specific styling */
.custom-top-menu li.menu-item-home a {
    font-size: 18px;
    padding: 8px 15px;
    color: #4CAF50; /* Example color for home icon */
}

/* Main menu item specific text colors based on menu.JPG */
.custom-top-menu li.menu-item-home a { color: #808080; } /* Grey for home icon */
.custom-top-menu li.menu-item-orange a { color: #ff8c00; } /* Orange color */
.custom-top-menu li.menu-item-light-blue a { color: #00bfff; } /* Light blue color */
.custom-top-menu li.menu-item-purple a { color: #8a2be2; } /* Purple color */


/* Active and Hover States for regular main menu items */
.custom-top-menu li:not(.has-mega-menu):hover,
.custom-top-menu li.menu-item-active {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1;
}

.custom-top-menu li:not(.has-mega-menu):hover a,
.custom-top-menu li.menu-item-active a {
    color: #333; /* Darker text color on active/hover */
}

/* Remove separator for active/hovered main menu item */
.custom-top-menu li:not(.has-mega-menu):hover::after,
.custom-top-menu li.menu-item-active::after {
    border-right: none;
}


/* --- Mega Menu Specific Styles --- */

.has-mega-menu {
    position: relative;
}

.mega-menu-content {
    display: none; /* Hidden by default */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1200px; /* Constrains to your main content width */

    background-color: #fff;
    border: 1px solid #dcdcdc; /* Subtle border around the whole mega menu */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 0;
    z-index: 20;
    box-sizing: border-box;
    overflow: hidden;
}

/* Top colored strip for the mega menu (orange from sub menu.JPG) */
/* This rule applies to the first mega menu item's content, which is "আমাদের বিষয়ে" */
.custom-top-menu > ul > li.has-mega-menu:first-of-type > .mega-menu-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px; /* Height of the colored strip */
    background-color: #f68c1f; /* Orange color from the image */
    z-index: 21;
}

/* Display mega menu on hover */
.has-mega-menu:hover > .mega-menu-content {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px; /* Add padding to account for the top colored strip */
}

/* Style for columns within the mega menu */
.mega-menu-column {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    box-sizing: border-box;
    border-right: 1px solid #eee; /* Light vertical separator between columns */
}

/* Remove border-right for the last column */
.mega-menu-column:last-child {
    border-right: none;
}

/* --- Submenu Header Color --- */
.mega-menu-column h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #f68c1f; /* Orange color for column headers, as requested */
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px dotted #ccc; /* Dotted underline for headers */
    padding-bottom: 5px;
    white-space: nowrap;
}

.mega-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
}

.mega-menu-column ul li {
    background-color: transparent;
    margin-bottom: 0;
    border-right: none;
    box-shadow: none;
    line-height: 1.5;
}

.mega-menu-column ul li::after {
    content: none;
}

/* --- Submenu Text Color (Black) and Border Bottom (#cccc) --- */
.mega-menu-column ul li a {
    padding: 5px 10px;
    font-size: 13px;
    display: block;
    text-decoration: none;
    color: #000000; /* Black color for sub-menu text */
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mega-menu-column ul li:not(:last-child) a {
    border-bottom: 1px solid #cccc; /* Border for sub-menu items */
    margin-bottom: 5px; /* Add some space below the border */
    padding-bottom: 5px; /* Add padding above the border */
}

/* Remove bottom border for the last item in each column */
.mega-menu-column ul li:last-child a {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}


/* Hover effect for sub-menu items */
.mega-menu-column ul li a:hover {
    background-color: #f0f0f0; /* Light grey background on hover */
    color: #333; /* Darker text color on hover for contrast */
}


/* Apply hover background to parent menu item when mega menu is open */
.has-mega-menu:hover > a {
    background-color: #f68c1f; /* Orange background for the main link on hover */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: #fff; /* White text color on hover */
}

/* Remove the main menu item's separator when its mega menu is open */
.has-mega-menu:hover::after {
    border-right: none;
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .custom-top-menu > ul > li.has-mega-menu > .mega-menu-content {
        max-width: 90vw;
    }
}

@media (max-width: 768px) {
    .custom-top-menu {
        padding: 0 5px;
    }

    .custom-top-menu ul {
        justify-content: center;
    }

    .custom-top-menu li a {
        padding: 8px 10px;
        font-size: 13px;
    }

    .custom-top-menu li.menu-item-home a {
        font-size: 16px;
        padding: 6px 10px;
    }

    .custom-top-menu li::after {
        display: none;
    }

    .mega-menu-content {
        position: relative;
        width: 100%;
        left: 0;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 10px;
        margin-top: 5px;
    }

    .has-mega-menu:hover > .mega-menu-content {
        display: none;
    }

    .has-mega-menu > .mega-menu-content::before {
        display: none;
    }

    .mega-menu-column {
        min-width: 100%;
        padding: 10px 5px;
        border-right: none;
        border-bottom: 1px dotted #eee;
    }
    .mega-menu-column:last-child {
        border-bottom: none;
    }

    .mega-menu-column h4 {
        font-size: 15px;
        padding-bottom: 3px;
        margin-bottom: 8px;
    }

    .mega-menu-column ul li a {
        font-size: 12px;
        padding: 3px 5px;
    }

    /* Remove submenu border bottom for mobile if items are stacked */
    .mega-menu-column ul li:not(:last-child) a {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .custom-top-menu li a {
        font-size: 12px;
        padding: 6px 8px;
    }
}/* Nekit custom element styles ends here */
/* Nekit custom element styles *//* Top Bar */
        .top-bar {
            background-color: #683091; /* Purple background */
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            font-size: 14px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .top-bar-left {
            font-weight: bold;
        }

        .top-bar-right .lang-btn {
            background-color: #ddd; /* Light gray button */
            color: #000;
            padding: 5px 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 13px;
        }

        /* Search Section */
        .search-section {
            background-color: #62007a; /* Purple background */
            padding: 15px;
            display: flex; /* Changed to flex */
            flex-direction: row; /* Changed to row for mobile as per image */
            gap: 10px; /* Space between select and button */
            align-items: center; /* Vertically align */
            justify-content: space-between; /* Distribute space */
        }

        .search-section select {
            width: calc(100% - 70px); /* Adjust width to leave space for Go button (approx 60px + 10px gap) */
            padding: 10px 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 15px;
            box-sizing: border-box; /* Include padding in width */
            flex-grow: 1; /* Allow select to grow */
        }

        .search-section .go-btn {
            background-color: #4CAF50; /* Green button */
            color: white;
            padding: 10px 15px; /* Smaller padding for smaller button */
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            width: auto; /* Auto width for mobile */
            box-sizing: border-box;
            flex-shrink: 0; /* Prevent button from shrinking */
        }/* Nekit custom element styles ends here */
/* Nekit custom element styles *//* Top Bar */
        .top-bar {
            background-color: #62007a; /* Purple background */
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            font-size: 14px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .top-bar-left {
            font-weight: bold;
        }

        .top-bar-right .lang-btn {
            background-color: #ddd; /* Light gray button */
            color: #000;
            padding: 5px 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 13px;
        }

        /* Search Section */
        .search-section {
            background-color: #62007a; /* Purple background */
            padding: 15px;
            display: flex; /* Changed to flex */
            flex-direction: row; /* Changed to row for mobile as per image */
            gap: 10px; /* Space between select and button */
            align-items: center; /* Vertically align */
            justify-content: space-between; /* Distribute space */
        }

        .search-section select {
            width: calc(100% - 70px); /* Adjust width to leave space for Go button (approx 60px + 10px gap) */
            padding: 10px 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 15px;
            box-sizing: border-box; /* Include padding in width */
            flex-grow: 1; /* Allow select to grow */
        }

        .search-section .go-btn {
            background-color: #4CAF50; /* Green button */
            color: white;
            padding: 10px 15px; /* Smaller padding for smaller button */
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            width: auto; /* Auto width for mobile */
            box-sizing: border-box;
            flex-shrink: 0; /* Prevent button from shrinking */
        }

        /* Hero Section */
        .hero-section {
            background-color: #62007a; /* Purple background */
            color: white;
            padding: 20px 15px;
            display: flex; /* Changed to flex */
            flex-direction: row; /* Changed to row for mobile as per image */
            align-items: center; /* Vertically align logo and content */
            text-align: left; /* Text alignment for content */
            gap: 15px; /* Space between logo and text */
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 20px; /* Space below hero section */
        }

        .hero-section .logo {
            width: 50px; /* Adjust logo size */
            height: 50px;
            border-radius: 50%; /* Make it round */
            object-fit: cover;
            border: 2px solid white; /* White border around logo */
            flex-shrink: 0; /* Prevent logo from shrinking */
        }

        .hero-section .hero-content {
            flex-grow: 1; /* Allow content to take remaining space */
        }

        .hero-section h1 {
            font-size: 13px;
            font-weight: bold;
            color: White;
            margin: 0;
            line-height: 1.3;
        }

        .hero-section p {
            font-size: 10px;
            margin: 0;
        }

        /* Bottom Navigation */
        .bottom-nav {
            background-color: #f2f2f2; /* Light gray background */
            color: #333;
            display: flex;
            justify-content: flex-start; /* Changed to flex-start as "পোলিং" is removed */
            align-items: center;
            padding: 12px 15px;
            position: fixed; /* Fixed at the bottom */
            bottom: 0;
            left: 0;
            width: 100%;
            box-shadow: 0 -2px 4px rgba(0,0,0,0.1); /* Shadow at the top */
            box-sizing: border-box;
        }

        .bottom-nav-left {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
        }

        .bottom-nav-left .menu-icon {
            font-size: 24px; /* Size of hamburger icon */
            color: #62007a; /* Purple color */
        }

        /* General Responsive Adjustments */
        @media (min-width: 768px) {
            /* Adjustments for tablet and desktop if needed */
            .search-section {
                flex-direction: row; /* Align items horizontally */
                justify-content: center;
                gap: 15px;
            }
            .search-section select {
                width: 250px; /* Wider for desktop */
            }
            .search-section .go-btn {
                width: auto; /* Auto width for desktop */
            }
            .hero-section {
                padding: 30px 20px;
                flex-direction: row; /* Keep as row on desktop */
            }
            .hero-section h1 {
                font-size: 28px;
            }
            .hero-section p {
                font-size: 18px;
            }
            .bottom-nav {
                position: static; /* Example: make it static on desktop */
                box-shadow: none;
            }
        }/* Nekit custom element styles ends here */