body {
  margin: 5px;
    /*font-family: Arial, sans-serif;*/
    overflow-x: hidden;
}

header {
    position: relative;
    height: 50vh; /* Header takes half the viewport height */
    background-color: #141414;
    overflow: hidden;
    /*transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;*/
}

/** X Icon Style **/
  .custom-x-icon {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    color: white;
  }
  .custom-x-icon::before, .custom-x-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: black;
    color: white;
    transform-origin: center;
  }
  .custom-x-icon::before {
    transform: rotate(45deg);
  }
  .custom-x-icon::after {
    transform: rotate(-45deg);
  }

.logo {
  position: relative;
  margin-top: 10px;
  left: 0;
  width: 90%;
  max-width: 700px;
}

@media (max-width: 600px) {
  .logo {
    left: 5;
    margin-top: 5px;
    max-width: 200px;
  }
}

/* Small logo for scrolling */
/*.small-logo {*/
/*    position: fixed;*/
/*    top: 30px;*/
/*    left: 0px;*/
    /*width: 250px; */
/*    height: auto;*/
/*    opacity: 1;*/
/*    pointer-events: all;*/
/*    transition: all 0.5s ease;*/
/*    z-index: 1000;*/
/*}*/

/*.visible-logo {*/
/*    opacity: 1;*/
/*    pointer-events: none;*/
/*}*/

/*.hidden-logo {*/
/*    opacity: 0;*/
/*    pointer-events: none;*/
/*}*/

/*.scrolled {*/
/*    position: fixed; */
/*    top: 50px; */
/*    left: 0; */
/*    transform: translateY(0); */
/*    width: 100px; */
/*    z-index: 1000;   */
/*}*/

.menu {
    position: sticky;
    top: 0;
    background-color: #333;
    color: white;
    display: flex;
    justify-content: center; /* Centers the menu horizontally */
    align-items: center;
    padding: 10px 20px;
    z-index: 999; /* Ensures the menu is below the logo when scrolled */
}

.menu nav {
    display: flex;
    gap: 20px; /* Adds space between menu items */
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1em;
}

.menu a:hover {
    text-decoration: underline;
}
        
.text-column {
    color: white;
    flex: 1;
    padding: 20px;
    transition: all 0.5s ease;
    margin-bottom: 20px; /* Reduce margin on smaller screens */
}

.text-column2 {
    color: white;
    flex: 1;
    padding: 20px;
    transition: all 0.5s ease;
    margin-bottom: 20px; /* Reduce margin on smaller screens */
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .text-column,
    .text-column2 {
        /*text-align: center;  Center align content for better mobile presentation */
        margin-bottom: 10px; /* Reduce margin further on mobile devices */
    }

    /*.text-column img.logo {*/
    /*    max-width: 100%;*/
    /*    height: auto;*/
    /*}*/

    .text-column2 div {
        border-left: none; /* Remove border for a cleaner mobile look */
        padding-left: 0; /* Remove extra padding */
    }

    .textillate {
        font-size: 16px;  /* Adjust font size for better readability */
    }

    .box {
        font-size: 14px; /* Adjust text size for mobile screens */
        margin-top: 15px; /* Add a slight margin for spacing */
    }
}

.highlight-container {
    /*border-left: 1.5px solid #C3B44A;*/
    padding-left: 10px;
    height: 160px; /* Default height for mobile devices */
    margin-bottom: 200px; /* Default margin for mobile devices */
}

/* Media query for laptops (min-width: 768px) */
@media (min-width: 768px) {
    .highlight-container {
        height: 120px; /* Reduce height on laptops */
        margin-bottom: 110px; /* Reduce margin on laptops */
    }
}


.text-column ul {
    list-style-type: none;
    padding: 0;
}

.text-column ul li {
    margin: 10px 0;
    font-size: 1.2em;
}

.hidden-text {
    opacity: 0; /* Hides the text column smoothly */
    transform: translateY(-100%);
    pointer-events: none;
}

/* show dropdown menu on hover */
.navbar-nav .dropdown:hover > .dropdown-menu {
display: block;
/* if you need it to appear flush under the parent */
margin-top: 0;
}
/* optional: keep caret rotated when open */
.navbar-nav .dropdown:hover > .dropdown-toggle .caret {
transform: rotate(180deg);
}
/* your existing widget wrapper */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: radial-gradient(circle at 30% 30%, #43d854, #25D366);
  border-radius: 50%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1000;
}
.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* new icon styling */
.whatsapp-icon-img {
  width: 32px;
  height: 32px;
  display: block;
}

