html {
    overflow-x: hidden;
}


/* HEADER START */
/*charlotte*/
.py-5{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.menu-item > a {
  color: #00005a !important; /* Remove !important if possible */
  text-decoration: none;
}

/* Main menu container */
.main_menu {
  display: flex;
  justify-content: flex-end; /* or space-between if preferred */
  padding: 0;
  margin: 0;
  align-items: center;
  list-style: none;
}

/* Menu items */
#primary-nav .main_menu li {
  list-style: none;
  display: inline-block; /* You can also try flex items */
  padding-inline: 20px;
}

/* Links inside menu items */
.main_menu li a {
  text-decoration: none;
  color: inherit;
  font-size: 18px;
  padding: 10px 15px; /* Added padding here */
  display: inline-block; /* Make sure padding works */
  transition: all 0.3s ease;
}

.main_menu li a {
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-bottom: 4px; /* space for underline */
}

/* Underline bar initially hidden */
.main_menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #f50082;
  border-radius: 2px;
  transition: width 0.3s ease;
  top:130%;/*charlotte*/
}

/* On hover, underline expands */
#main_menu > li:hover > a::after {
  width: 100%; /* half underline */
}

/* Active menu item: underline visible */
.main_menu li.active > a::after {
  width: 50%;
}

/* Optional: change text color on hover and active */
#main_menu > li:hover > a,
.main_menu li.active > a {
  color: #ff0091 !important;
  font-weight: bold !important;
}



#main_menu .sub-menu li:hover > a{
  color: #fff !important;
}

.open_search {
    cursor: pointer;
}

.open_search i {
    color: #00005a;
}

.search_form {
    background-color: #000000ad;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
    margin: 0;
    padding: 0;
    text-align: right;
    display: none;
}

.search_form form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    text-align: center;
}

.search_form form input {
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 0;
    font-size: large;
    height: 53px;
}

.search_form form input:focus {
    border: 1px solid #fff;
    box-shadow: none;
}

.search_form form button {
    background-color: #f50082;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}
.close_search_btn {
    position: absolute;
    top: 10px;
    right: -10px;
    background-color: transparent;
    border: none;
    color: #f50082;
    font-size: xxx-large;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.close_search_btn:hover {
    background-color: white;
    color:f50082 !important;
    border-radius: 50%;
}
.search-icon {
    position: absolute;
    top: 23%;
    left: 15px;
    transform: translateY(-50%);
    pointer-events: none; /* Make it non-clickable */
    color: #f50082;
    font-size: 22px;
    transition: color 0.3s ease; /* smooth transition */
}

.search-icon:hover {
    color: #fff !important; /* turns white on hover */
}

.search-field {
    padding-left: 50px !important; /* space so text doesn't overlap the icon */
}



header {
    top: 0;
    width: 100%;
    z-index: 999;
    /*     background-color: red !important; */
    background-color: white;
}

.custom-logo-link img {
    width: 200px;
}

/* HEADER END */

/* FOOTER START */
/* newsletter start */
#subscription_email {
    border-radius: 0;
    padding: 10px;
    border: 1px solid #4f4b4b;
}

#subscription_btn {
    border: 1px solid #4f4b4b;
    border-radius: 0;
    margin-top: 10px;
}

#subscription_btn:hover {
    background-color: #4f4b4b;
    color: #fff;
}

/* newsletter end */
footer {
    box-shadow: 0px -2px 4px -2px rgba(0, 0, 0, 0.2);
    padding-top: 50px;
}

.copyright_row {
    background-color: #000;
    color: #fff;
    padding-top: 10px;
    font-size: small;
}

/* FOOTER END */

/* body */
.main_content {
    min-height: 60vh;
}

/*Contact form 7 form css start */
.wpcf7 {
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}

.wpcf7-form,
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form p,
.wpcf7-form span,
.wpcf7-form label {
    width: 100%;
	color:#000;
	padding-bottom: 10px;
}

.wpcf7-form label{
	color:#fff;
}
.wpcf7-form {
    border: 1px solid #e0dede;
    padding: 20px;
	background-color: rgba(245, 0, 130);
	border-radius:6px;
}

.wpcf7-form input {
    border: none;
    border-bottom: 1px solid #e0dede;
    padding-top: 10px;
    padding-bottom: 5px;
    outline: none;
/*     margin-top: 10px; */
	border-radius: 5px
}

.wpcf7-form input:focus {
    border: 1px solid #0073aa;
	box-shadow: 0 0 5px rgba(0, 115, 170, 0.4);
}

.wpcf7-form textarea {
    border: 1px solid #e0dede;
    outline: none;
/*     margin-top: 10px; */
    border-radius: 10px;
    padding: 10px;
}

.wpcf7-form textarea:focus {
    border: 1px solid #0073aa;
	box-shadow: 0 0 5px rgba(0, 115, 170, 0.4);
}

.wpcf7-form [type=submit] {
    background-color: #b9e40c;
    padding: 10px;
}

.wpcf7-spinner{
	margin:0px;
}

