/* main=======================> */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}
html{
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

/* Scrollbar===========================> */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Section===============================> */
section{
    padding: 100px 0;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

.sectionContent{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.sectionTitle{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}
.sectionTitle::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
.sectionTitle::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: crimson;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}



.inside_shadow{
    box-shadow: inset 0px 5px 10px rgba(0, 0, 0, 0.2), /* Top-left shadow */
                inset 0px -5px 10px rgba(0, 0, 0, 0.2), /* Bottom-right shadow */
                inset -5px 0px 10px rgba(0, 0, 0, 0.2), /* Left shadow */
                inset 5px 0px 10px rgba(0, 0, 0, 0.2); /* Right shadow */
  }
  .inside_shadow:hover{
      transform: translateY(-1px); /* Lift card up */
      box-shadow: inset 0px 4px 8px rgba(0, 0, 0, 0.3), /* Stronger top-left shadow */
                  inset 0px -4px 8px rgba(0, 0, 0, 0.3), /* Stronger bottom-right shadow */
                  inset -4px 0px 8px rgba(0, 0, 0, 0.3), /* Stronger left shadow */
                  inset 4px 0px 8px rgba(0, 0, 0, 0.3); /* Stronger right shadow */
    }
    
  .inside_shadow:active{
      transform: translateY(-1px); /* Lift card up */
      box-shadow: inset 0px 4px 8px rgba(0, 0, 0, 0.3), /* Stronger top-left shadow */
                  inset 0px -4px 8px rgba(0, 0, 0, 0.3), /* Stronger bottom-right shadow */
                  inset -4px 0px 8px rgba(0, 0, 0, 0.3), /* Stronger left shadow */
                  inset 4px 0px 8px rgba(0, 0, 0, 0.3); /* Stronger right shadow */
    }
  
    
  .inside_shadow_2{
    box-shadow: inset 0px 5px 10px rgba(206, 196, 196, 0.2), /* Top-left shadow */
                inset 0px -5px 10px rgba(206, 196, 196, 0.2), /* Bottom-right shadow */
                inset -5px 0px 10px rgba(206, 196, 196, 0.2), /* Left shadow */
                inset 5px 0px 10px rgba(206, 196, 196, 0.2); /* Right shadow */
  }


  .btn{
    display: inline-block;
    background: crimson;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid crimson;
    transition: all 0.3s ease;
}
.btn:hover{
    color: crimson;
    background: none;
    border: 2px solid crimson;
}
  
  .btn:active {
    transform: scale(0.95); 
  }

  .more{
    cursor: pointer;
    color: crimson;
    text-decoration: none;
  }
  .more:hover{
    color: rgb(27, 26, 26);
  }
  @media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
}


@media (max-width: 947px){
   
    .max-width{
        max-width: 930px;
    }
}


@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }
}

@media (max-width: 500px) {
    .right form .error-box{
       width: 150px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
}



  /* ==================== Topbar ================== */
    
  .ttopBar_social_icon {
    display: none;
    position: absolute;
    top: -5px;
    right: 40px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.ttopBar_social_icon.show {
    display: flex;
    flex-direction: row;
}
.ttopBar_social_icon .close-icon {
    position: absolute;
    top: 0;
    right: -15px;
    cursor: pointer;
    font-size: 30px;
}
@media (min-width: 768px) {
    .ttopBar_social_icon {
        display: flex;
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
    }
    .ttopBar_social_icon .close-icon {
        display: none;
    }
}
   .ttopBar {
    background-color: #ad0000;
}

.ttopBar_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 10px 20px;
    position: relative;
    height: 40px;
}

.ttopBar_contact_info {
    text-align: center;
    display: flex;
    gap: 20px;
    align-items: center;
}

.ttopBar_contact_info .icon {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px; /* Default font-size */
}

.ttopBar_social_icon, .allSocial {
    display: flex;
    gap: 15px;
    text-align: center;
}

.ttopBar_social_icon .social-icon, .allSocial .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #d8d8d8;
    color: #1a8300;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ttopBar_social_icon .social-icon:hover, .allSocial .social-icon:hover {
    color: #fff;
    background-color: #1a8300;
}

/* Social Icons Hide on Smaller Devices */
@media (max-width: 767px) {
    .ttopBar_social_icon {
        display: none;
    }
}

@media (min-width: 768px) {
    .allSocial {
        display: none;
    }
}

/* Font Size Adjustment for Smaller Devices */
@media (max-width: 500px) {
    .ttopBar_contact_info .icon {
        font-size: 13px;
    }

    .allSocial .social-icon {
        width: 25px;
        height: 25px;
        font-size: 18px;
    }
}

@media (max-width: 410px) {
    .ttopBar_contact_info .icon {
        font-size: 10px;
        gap: 5px;
    }

}


.topBar {
background-color: hwb(0 100% 0%);
}

/* ------------- Times --------------- */
.topBar .flag {
width: 15px;
}

.topBar .time {
font-weight: bold;
color: #333;
}

.topBar .flags {
text-align: end;
}

.topBar .time img {
width: 20px;
}

