/*
Theme Name: LIGHT
Theme URI:  https://example.com/minimal-elementor-plus
Author:      SUSANTA PAUL
Author URI:  https://example.com
Description: A minimal Elementor-ready theme with WooCommerce and widget support.
Version:     1.1
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimal-elementor-plus
Tags: minimal, blank, elementor, woocommerce, starter, widgets
*/

:root  {
--color-default:#282828;
--color-primary:#ff0830;
--color-secondary:#ff7e00;
--color-white:#ffffff;
--color-light:#eeeef9;
--color-gray:#ebebeb;
--color-dark:#0e0e0e;
--color-black:#000000;
--color-blue:#292b6e;
}
a{
    color: var(--color-blue);
    text-decoration: none;
    transition: 300ms;
}
a:hover{
    color: var(--color-primary);
    text-decoration: none;
}
.fw-100{ font-weight: 100;}
.fw-200{ font-weight: 200;}
.fw-300{ font-weight: 300;}
.fw-400{ font-weight: 400;}
.fw-500{ font-weight: 500;}
.fw-600{ font-weight: 600;}
.fw-700{ font-weight: 700;}
.fw-800{ font-weight: 800;}
.fw-900{ font-weight: 900;}

.lnht-1{
    line-height: 1!important;
}
.lnht-1-1{
    line-height: 1.1;
}
strong,b{
    font-weight: 600;
}
.text-primary{
    color: var(--color-primary) !important;
}
.text-secondary{
    color: var(--color-secondary) !important;
}
.text-blue{
    color:var(--color-blue);
}
body{
    font-size: 18px;
    overflow-x: hidden;
	font-weight:400;
}
p{
	font-weight:400;
}

h1,h2,h3,h4,h5,h6{
    color: var(--color-blue)
}
h1{
    line-height: 1.1;
}
h2{
    line-height: 1.2!important;
}
.display-3{
    line-height: 1;
}
/************/
/*** MENU ***/
/************/
/* Desktop */
@media screen and (min-width: 992px)  {
    /* Top-level menu */
    ul.desktop-menu {
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }

    ul.desktop-menu > li {
        display: inline-block;
        margin: 0;
        padding: 0;
        position: relative;
        text-align: left;
    }

    /* Top-level links */
    ul.desktop-menu > li > a {
        color: var(--color-blue);
        font-weight: 500;
        padding: 10px 22px;
        border-radius: 25px;
        line-height: 1.2;
        display: block;
        background-color: transparent;
        position: relative; /* Needed for ::before */
        transition: 0.3s ease;
    }

    /* Top-level underline */
    /*ul.desktop-menu > li > a::before {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 20px;
        width: 0;
        height: 2px;
        background-color: var(--color-primary);
        transition: width 0.4s ease;
        border-radius: 2px;
    }

    ul.desktop-menu > li > a:hover::before,
    ul.desktop-menu > li.current-menu-item > a::before {
        width: calc(100% - 40px);
    }*/

    /* Hover color */
    ul.desktop-menu > li > a:hover,
    ul.desktop-menu > li.current-menu-item > a {
        color:#fff;
        background-color: var(--color-primary);
    }

    /* Dropdown container */
    ul.desktop-menu ul {
        margin: 0;
        padding: 12px 22px;
        list-style: none;
        position: absolute;
        top: -9999em;
        left: 0;
        width: 250px;
        background: #fff;
        border: 1px solid var(--color-light);
        opacity: 0;
        z-index: 999;
        transform: scale(0.9);
        transform-origin: center top;
        transition: transform 0.3s ease, opacity 0.3s ease, top 0s 0.3s;
    }

    /* Show dropdown on hover */
    ul.desktop-menu li:hover > ul {
        top: 100%;
        opacity: 1;
        transform: scale(1);
        transition-delay: 0s;
        z-index: 1000;
    }

    /* Nested dropdowns */
    ul.desktop-menu ul li:hover > ul,
    ul.desktop-menu ul ul {
        top: -10px;
        left: calc(100% + 22px);
    }

    /* Dropdown list items */
    ul.desktop-menu ul li {
        display: block;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #d8d8d8;
        position: relative;
    }

    /* Dropdown links */
    ul.desktop-menu ul li a {
        color: var(--color-default);
        font-weight: 400;
        padding: 12px 0;
        line-height: 1.2;
        display: block;
        position: relative; /* For underline */
        background-color: transparent;
        left: -3px;
        transition: color 0.3s ease, left 0.3s ease;
    }

    /* Dropdown underline */
    ul.desktop-menu ul li a::before {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        height: 1px;
        width: 0;
        background-color: var(--color-primary);
        transition: width 0.4s ease;
    }

    ul.desktop-menu ul li a:hover::before {
        width: 100%;
    }

    ul.desktop-menu ul li a:hover,
    ul.desktop-menu ul li.current-menu-item a {
        color: var(--color-primary);
        left: 0;
    }

    .hamburgerholder{
        display: none;
    }
    #mobilemenubg{
        display: none;
    }
}

