.company-Title{
    font-family: 'Poppins', sans-serif; 
    font-size: 40px !important; 
    font-weight: 700 !important; 
    color: #fff; 
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); 
    text-align: center;
    margin-bottom: 5px !important;
}

.company-subTitle {
    font-family: 'Poppins', sans-serif; 
    background: linear-gradient(45deg, #FF9800, #F44336); 
    -webkit-background-clip: text; 
    color: transparent; 
    font-size: 40px; 
    font-weight: 800; 
    text-shadow: 4px 4px 6px rgba(200, 198, 198, 0.5); 
    letter-spacing: 5px; -webkit-text-stroke: 2px #000;
    text-align: center;
}
.company-subTitle-sway {
    font-family: 'Poppins', sans-serif; text-align: 
    center; font-size: 20px !important; 
    color: #fff; 
    letter-spacing: 2px; 
    font-weight: 600 !important; 
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    display: block; 
    width: 100%;
    text-align: center;
    text-shadow: center !important;
}

@media (max-width: 768px) {
    .company-Title {
        font-size: 25px !important;
    }

    .company-subTitle {
        font-size: 22px !important;
    }

    .company-subTitle-sway {
        font-size: 12px !important;
    }
}

/* 🔹 Mobile Screens (≤ 576px) */
@media (max-width: 576px) {
    .caption {
        padding: 10px;
    }

    .company-Title {
        font-size: 20px;
    }

    .company-subTitle {
        font-size: 18px;
    }

    .company-subTitle-sway {
        font-size: 14px;
    }
}


.thumb {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
  
.thumb img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}
  
  /* Always visible text */
.thumb .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}
  
  /* Hover effect: Only text changes */
.thumb:hover .overlay-text {
    color: yellow; /* Change text color on hover */
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8); /* Glow effect */
}
  
.meeting-item .thumb img {
      border-top-right-radius: 0px;
      border-top-left-radius: 0px;
}
  
/* Honeycomb container */
.hex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.hex-row {
    display: flex;
    gap: 1px;
}

/* Hexagon shape */
.hex {
    width: 400px;
    height: 350px;
    background-color: #ddd;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Offset the second row for honeycomb effect */
.hex-row:nth-child(2) {
    transform: translateY(-87px);
}

/* Video inside hexagons */
.hex video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay text box */
.hex-text {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 14px;
    padding: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hex-container {
        flex-direction: column;
        gap: 20px;
    }

    .hex-row {
        flex-direction: column;
        gap: 20px;
        transform: none !important; /* Removes honeycomb effect on mobile */
    }

    .hex {
        width: 300px; /* Reduce hexagon size for mobile */
        height: 260px;
    }
}

/* Hover effect */
.hex:hover .hex-text {
    background: rgba(255, 165, 0, 0.9); /* Orange color on hover */
    color: black;
}
/* style for moveing text like wave */
.text-container {
    position: relative;
    display: inline-block;
}

.sway-text {
    font-size: 25px;
    font-weight: bold;
    color: #007bff;
    display: inline-block;
    transform-origin: top; /* Keeps the top fixed */
    text-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4); /* Stronger depth shadow */
    animation: swayEffect 0.8s ease-in-out infinite alternate; /* Smooth animation */
    position: relative;
    z-index: 2;
}

.background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0, 123, 255, 0.2), rgba(0, 0, 0, 0.3));
    border-radius: 10px;
    filter: blur(8px);
    animation: swayBackground 0.8s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes swayEffect {
    0% {
        transform: rotateX(0deg) translateZ(0px) scale(1);
    }
    100% {
        transform: rotateX(35deg) translateZ(15px) scale(0.98);
    }
}

@keyframes swayBackground {
    0% {
        transform: translate(-40%, -60%) rotateX(0deg) scale(1.05);
        opacity: 1.4;
    }
    100% {
        transform: translate(-60%, -40%) rotateX(30deg) scale(1);
        opacity: 1.6;
    }
}
    
    /* Text hover effects with bachground*/
.text-wrapper {
    display: inline-block;
    position: relative;
    padding: 1px 20px;
    border-radius: 15px;
    background-color: #066e7e;
    height: 70px; /* Fixed height */
    width:300px;
    line-height: 50px; /* Keeps text centered */
    overflow: hidden; /* Ensures box remains static */
}

    /* Text styling */
.text-hover {
    font-size: 30px;
    color: yellow; /* Change text color on hover */
    
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
        white-space: nowrap;
    transform: translate(-50%, -50%); /* Center text inside box */
    transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
}