@media (max-width: 992px) {
.topBar .time {
  font-weight: bold;
  color: #333;
  font-size: 15px;
}
}

@media (max-width: 768px) {
.topBar .time {
  font-weight: bold;
  color: #333;
  font-size: 16px;
}
}

@media (max-width: 576px) {
.topBar .flags {
  text-align: center;
}
.topBar .flags img {
  width: 90%;
}
}

@media (max-width: 360px) {
.topBar .time {
  font-weight: bold;
  color: #333;
  font-size: 15px;
}
}

/* ------------- topBarBrand Line--------------- */

.topBar .topBarSpaceLine-1 {
height: 14px;
background-color: red;
}

.topBar .topBarSpaceLine-2 {
height: 11px;
background-color: green;
}

/*  topBarTimes  */
.topBar .flag {
width: 15px;
}

.topBar .topBarTimeBox {
width: 45%;
font-size: 20px;
text-align: start;
}

.topBar .topBarTimeBox .timePlace {
border-bottom: 2px solid #8a8a8a;
font-size: 20px;
width: auto;
text-align: start;
}

.topBar .topBarTimes .city-name {
text-align: start;
}

.topBar .time {
font-weight: bold;
color: #333;
}

.topBar .topBarFlags {
text-align: end;
}

.topBar .topBarFlags img {
width: 200px;
}

@media (max-width: 992px) {
.topBar .topBarTimes img {
  width: 15px;
}
.topBar .topBarTimes .city-name {
  text-align: start;
  font-size: 15px;
}
.topBar .time {
  font-weight: bold;
  color: #333;
  font-size: 15px;
}
}



@media (max-width: 768px) {
.topBar .topBarTimes img {
  width: 18px;
}
.topBar .topBarTimes .city-name {
  text-align: start;
  font-size: 18px;
}
.topBar .time {
  font-weight: bold;
  color: #333;
  font-size: 16px;
}
}

@media (max-width: 576px) {
.topBar .topBarFlags {
  text-align: center;
}
.topBar .topBarFlags img {
  width: 90%;
}

}

@media (max-width: 430px) {
.topBar .topBarTimes img {
  width: 10px;
}
.topBar .topBarTimes .city-name {
  text-align: start;
  font-size: 14px;
}
.topBar .time {
  font-weight: bold;
  color: #333;
  font-size: 13px;
}
}

@media (max-width: 360px) {
.topBar .topBarTimes img {
  width: 10px;
}
.topBar .topBarTimes .city-name {
  text-align: start;
  font-size: 11px;
}
.topBar .time {
  font-weight: bold;
  color: #333;
  font-size: 11px;
}
}
/* ==================== Topbar End ================== */


/* ==================== Navbar ================== */
.navBar {
  background-color: #095000;
  box-shadow: 0 2px 5px rgba(223, 0, 0, 0.1);
  }
  
  .navBar .max-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  }
  
  .navBar .navLinks {
  display: flex;
  align-items: center;
  }
  
  .navBar .menuList {
  display: flex;
  list-style: none;
  gap: 3rem;
  }
  
  .navBar .menuList a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s;
  padding: 10px;
  }
  
  .navBar .menuList a:hover {
  color: #ffffff70;
  
  }
  
  .navBar .dropDown {
  position: relative;
  }
  
  .navBar .dropDownToggle i {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  display: inline-block;
  }
  
  .navBar .dropDownToggle i.active {
  transform: rotate(180deg);
  }
  
  .navBar .dropDownMenu {
  margin-top: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #093300;
  min-width: 200px;
  padding: 0.5rem 0;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgb(3, 126, 13);
  display: none;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .navBar .dropDownMenu.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  }
  
  .navBar .dropDownMenu li {
  list-style: none;
  }
  
  .navBar .dropDownMenu a {
  padding: 0.5rem 1rem;
  display: block;
  }
  
  @media (min-width: 769px) {
  .navBar .dropDown:hover .dropDownMenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  }
  
  .navBar .dropDown:hover .dropDownToggle i {
  transform: rotate(180deg);
  }
  }
  
  .navBar .navActions {
  display: flex;
  align-items: center;
  gap: 1rem;
  }
  
 