/*  MOBILE */
@media screen and (max-width: 991px)  {
    .hamburgerholder {
        width:  45px;
        height:  45px;
        line-height:  45px;
        background-color: var(--color-primary);
        text-align:  center;
        display:  block;
        border-radius:  50%;
        /*position: absolute;
        top: 28px;
        right: 15px;*/
    }
    .hamburger {
        font-size: 17px;
        padding: 0;
        border-radius: 0;
        width: 24px;
        height: 24px;
        position: relative;
        right:  0;
        top: 0;
        z-index:  5;
        cursor:  pointer;
        transition:  all 600ms linear;
        display:  inline-block;
        vertical-align:  middle;
    }
    .hamburger .menu-icon {
        height: 1px;
        width: 24px;
        display: block;
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 45%;
    }
    .hamburger .menu-icon:after,  .hamburger .menu-icon:before {
        position: absolute;
        -webkit-transition:  all 600ms linear;
        transition:  all 300ms linear;
    }
    .hamburger .menu-icon:after {
        content: '';
        width: 24px;
        height: 1px;
        display: block;
        background-color: #fff;
        bottom: 8px;
    }
    .hamburger .menu-icon:before {
        content: '';
        width: 24px;
        height: 1px;
        display: block;
        background-color: #fff;
        top: 8px;
    }
    .hamburger.on .menu-icon  {
        background-color:  transparent;
    }
    .hamburger.on .menu-icon:before  {
        top:  0;
        transform:  rotate(45deg);
    }
    .hamburger.on .menu-icon:after  {
        top:  0;
        transform:  rotate(-45deg);
    }

    #mobilemenubg {
        display:  block;
        position: fixed;
        top: 0;
        left: -310px;
        width:  250px;
        height: 100%;
        padding: 0 15px;
        z-index: 98;
        overflow: hidden;
        background-color: #fff;
        transition:  all 300ms linear;
    }
    #mobilemenubg.open {
        overflow-y: auto;
        left: 0;
    }
    div.mobilemenulogo {
        text-align: center;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    div.mobilemenulogo img {
        width:  auto;
        max-width:  150px;
        max-height:  62px;
    }
    /*******************/
    /* Mobile menu css */
    /*******************/
    ul.mobile-menu {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    ul.mobile-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    } 
    ul.mobile-menu li {
        margin: 0;
        padding: 0;
        position: relative;
    }       
    ul.mobile-menu button.submenu-toggle {
        background: none;
        border: 1px solid #ccc;
        background-color: #fff;
        font-size: 17px;
        font-weight: 500;
        cursor: pointer;
        color: #333;
        line-height: 1;
        display: block;
        position: absolute;
        right: 0;
        top: 4px;
        width: 24px;
        height: 24px;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    ul.mobile-menu button.submenu-toggle:focus,
    ul.mobile-menu button.submenu-toggle:hover {
        color: #000;
        outline: none;
    }
    ul.mobile-menu .sub-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s ease;
    }
    ul.mobile-menu .menu-item-has-children.open > .sub-menu {
        max-height: 400px;
    }    
    /**/
    ul.mobile-menu{
        border-bottom: 1px solid #eeeeee;
    }
    ul.mobile-menu li a{
        border-top: 1px solid #eeeeee;
        display: block;
        padding: 3px 0;
        color:#000;
    }
    ul.mobile-menu li li a{
        padding-left: 10px;
    }
    ul.mobile-menu li li li a{
        padding-left: 20px;
    }
    ul.mobile-menu li li li li a{
        padding-left: 30px;
    }
    ul.mobile-menu li a:hover,
    ul.mobile-menu li a:focus,
    ul.mobile-menu li.current-menu-item a{
        color:var(--color-primary);
    }
    ul.mobile-menu li.menu-item-has-children a{
        padding-right: 24px;
    }
}
/****************/
/*** END MENU ***/
/****************/