.wpcf7 form .wpcf7-response-output{
	margin:0px;
}
/*Contact form 7  form css end */

/* widths starts */
.width_lg_10 {
    width: 10% !important;
}

.width_lg_20 {
    width: 20% !important;
}

.width_lg_30 {
    width: 30% !important;
}

.width_lg_40 {
    width: 40% !important;
}

.width_lg_50 {
    width: 50% !important;
}

.width_lg_60 {
    width: 60% !important;
}

.width_lg_70 {
    width: 70% !important;
}

.width_lg_80 {
    width: 80% !important;
}

.width_lg_90 {
    width: 90% !important;
}

.width_lg_100 {
    width: 100% !important;
}

/* widths end */


@media only screen and (max-width: 1024px) {
    .width_md_10 {
        width: 10% !important;
    }

    .width_md_20 {
        width: 20% !important;
    }

    .width_md_30 {
        width: 30% !important;
    }

    .width_md_40 {
        width: 40% !important;
    }

    .width_md_50 {
        width: 50% !important;
    }

    .width_md_60 {
        width: 60% !important;
    }

    .width_md_70 {
        width: 70% !important;
    }

    .width_md_80 {
        width: 80% !important;
    }

    .width_md_90 {
        width: 90% !important;
    }

    .width_md_100 {
        width: 100% !important;
    }
}

@media only screen and (max-width: 767px) {
    .width_sm_10 {
        width: 10% !important;
    }

    .width_sm_20 {
        width: 20% !important;
    }

    .width_sm_30 {
        width: 30% !important;
    }

    .width_sm_40 {
        width: 40% !important;
    }

    .width_sm_50 {
        width: 50% !important;
    }

    .width_sm_60 {
        width: 60% !important;
    }

    .width_sm_70 {
        width: 70% !important;
    }

    .width_sm_80 {
        width: 80% !important;
    }

    .width_sm_90 {
        width: 90% !important;
    }

    .width_sm_100 {
        width: 100% !important;
    }
}


/* SHIVNEEL HEADER CSS START */
header {
    top: 0;
    transition: top 0.2s ease-in-out;
    width: 100%;
}

.nav-up {
    top: -100px;
}

/* SHIVNEEL HEADER CSS END */
.wpcf7-form [type=submit] {
    color: #f50082;
    background-color: #fff;
    border: 2px solid;
    border-color: #f50082;
    height: 2.5rem;
    border-radius: 6px;
    padding: 5px;
    font-size: 16px !important;
}

.wpcf7-form [type=submit]:hover {
    color: #fff !important;
    background-color: #f50082;
    border: none;
    box-shadow: none;
    color: rgba(11, 11, 11, 1);
    border: 1px solid;
    border-color: #fff;
	border-radius: 6px;
}

/*Orange Button*/
.orange_btn .guten-button-sm {
    color: #ffffff;
    background-color: rgba(255, 143, 0, 1);
    border: 2px solid;
    border-color: rgba(255, 143, 0, 1);
    height: 2.5rem;
    border-radius: 0;
    font-size: 16px !important;
    padding: 18px 32px !important;
	z-index:9999!important;
}

.orange_btn .guten-button-sm:hover {
    color: #ffffff;
    background-color: #ffffff !important;
    border: none;
    box-shadow: none;
    color: rgba(11, 11, 11, 1);
    border: 1px solid;
    border-color: rgba(11, 11, 11, 1);
}

/*  Certification class for learn more btn START*/
.orangeBtnCls {
    color: #ffffff;
    background-color: #ff8f00 !important;
    border: 2px solid;
    border-color: rgba(255, 143, 0, 1);
    height: 2.5rem;
    border-radius: 0;
    font-size: 16px !important;
    padding: 18px 32px !important;
}

/* .orangeBtnCls:hover{
	color: #ffffff;
	background-color:transparent !important;
	border: none;
	box-shadow: none;
	color:rgba(11, 11, 11, 1);
	border: 1px solid;
	border-color: rgba(11, 11, 11, 1);
} */
/*  Certification class for learn more btn END*/

/* Footer CSS subscribtion form */
.input_div_container {
    position: relative;
}

.subscribe_cls {
    top: 14%;
    right: 5%;
    width: 33%;
    position: absolute;
    color: #ffffff;
    background-color: rgba(255, 143, 0, 1);
    border: 2px solid;
    border-color: rgba(255, 143, 0, 1);
    height: 2.5rem;
    border-radius: 0;
    padding: 5px;
    font-size: 16px !important;
    font-family: Heebo !important;
    letter-spacing: 0.125em;
}

.subscribe_cls:hover {
    color: #ffffff;
    /*         background-color: #f20505; */
    background-color: transparent;
    border: none;
    /* font-weight: bold; */
    box-shadow: none;
    color: rgba(11, 11, 11, 1);
    border: 1px solid;
    border-color: rgba(11, 11, 11, 1);
}


#subscription_email {
    height: 3.5rem;
    box-shadow: rgb(17 17 26 / 5%) 0px 4px 16px, rgb(17 17 26 / 14%) 0px 8px 32px;
    border: none;
}