.navBar .searchContainer {
  display: flex;
  align-items: center;
  position: relative;
  }
  
  .navBar .searchInput {
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  background-color: #ffffff;
  color: #2b1717;
  width: 0;
  opacity: 0;
  transition: all 0.3s ease;
  }
  
  .navBar .searchInput.active {
  width: 200px;
  opacity: 1;
  }
  
  .navBar .searchIcon,
  .navBar .menuToggle,
  .navBar .closeMenu {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  padding: 0.5rem;
  transition: color 0.3s ease;
  }
  
  .navBar .searchIcon:hover,
  .navBar .menuToggle:hover,
  .navBar .closeMenu:hover {
  color: #cececeb4;
  }
  


  .navBar .resultsContainer {
      border: 1px solid #ccc;
      border-radius: 5px;
      margin-top: 10px;
      max-height: 200px;
      overflow-y: auto;
      display: none;
    }

    .navBar  .resultItem {
      padding: 10px;
      cursor: pointer;
      border-bottom: 1px solid #ddd;
    }

    .navBar .resultItem:hover {
      background-color: #f0f0f0;
    }

    .navBar  .resultItem:last-child {
      border-bottom: none;
    }

    .navBar  section {
      margin-bottom: 50px;
    }
  
  .navBar .menuToggle,
  .navBar .closeMenu {
  display: none;
  }
  
  .navBar .whatsappButton {
  position: fixed;
  bottom: 50px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.568);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  }
  
  .navBar .whatsappButton:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  }
  
  .navBar .whatsappButton i {
  font-size: 2.5rem;
  }
  
  @media (max-width: 768px) {
  .navBar {
  padding: 1rem;
  }
  
  .navBar .navLinks {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1c251d;
  padding: 2rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;
  }
  
  
  .navBar .navLinks.active {
  transform: translateX(0);
  }
  
  .navBar .closeMenu {
  display: block;
  position: absolute;
  top: 3rem;
  right: 3rem;
  }
  
  .navBar .menuList {
  flex-direction: column;
  gap: 3rem;
  margin-top: 6rem;
  width: 100%;
  }
  
  .navBar .dropDownMenu {
  position: static;
  background-color: #133b0f8e;
  width: 100%;
  margin-top: 0.5rem;
  transform: none;
  }
  
  .navBar .menuToggle {
  display: block;
  }
  
  .navBar .searchInput.active {
  width: 150px;
  }
  
  .navBar .max-width {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  }
  
  .navBar .navLogo {
  grid-column: 1;
  }
  
  .navBar .navActions {
  grid-column: 2;
  justify-content: center;
  position: static;
  transform: none;
  }
  
  .navBar .menuToggle {
  grid-column: 3;
  position: static;
  margin-left: auto;
  }
  }


.navBar .converterContainer {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.navBar .converterIcon {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  padding: 0.5rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.navBar .converterIcon:hover {
  color: #cececeb4;
}

  

/* ==================== Navbar End ================== */

/* ==================== Footer ================== */
.footer {
    background-color: rgb(47, 47, 51);
    color: #ffffff;
    padding: 40px 20px;
    width: auto;
    margin-right: 0;
  }
  .footer h5 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #f80101;
    font-weight: bold;
  }
  .footer ul {
    list-style: none;
    padding: 0;
  }
  .footer ul li {
    margin-bottom: 10px;
  }
  .footer a {
    color: #ffffff;
    text-decoration: none;
  }
  .footer a:hover {
    color: #07c700;
  }

  .footer .icon {
    padding: 2px 3px;
    border-radius: 5px;
  }
  
  .footer .icon.facebook{
    color: #3b5998; /* Facebook color */
    background-color: #c5c5c5;
  }
  
  .footer .icon.instagram{
    color: #e1306c; /* Instagram color */
    background-color: #c5c5c5;
  }
  
  .footer .icon.youtube{
    color: #ff0000; /* YouTube color */
    background-color: #c5c5c5;
  }
  
  .footer .icon.whatsapp{
    color: #25d366; /* WhatsApp color */
    background-color: #c5c5c5;
  }
   
  
  .footer .icon.facebook:hover {
    color: #fff; /* Facebook color */
    background-color: #3b5998;
  }
  
  .footer .icon.instagram:hover {
    color: #fff; /* Instagram color */
    background-color: #e1306c;
  }
  
  .footer .icon.youtube:hover {
    color: #fff; /* YouTube color */
    background-color: #ff0000;
  }
  
  .footer .icon.whatsapp:hover {
    color: #fff; /* WhatsApp color */
    background-color: #25d366;
  }
   
  .footer .office-details {
    line-height: 1.8;
    font-size: 14px;
  }
  .footer .btn-contact {
    display: inline-block;
    padding: 10px 25px;
    margin-top: 15px;
    background-color: #4b4b4b;
    color: #dcdcdc;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
  }
  .footer .btn-contact:hover {
    background-color: #282828;
    color: #ffffff;
  }
  .footer .copyright {
    background-color: rgb(15, 15, 22);
    text-align: center;
    padding: 15px 0;
    color: #fff;
    margin-top: 20px;
  }

  .footer .copyright a{
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
  }
  .footer .copyright a span{
    color: #b90000;
  }
  
  @media (max-width: 991px) {
    .footer {
     margin: 0;
    }
  }

  @media (max-width: 768px) {
    .footer {
      text-align: center;
    }
    .footer .col-md-4 {
      margin-bottom: 30px;
    }
  }

  .footer .icon {
    fill: #6c757d;
    transition: fill 0.3s ease, transform 0.3s ease; 
    cursor: pointer;
    margin: 5px;
}

.footer .icon:hover {
    transform: scale(1.1); 
}
.footer .facebook:hover {
    fill: #1877F2; 
}
.footer .instagram:hover {
    fill: #E4405F; 
}
.footer .youtube:hover {
    fill: #FF0000; 
}
.footer .whatsapp:hover {
    fill: #25D366; 
}
/* ==================== Footer End ================== */