/**************/
/*** HEADER ***/
/**************/
.header{
    background-color: var(--color-light);
}
.header-flex{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
@media screen and (max-width: 991px)  {
    .header_mid{
        display: none;
    }
}
.header_start{
    width: 150px;
}
.header_end{
    display: flex;
}
/******************/
/*** END HEADER ***/
/******************/


/**********************/
/*** FEATURED IMAGE ***/
/**********************/
.main-banner {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}
.main-banner picture,
.main-banner picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the area */
  object-position: center;
}
.main-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark transparent overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.main-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.main-banner .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.main-banner .page-description {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.page-subtitle {
  color: #ffffff;
  margin-top: 0.5rem;
  font-size: 25px;
}
.main-banner h1,
.main-banner h2,
.main-banner h3,
.main-banner h4,
.main-banner h5,
.main-banner h6{
    color: #fff;
}

@media (max-width: 991px) {
   .main-banner .page-title {
    font-size: 1.6rem;
    } 
}
/**************************/
/*** END FEATURED IMAGE ***/
/**************************/

/*****************************/
/*** INDEX PAGE BLOG STYLE ***/
/*****************************/
.entry-meta{
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}
.entry-title a{
    color:var(--color-blue);
}
.entry-title a:hover{
    color:var(--color-primary);
}
.post-thumbnail img{
    border-radius: 10px;
	width:100%;
	height:auto;
}
/*********************************/
/*** END INDEX PAGE BLOG STYLE ***/
/*********************************/

/*********************************/
/*** SINGULAR BLOG STYLE ***/
/*********************************/
.post_title{
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--color-blue);
}
.sidebar .widget {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}
h4.widget-title{
    margin-bottom: 25px;
    color: var(--color-blue);
}
.widget.widget_archive ul, .widget.widget_categories ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.widget.widget_archive ul li, .widget.widget_categories ul li {
    margin: 0;
    padding: 7px 0;
    border-top: 1px solid #ccc;
}
.widget.widget_archive ul li a, .widget.widget_categories ul li a {
    color:  var(--color-blue);
}
.widget.widget_archive ul li a:hover, .widget.widget_categories ul li a:hover {
    color: var(--color-primary);
}
.conclusion {
    border-left: 4px solid #0b0d42; /* Deep professional blue accent */
    padding: 25px 0 25px 30px;
}
/*********************************/
/*** END SINGULAR BLOG STYLE ***/
/*********************************/

