@charset "utf-8";
/* CSS Document */


	
	a {
  text-decoration: none; /* Remove underline from links */
}

.sticky-container {
  cursor: pointer; /* Show pointer when hovering over the container */
}

.sticky-container {
  background-color: #fff;  /* Container background color */
  position: fixed;
  top: 50%;
  left: -2px;
  height: 150px; /* Set the desired height for the container */
  transform: translateY(-50%); /* Center the container vertically */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;  /* Center the button and image vertically inside the container */
  z-index: 1000; /* Ensures the button and image are on top of other content */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Adding shadow */
  border-top-right-radius: 15px; /* Top-right corner rounded */
  border-bottom-right-radius: 15px; /* Bottom-right corner rounded */
  border: 2px solid #007bff; /* Adds a blue border around the container */
}


.sticky-button {
  font-size: 16px;
  padding: 10px 20px;
  margin-bottom: 10px; /* Space between button and image */
  border: none;  /* Remove the border */
  background-color: transparent;  /* Optional: makes the button transparent */
  color: #007bff;  /* Button text color */
  cursor: pointer;  /* Cursor shows pointer when hovering */
}

.sticky-image {
  width: 100px; /* Adjust as needed */
  height: auto;
	}
	
	@media screen and (max-width: 768px) { /* Adjust the max-width value as needed */
  .sticky-container {
    display: none;
  }
}

.banner-head-image {
    background-color: white; /* Section background */
    height: 200px; /* Fixed height for the banner */
    overflow: hidden; /* Prevent content overflow */
    position: relative; /* Position for absolute elements */
    display: flex; /* Align content */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center; /* Center the text */
}

.banner-head-image::before {
    content: ''; /* Required for pseudo-element */
    position: absolute; /* Ensure it covers the entire section */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background: linear-gradient(to bottom, rgba(128, 128, 128, 0.5), rgba(128, 128, 128, 0.5)); /* Gray overlay gradient */
    z-index: 2; /* Place above the image but behind text content */
    pointer-events: none; /* Ensure overlay doesn’t interfere with interactions */
}

.banner-head-image img {
    position: absolute; /* Ensure the image fills the section */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2); /* Center and zoom image */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the section */
    z-index: 1; /* Keep the image behind the overlay and content */
}

.banner-content {
    position: relative; /* Layer on top of the gradient overlay */
    z-index: 3; /* Ensure it's above the overlay and image */
    color: white; /* Text color for contrast */
    padding: 1.5rem 2rem; /* Add spacing around the text */
    border-radius: 8px; /* Optional: Rounded corners for the content box */

    letter-spacing: 0.5px; /* Added letter-spacing for rounded look */
}

	 .company-info-title {
        font-size: 40px; /* Adjust heading size for smaller screens */
    }
.company-info-title {

    font-weight: bold; /* Bold weight for heading */
    font-size: 2.5rem; /* Increased size for better impact */
    line-height: 1.3; /* Better line spacing for readability */
    margin-bottom: 1rem; /* Space between heading and paragraph */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Soft shadow to round text appearance */
    border-radius: 5px; /* Soft round corner effect */
}

.company-info-text {

    font-weight: normal; /* Normal weight for body text */
    font-size: 1.125rem; /* Slightly larger for better readability */
    line-height: 1.6; /* Increased line height for readability */
    margin: 0;
    letter-spacing: 0.3px; /* Slight letter spacing for softer appearance */
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.1); /* Subtle shadow to create a rounded edge effect */
}

@media (max-width: 768px) {
	


    .company-info-title {
        font-size: 40px; /* Adjust heading size for smaller screens */
    }

    .company-info-text {
        font-size: 1rem; /* Adjust paragraph size for smaller screens */
    }
}
	/* Smallest Screen Styles */
	@media (max-width: 575.98px) {
		.banner-head-image {

    height: 100px; /* Fixed height for the banner */

}
		
	.company-info-title {
        font-size: 1.2rem; /* Adjust heading size for smaller screens */
    }

    .company-info-text {
		margin-top: -10px;
        font-size: 0.6rem; /* Adjust paragraph size for smaller screens */
    }
	
	
	}