.text-hover:hover {
    font-size: 35px; /* Larger size on hover */
    color: yellow !important; /* Change text color */
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8); /* Glow effect */
}

    /* Hexa text effects and bachground */
.hover-container-hexa {
    position: relative;
    display: inline-block;
}
.hover-text-hexa {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.hover-container:hover .hover-text-hexa {
    opacity: 1;
    visibility: visible;
}
.overlay-doted {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(132, 169, 167, 0.5); /* Dark semi-transparent background */
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 10%, transparent 20%);
    background-size: 5px 5px; /* Adjust dot spacing */
    opacity: 1;
    pointer-events: none; /* Prevents interaction blocking */
    }
.product-text-center{
    position: absolute;
    margin-top:80px;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    max-width: 800px;
}
/* style for buttons with screw in products*/
.box-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: transparent;
    text-align: center;
    font-family: 'Arial', sans-serif;
}
.button-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg,rgb(5, 74, 86),rgb(59, 117, 120));
    color: white;
    font-size: 22px;
    padding: 10px;
    border-radius: 0;
    border: 2px solid #333;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    opacity: 0.8;
}
.button-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease-in-out;
}
.button-container:hover::before {
    left: 100%;
}
.button-container:hover {
    background: linear-gradient(135deg, #3b6978, #5a7d8f);
    color: #ffeb3b;
    font-size: 24px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 235, 59, 1);
}
.button-container:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
    background: linear-gradient(135deg, #16202a, #2e5c69);
}
.screw {
    position: absolute;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, #ddd, #888);
    border-radius: 50%;
    box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.6);
    border: 2px solid #555;
}
.top-left { top: 4px; left: 4px; }
.top-right { top: 4px; right: 4px; }
.bottom-left { bottom: 4px; left: 4px; }
.bottom-right { bottom: 4px; right: 4px; }
.down-content {
    margin-top: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}
.video-products {
    width: 100%;
    height: 25vh !important;
    object-fit: cover;
    border-radius: 0 0 20px 20px;
}

@media (max-width: 768px) {
    .box-container {
        padding: 5px;
        text-align: center;
    }

    .button-container {
        font-size: 16px;
        padding: 8px;
    }

    .video-products {
        border-radius: 5px;
    }
}

@media (max-width: 576px) {
    .box-container {
        padding: 3px;
        
    }

    .button-container {
        font-size: 14px;
        padding: 6px;
    }

    .video-products {
        width: 100%;
        border-radius: 3px;
    }
}


.apply-now {
    height: 130vh !important; /* Default for non-mobile devices */
}

@media screen and (max-width: 768px) {
    .apply-now {
        height: 280vh !important  ; /* For mobile devices */
    }
}

/* Styles for Product Page*/

.section-wrapper-product * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Wrapper for centering the section without affecting other content */
.section-wrapper-product {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background: #9ab3b5;
    margin-bottom: 5px;
    padding: 10px;
}

/* Container with a grey background */
.container-product {
    background: #d3d3d3; /* Grey background */
    padding: 0px;
    margin: 0px; 
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 2000px;
}

/* Section content */
.section-container-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #4c8285;
    padding: 0px;
    border-radius: 10px;
    align-items: stretch; 
    gap: 0px;
}

.column {
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
    padding: 10px;
}

.column:not(.buttons) {
    flex: 1.2; /* More space for columns except buttons*/
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers text vertically */
    align-items: center; /* Centers text horizontally */
    text-align: center; /* Ensures text is centered */
}

.column.buttons {
    flex: 0.4; /* Reduce width for better presentation */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center buttons */
    align-items: center;
}
.column img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
}

.column p {
    font-size: 18px;
    line-height: 1.5;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.buttons button {
    padding: 10px 20px;
    font-size: 12px;
    background: #bbcccc;
    color: rgb(24, 23, 23);
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.buttons button:hover {
    background: #71aeb4;
    font-size: 18px;
}
.column img:hover {
    transform: scale(1.2);
}
/* Vertical dividers */
.divider {
    width: 2px;
    background: #05859e;
    min-height: 150px; /* Adjust based on content height */
    height: auto; /* Ensures it adjusts dynamically */
    margin: 0 5px;
}   

@media (max-width: 768px) {
    .section-container-product {
        flex-direction: column;
        text-align: center;
    }

    .divider {
        display: none;
    }

    .buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.product-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}