/*********************************/
/*** BLOG PAGINATION ***/
/*********************************/
ul.page-numbers {
    margin: 0 0 25px 0;
    padding: 15px 0;
    list-style: none;
    text-align: center;
    font-size:  16px;
    border-bottom:  1px solid #ccc;
    border-top:  1px solid #ccc;
}
ul.page-numbers li {
    margin: 5px 2px!important;
    padding: 0;
    display: inline-block;
}
ul.page-numbers li a.page-numbers  {
    padding:  5px 10px;
    background-color:var(--color-primary);
    color: #fff;
    display: block;
    border-radius: 3px;
}
ul.page-numbers li span.page-numbers.current  {
    padding:  5px 10px;
    background-color:#ccc;
    color: #666;
    display: block;
    border-radius: 3px;
    font-weight: bold;
}
/*********************************/
/*** END BLOG PAGINATION ***/
/*********************************/

/*********************************/
/*** FORM ***/
/*********************************/
input[type="search"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="url"],
input[type="number"],
input[type="password"],
select,
textarea{
	width: 100%;
	outline: none;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
	padding: 10px 10px 10px 20px;
	margin: 0;
	font-family: var(--font-default);
	color: var(--color-default);
	border:0;
	border: 1px solid #ccc;
	background-color: white!important;
    border-radius: 50px;
}
input[type="search"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus{
	outline: none;
}
input[type=search]:hover,
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="date"]:hover,
input[type="url"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
select:hover,
textarea:hover{
	outline: none;
}
textarea{
	max-height: 100px;
}
label{
	margin: 0;
	padding: 0;
}
.wpcf7-spinner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('assets/images/arrow-down.svg') no-repeat right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem; /* space for custom arrow */
  border: 1px solid #ccc;
  border-radius: 50px;
}
/*********************************/
/*** END FORM ***/
/*********************************/

/*********************************/
/*** WIDGET SEARCH FORM ***/
/*********************************/
form.search-form{
    display: flex;
}
form.search-form label{
    width:calc(100% - 100px);
    margin: 0;
    padding: 0;
    display: block;
}
form.search-form input[type="text"]{
    width:calc(100% - 100px);
}
form.search-form input[type="submit"]{
    width:100px;
    padding: 10px 0;
}
/*********************************/
/*** END WIDGET SEARCH FORM ***/
/*********************************/

/*********************************/
/*** FOOTER ***/
/*********************************/
footer.fdifooter{
    background:url(assets/images/footerbg.jpg) no-repeat center center var(--color-blue);
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 10px;
    color:#fff;
    overflow: hidden;
}
.fdifooter a{
    color: #fff;
    transition: 300ms;
}
.fdifooter a:hover{
    color: var(--color-secondary);
}
.fdifooter ul.menu{
    margin: 0;
    padding: 0;
    list-style: none;
}
.fdifooter ul.menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
}
.fdifooter ul.menu li{
    margin-bottom: 15px;
}
.fdifooter ul.menu li a{
    color: #fff;
    transition: 300ms;
}
.fdifooter ul.menu li a:hover{
    color: var(--color-secondary);
}
.fdifooter ul.contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-icon {
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
    flex-shrink: 0;
}

.footer-icon-text {
    margin-left: 10px;
    display: inline-block;
}

@media (max-width: 991px) {
    .fdifooter ul.menu,
    .fdifooter ul.menu li{
        text-align: center;
    }
  .fdifooter ul.contact {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the whole block */
    width: auto;
    margin: 0 auto;
  }

  .fdifooter ul.contact li {
    width: 100%;          /* Let it take full width of its content */
    text-align: left;     /* Align content inside li to the left */
    max-width: 300px;     /* Optional: set a max width if needed */
  }

  .fdifooter ul.contact a {
    flex-direction: row;
    justify-content: flex-start; /* Align icon + text to the left */
    
  }

  .footer-icon-text {
    margin-left: 10px;
  }
}

::placeholder {
  color: #000; 
  opacity: 1;
}
input::placeholder,
textarea::placeholder {
  color: #000;
  opacity: 1;
}

.cf7form label{
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
    display: none;
}
.wpcf7 p {
    margin: 0px !important;
}
/*********************************/
/*** END FOOTER ***/
/*********************************/