/* Adjusted Philosophy CVN Styling */
.philosophy-cvn {
    background-color: #fff;
    border-radius: 15px;
    margin: 20px auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.philosophy-cvn:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.philosophy-col-text {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    text-align: left;
    transition: color 0.3s;
}

.philosophy-cvn:hover .philosophy-col-text {
    color: #333; /* Darker text on hover */
}

.philosophy-col-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px; /* Add margin to the right of the image */
    transition: transform 0.3s, filter 0.3s;
}

.philosophy-cvn:hover .philosophy-col-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.philosophy-col-image img {
    max-width: 90%;
    border-radius: 15px;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .philosophy-cvn {
        flex-direction: column;
        padding: 15px;
    }

    /* Ensure image appears above text on mobile view */
    .philosophy-col-image {
        margin-right: 0; /* Reset margin for mobile */
    }

    .philosophy-col-image img {
        max-width: 100%;
    }
	
	.swiper-slide img {
		 width: 100%;
    	height: auto;
	}
	
	.swiper-container  {
		max-width: 50%;
	}
    /* Change the order of the columns so the image is above text */
    .philosophy-cvn > .philosophy-col-text {
        order: 2;
    }
    .philosophy-cvn > .philosophy-col-image {
        order: 1;
    }

    /* Make the text smaller on small screens */
    .philosophy-col-text {
        font-size: 12px;
    }

    .strong-title {
        font-size: 16px;
    }
	
	    /* Smaller text for Corporate Philosophy heading 
    .font-weight-bold.text-gray {
        font-size: 20px;
        text-align: left;
    }*/
}

.strong-title {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: bold;

}
	
	
	/* Smallest Screen Styles */
	@media (max-width: 575.98px) {
		
		.corporate-philosophy-title {
			font-size: 19px;
			
		}
		.corporate-vision-text {
			font-size: 12px;
			
		}
		.corporate-vision {
			font-size: 25px;
			
		}
		
		.corporate-president-meet,
		.corporate-ceo-meet {
			font-size: 22px;
	
		}
	}
	