/* subscribtion form */
#subscription-bot {
    width: 1px;
    height: 1px;
    border: none;
    outline: none;
    background-color: transparent;
}

.col_height {
    height: 356px;
}

.card_cls {
    border: 1px solid #8080808a;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px 0px;
    border-radius: 5px;
}

.card_cls:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.height-600 > div{
    height:600px;
}

/* .certificationCls .wordpress a{
	display:none !important;
} */

.tb_nc_post_wrapper{
	padding: 0 !important;
	
}


.uagb-block-f646affb .swiper-content{
	display:flex;
}

.uagb-slider-container.uagb-block-bc46405d{
	padding:0 !important;
}	
 .page-banner {
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;	 
} 
#tb_sp_id-1295473 .tb_sp_post_wrapper{
    padding: 3px !important;
}
.tb_sp_image_wrap_ img{
    border-radius: 15px !important;
}


/* ===== DROPDOWN MENU FIX - ADD THIS TO YOUR EXISTING CSS ===== */

/* Make parent li position relative for absolute positioning of dropdown */
#primary-nav .main_menu > li {
  position: relative;
}

/* Style the dropdown/submenu */
#primary-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
/*   opacity: 0; */
/*   visibility: hidden; */
	 visibility: visible;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
/*   border-radius: 4px; */
  /* CRITICAL: Remove any gap between menu and dropdown */
  margin-top: 0 !important;
}

/* Create invisible bridge to prevent dropdown from disappearing */
#primary-nav .main_menu > li.menu-item-has-children::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px; /* Bridge gap */
  background: transparent;
  z-index: 999;
}

/* Show dropdown when hovering over parent li */
#primary-nav .main_menu > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Style submenu items */
#primary-nav .sub-menu li {
  display: block !important;
  padding: 0 !important;
  margin: 0;
}

/* Style submenu links */
#primary-nav .sub-menu li a {
  display: block;
  padding: 12px 20px !important;
  color: #00005a !important;
  font-size: 16px !important;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

/* Submenu link hover effect */
#primary-nav .sub-menu li a:hover {
  background-color: #f8f8f8;
  color: #f50082 !important;
  border-left-color: #f50082;
  padding-left: 25px !important;
}

/* Remove the underline animation from submenu links */
#primary-nav .sub-menu li a::after {
  display: none !important;
}

/* Active submenu item */
#primary-nav .sub-menu li.current-menu-item > a {
  background-color: #f8f8f8;
  color: #f50082 !important;
  border-left-color: #f50082;
}

/* Ensure parent menu item stays highlighted when dropdown is open */
#primary-nav .main_menu > li.menu-item-has-children:hover > a {
  color: #ff0091 !important;
  font-weight: bold !important;
}

#primary-nav .main_menu > li.menu-item-has-children:hover > a::after {
  width: 100%;
}

/* ===== MOBILE MENU DROPDOWN FIX ===== */

/* For mobile menu, show submenus stacked (not absolutely positioned) */
/* @media only screen and (max-width: 767px) {
  #mobile-nav-toggled .sub-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    padding-left: 20px !important;
    margin-top: 10px !important;
    background: #f8f8f8 !important;
    border-radius: 4px;
  }

  #mobile-nav-toggled .sub-menu li a {
    padding: 10px 15px !important;
    font-size: 15px !important;
  }
} */

/* Form styling - horizontal layout */
#newsletterForm {
    display: flex;
    gap: 12px;
    align-items: stretch;
    max-width: 700px;
    position: relative;
    z-index: 1;
    margin-top: 25px;
}

/* Input container */
.input-container {
    flex: 1;
    position: relative;
}

/* Email input field */
#fieldEmail {
    width: 100%;
    height: 100%;
    padding: 18px 24px;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    font-size: 15px;
    color: #999;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#fieldEmail:focus {
    outline: none;
    border-color: #c0c0c0;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.02);
}

#fieldEmail::placeholder {
    color: #aaa;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hide the icon */
.input-container .icon {
    display: none;
}

/* Subscribe button */
.sub-button {
    padding: 18px 50px;
    background: #E91E8C;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 180px;
}

.sub-button:hover {
    background: #d01877;
}

.sub-button:active {
    transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 900px) {
    .guten-column-wrapper[data-id="tYZta9"] {
        padding: 50px 30px;
    }
    
    #newsletterForm {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .guten-column-wrapper[data-id="tYZta9"] {
        padding: 40px 20px;
    }
    
    #newsletterForm {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .input-container,
    .sub-button {
        width: 100%;
    }
    
    .sub-button {
        min-width: auto;
    }
    
    .guten-column-wrapper[data-id="tYZta9"]::before {
        right: -100px;
        bottom: -100px;
        width: 600px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .guten-column-wrapper[data-id="tYZta9"] {
        padding: 30px 15px;
    }
    
    #fieldEmail,
    .sub-button {
        font-size: 14px;
        padding: 16px 20px;
    }
}