/* START */
.btn1{
    background-color: var(--color-primary);
    color:#fff;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 50px;
    transition: 300ms;
    line-height: 1;
    border: none;
    outline: none;
    display: inline-block;
}
.btn1:hover{
    background-color: var(--color-secondary);
    color:#fff;
}
.btn1.phone-mobile{
    padding: 0;
    width: 45px;
    height: 45px;
    text-align: center;
}
.btn1.phone-mobile svg{
    position: relative;
    top: 10px;
}
.btn1.small{
    padding: 7px 15px;
    font-size: 14px;
}
.btn2{
    background-color: var(--color-blue);
    color:#fff;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 50px;
    transition: 300ms;
    line-height: 1;
}
.service-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px; /* horizontal and vertical spacing */
}

.service-row * {
    transition: 300ms;
}

a.service-link {
    width: calc(50% - 12.5px); /* Two per row with gap */
    display: flex;
    justify-content: space-between;
    border: 1px solid #d3d3ed;
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    color: #222;
    text-decoration: none;
}

a.service-link:hover {
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
}

a.service-link:hover h5 {
    color: #fff;
}

.service-row-col-in-first {
    width: 100px;
}

.service-row-col-in-second {
    width: calc(100% - 100px);
}

.service-row-col-in-first span {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: var(--color-light);
    display: block;
    padding-top: 14px;
    margin-top: 5px;
}

.service-row-col-in-first span img {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto;
}

/* Responsive: stack vertically on small screens */
@media screen and (max-width: 767px) {
    a.service-link {
        width: 100%;
    }

    .service-row-col-in-first {
        width: 70px;
    }

    .service-row-col-in-second {
        width: calc(100% - 70px);
    }

    .service-row-col-in-first span {
        width: 60px;
        height: 60px;
        padding-top: 10px;
    }

    .service-row-col-in-first span img {
        width: 40px;
        height: 40px;
    }
}

ul.tick{
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.tick li{
    margin: 0 0 10px 0;
    padding: 0 0 0 30px;
    position: relative;
}
ul.tick li::before{
    content: "";
    background: url(assets/images/tick.png) no-repeat;
    background-size: 23px;
    width: 23px;
    height: 23px;
    display: block;
    position: absolute;
    left: 0;
    top:2px;
}
.two-col{
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 30px;
}
@media screen and (max-width: 767px){
    .two-col{
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
        column-gap: 0;
    }
}


blockquote, .blockquote {
padding: 0 0 0 20px;
margin: 0 0 25px 0;
border-left: 5px solid var(--color-blue);
font-size:15px;
font-weight:500;
font-style:italic;
}

.small, small{
    font-size: 14px;
}
ul li,  ol li {
text-align:  left;
}
ul.default {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

ul.default li {
  position: relative;
  margin: 0 0 10px 24px;
  padding-left: 6px;
}
ul.default li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
}

ol.default {
  list-style: none;
  margin: 20px 0 25px 0;
  padding: 0;
  counter-reset: step;
  display:block;
}

ol.default li {
  position: relative;
  margin: 0 0 12px 34px;
  padding-left: 6px;
  counter-increment: step;
}

ol.default li::before {
  content: counter(step);
  position: absolute;
  left: -34px;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
}




b, strong {
font-weight:  600!important;
}
.fs-0{
    font-size: 0px !important;
}

ul#address-list2 {
    margin: 0;
    padding: 0;
    list-style: none;    
    max-height: 200px;
    overflow: auto;
    color: #fff;
}
ul#address-list2 li {
    margin: 0;
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    line-height: normal;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.popmake-content .wpcf7-not-valid-tip{
    text-align: center;
    color: yellow;
}
ul.partner {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.partner li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1 1 200px;
    max-width: 25%;
    box-sizing: border-box;
    text-align: center;
}
.partner li img {
    max-height: 60px;
}
@media (min-width: 992px) {
.fdifooter .container .row .col-lg-3:nth-child(1){
	width:30%;
}
.fdifooter .container .row .col-lg-3:nth-child(2){
	width:21%;
}
.fdifooter .container .row .col-lg-3:nth-child(3){
	width:21%;
}
.fdifooter .container .row .col-lg-3:nth-child(4){
	width:28%;
	}
}
.fdibanner{
	position:relative;
}
body{
	position:relative;
}
h2 a{
	color:var(--color-blue);
}
h2 a:hover{
	color:var(--color-primary);
}