/* Ensure the carousel container has a fixed height */
.philosophy-carousel {
    width: 70%;
    max-width: 500px; /* Adjust width as needed */
    height: auto; /* Adjust height as needed */
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Ensure images are fully responsive */
.philosophy-carousel .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures the image covers the entire slide */
    border-radius: 10px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .philosophy-carousel {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .philosophy-carousel {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .philosophy-carousel {
        width: 100%;
        max-width: 350px;
    }
}



/* Ensure the carousel container has a fixed height */
.philosophy-carousel2 {
    width: 70%;
    max-width: 500px; /* Adjust width as needed */
    height: auto; /* Adjust height as needed */
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Ensure images are fully responsive */
.philosophy-carousel2 .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures the image covers the entire slide */
    border-radius: 10px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .philosophy-carousel2 {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .philosophy-carousel2 {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .philosophy-carousel2 {
        width: 100%;
        max-width: 350px;
    }
}


	
.bg-gray {
    background-color: #f7f7f7; /* Optional background color */
}
	.card {
		  border-radius: 15px;
	}
.paper {
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
	   border: 2px solid #004A6E; /* Matching border color */
}

.paper:hover {
    transform: translateY(-10px);
}

.paper-image img {
    max-width: 100%;
    border-radius: 10px;
}

.paper-title {
    font-weight: bold;
    color: #007bff;
    margin-top: 15px;
}

.paper-text {
    color: #5a5a5a;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 10px;
}
	
.cpt {
	font-size: 40px;
	text-align: center;		
	}
	
	/* Smallest Screen Styles */
	@media (max-width: 575.98px) {
		.cpt {
			font-size: 28px;
			text-align: center;
			
		}
		.cptx {
			font-size: 15px;
			text-align: center;
		}

	}

		/* Smallest Screen Styles */
	@media (max-width: 575.98px) {
		.oht {
			font-size: 28px;
			text-align: center;
			
		}
		.ohtx {
			font-size: 15px;
			text-align: center;
		}

	}
	
			/* Smallest Screen Styles */
	@media (max-width: 575.98px) {
		.ohyt {
			font-size: 28px;
			text-align: center;
			
		}
		.ohytx {
			font-size: 15px;
			text-align: center;
		}

	}
	
	/* Smallest Screen Styles */
	@media (max-width: 575.98px) {
		
		.cvn-title {
			font-size: 15px;

		}
		.cvn-text {
			font-size: 12px;

		}
		}


	
	@media (max-width: 768px) { 

	
	}


	
.ohq-title {
	font-size: 25px;
	}	
	/* Smallest Screen Styles */
	@media (max-width: 575.98px) {
		.ohq-title {
			font-size: 17px;
		
			padding-bottom: 10px;
		}
		.ohq-text {
			font-size: 12px;
		
		}	
		
	}	
	
	
	.ohq-pad {
		padding: 15px;
	}	
	.ohq-pad {
		font-size: 15px;
	}
	
@media (max-width: 768px) {
  .row.mb-4 {
    display: flex; /* Ensures flexbox is applied */
    flex-direction: column; /* Stack items vertically */
  }
  .row.mb-4 .col-md-3 {
    order: 1; /* Image appears on top */
  }
  .row.mb-4 .col-md-9 {
    order: 2; /* Text appears below image */
  }
	

}

			.cvn-year {
			font-size: 30px;

		}
		/* Smallest Screen Styles */
	@media (max-width: 575.98px) {
		
		.cvn-title2 {
			font-size: 18px;

		}
		.cvn-text2 {
			font-size: 12px;

		}
		.cvn-year {
			font-size: 35px;

		}
		}

#product-head-image {
    background-color: white; /* Section background */
    height: 200px; /* Fixed height for the banner */
    overflow: hidden; /* Prevent content overflow */
    position: relative; /* Position for absolute elements */
    display: flex; /* Align content */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center; /* Center the text */
}

#product-head-image::before {
    content: ''; /* Required for pseudo-element */
    position: absolute; /* Ensure it covers the entire section */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background: linear-gradient(to bottom, rgba(128, 128, 128, 0.5), rgba(128, 128, 128, 0.5)); /* Gray overlay gradient */
    z-index: 2; /* Place above the image but behind text content */
    pointer-events: none; /* Ensure overlay doesn’t interfere with interactions */
}

#product-head-image img {
    position: absolute; /* Ensure the image fills the section */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2); /* Center and zoom image */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the section */
    z-index: 1; /* Keep the image behind the overlay and content */
}

.banner-content {
    position: relative; /* Layer on top of the gradient overlay */
    z-index: 3; /* Ensure it's above the overlay and image */
    color: white; /* Text color for contrast */
    padding: 1.5rem 2rem; /* Add spacing around the text */
    border-radius: 8px; /* Optional: Rounded corners for the content box */

    letter-spacing: 0.5px; /* Added letter-spacing for rounded look */
}

.banner-content h2 {

    font-weight: bold; /* Bold weight for heading */
    font-size: 2.5rem; /* Increased size for better impact */
    line-height: 1.3; /* Better line spacing for readability */
    margin-bottom: 1rem; /* Space between heading and paragraph */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Soft shadow to round text appearance */
    border-radius: 5px; /* Soft round corner effect */
}

.banner-content p {

    font-weight: normal; /* Normal weight for body text */
    font-size: 1.125rem; /* Slightly larger for better readability */
    line-height: 1.6; /* Increased line height for readability */
    margin: 0;
    letter-spacing: 0.3px; /* Slight letter spacing for softer appearance */
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.1); /* Subtle shadow to create a rounded edge effect */
}

@media (max-width: 768px) {
    .banner-content h2 {
        font-size: 2rem; /* Adjust heading size for smaller screens */
    }

    .banner-content p {
        font-size: 1rem; /* Adjust paragraph size for smaller screens */
    }
}