.post-password-form {
	max-width:650px;
	margin:50px auto;
	text-align:center;
}

.btn10, .search-submit, .wpcf7-submit{
    border-radius:50px;
    padding: 10px 0;
    display: block;
    width: 100%;
    color:#fff;
    background:var(--color-primary);
    border:none;
    outline:none;
    cursor:pointer;
    transition:300ms;
}
.btn10:hover, .search-submit:hover, .wpcf7-submit:hover{
    color:#fff;
    background:var(--color-secondary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* START */
.img1{
    position: absolute;
    top: 0;
    right: 0;
}
.img2{
    position: absolute;
    top: 0;
    right: 15%;
    margin-top: -60px;
}
@media screen and (max-width: 767px) {
    .img1{
        top: 50px;
        right: -20px;
        width: 50px;
    }
    .img2{
        top: 0;
        left: 0;
        right: auto;
        width: 50px;
    }
}
.bannerform ::placeholder {
  font-style: italic;
  color: rgba(0, 0, 0, 0.7);
  font-size:16px;
}
.bannerform :-ms-input-placeholder {
  font-style: italic;
  color: rgba(0, 0, 0, 0.7);
  font-size:16px;
}
.bannerform ::-ms-input-placeholder {
  font-style: italic;
  color: rgba(0, 0, 0, 0.7);
  font-size:16px;
}
.bannerform select.wpcf7-select {
  font-style: italic;
  color: rgba(0, 0, 0, 0.7);
  font-size:16px;
}
.bannerform select.wpcf7-select:focus,
.bannerform select.wpcf7-select option:not([value=""]) {
  color: #000;
  font-style: normal;
}
.bannerform select.wpcf7-select:has(option:checked:not([value=""])) {
  color: #000;
  font-style: normal;
}
.bannerform .wpcf7-response-output {
    color: yellow !important;
    text-align: center !important;
}
.bannerform + .wpcf7-response-output {
	color: yellow !important;
	text-align: center !important;
}
.bannerform .wpcf7-not-valid-tip{
	color: yellow !important;
	text-align: center !important;
}



.bannerform.contactform .wpcf7-response-output {
    color: red !important;
    text-align: center !important;
}
.bannerform.contactform + .wpcf7-response-output {
	color: #000000 !important;
	text-align: center !important;
}
.bannerform.contactform .wpcf7-not-valid-tip{
	color: red !important;
	text-align: center !important;
}



.wpcf7 form .wpcf7-response-output{
	margin-top:15px !important;
}
.marquee {
    overflow: hidden;
    width: 100%;
    margin: 8px 0;
}
.marquee__inner {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    min-width: 200%;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    will-change: transform;
}
.marquee__inner2 {
    animation-direction: reverse;
}
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.tickscroll{
    font-weight: 600;
    color: var(--color-primary);
    background-color: #ffd5c7;
    border-radius: 50px;
    padding: 15px 25px 15px 15px;
    display: inline-flex;          
    align-items: center;           
    font-size: 22px;
    margin: 0 30px;                
    white-space: nowrap;           
}
.tickscroll img{
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;             
    flex-shrink: 0;                
}


body.single-post h2{
    margin-bottom: 15px;
}
body.single-post h3{
    margin-bottom: 15px;
}
body.single-post h4{
    margin-bottom: 15px;
}
body.single-post h5{
    margin-bottom: 15px;
}
body.single-post h6{
    margin-bottom: 15px;
}

.stats{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.stat{
    width:48%;
    display: flex;
    flex-wrap:nowrap;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
}
.stat-first{
    width:75px;
}
.stat-second{
    width:calc(100% - 95px);
}
.stat-icon{
    width: 75px;
    height: 75px;
    line-height: 75px;
    border-radius: 50%;
    display: block;
    background: url(assets/images/stat-icon.png) no-repeat center center var(--color-primary);
    background-size: 60%;
}
@media screen and (max-width: 600px) {
    .stat {
        width: 100%;
        margin: 0 auto 20px auto;
    }
}

/* Base card */
.bg-energy,
.bg-broadband{
    border-radius: 20px;
    padding: 50px;
    height: 100%;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-color: var(--color-blue);
}
@media (max-width: 768px) {
	.bg-energy,
	.bg-broadband{
		padding: 20px;
	}	
}
/* Image layer */
.bg-energy::before,
.bg-broadband::before{
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transition: transform 350ms ease, opacity 400ms ease 150ms;
    z-index: 0;
}

/* Images */
.bg-energy::before{
    background-image: url(assets/images/bg-energy.webp);
	background-size:cover;
}
.bg-broadband::before{
    background-image: url(assets/images/bg-broadband.webp);
	background-size:cover;
}

/* Hover: zoom first, then fade out */
.bg-energy:hover::before,
.bg-broadband:hover::before{
    transform: scale(1.08);
    opacity: 0;
}

/* Hide content initially */
.bg-energy h2,
.bg-broadband h2,
.bg-energy p,
.bg-broadband p,
.bg-energy a,
.bg-broadband a{
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 400ms ease, transform 400ms ease;
    position: relative;
    z-index: 1;
}

/* Stagger timing */
.bg-energy h2,
.bg-broadband h2{
    transition-delay: 200ms;
}
.bg-energy p,
.bg-broadband p{
    transition-delay: 320ms;
}
.bg-energy a,
.bg-broadband a{
    transition-delay: 440ms;
}
/* Reveal content */
.bg-energy:hover h2,
.bg-broadband:hover h2,
.bg-energy:hover p,
.bg-broadband:hover p,
.bg-energy:hover a,
.bg-broadband:hover a{
    opacity: 1;
    transform: translateY(0);
}
.bg-energy .btn1,
.bg-broadband .btn1{
    display: flex;
    align-items: center;
	margin-top:20px;
}
.bg-energy .btn1 svg,
.bg-broadband .btn1 svg{
    margin-left: auto;
}
@media (max-width: 768px) {
	.bg-energy,
	.bg-broadband{
		padding: 20px;
	}
	.bg-energy .btn1,
	.bg-broadband .btn1{
		margin-top:10px;
	}
}
#oms::before{
	content:"";
	position:absolute;
	top:15px;
	left:-15px;
	display:block;
	width:100%;
	height:100%;
	background:var(--color-primary);
	z-index:-1;
}
#bouocs::before{
	content:"";
	position:absolute;
	top:15px;
	left:-15px;
	display:block;
	width:100%;
	height:100%;
	background:var(--color-primary);
	z-index:-1;
}
.footer-logos {
    display: flex;
    flex-wrap: wrap;       /* allow items to wrap */
    gap: 15px;             /* horizontal + vertical gap */
    justify-content: flex-start; /* left-align on desktop */
}

/* Each div centers its image */
.footer-logos > div {
    display: flex;
    justify-content: center; /* center image horizontally */
    align-items: center;     /* optional: center vertically if needed */
}

/* Desktop: automatic, images inline with gap */
/* Mobile ≤600px: 2 columns */
@media (max-width: 600px) {
    .footer-logos > div {
        flex: 0 0 50%;      /* each div takes half width → 2 per row */
    }
    
    .footer-logos {
        justify-content: flex-start; /* images align left of each cell */
        gap: 15px 0;                  /* vertical gap 15px, horizontal 0 */
    }
}

/* Make images responsive */
.footer-logos img {
    max-width: 100%;
    height: auto;
    display: block;
}
