@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
/* Initial state of the sections (hidden) */
[data-observe] {
  opacity: 0;
  transform: translateY(20px); /* Move down initially */
  transition: opacity 1s ease, transform 1s ease; /* Smooth transition */
}

/* When the section comes into view, fade in */
[data-observe].in-view {
  opacity: 1;
  transform: translateY(0); /* Move to the original position */
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  font-size: 1rem; 
}

.shine {
  color: transparent;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 5s linear infinite;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5), 0px 0px 20px rgba(255, 255, 255, 0.5);
}

@keyframes shine {
  0% {
      background-position: 200% center;
  }
  100% {
      background-position: -200% center;
  }
}
body {
  font-family: 'Rubik', Arial, sans-serif;
  color: #3e4d5e; /* Space Blue for text */
  background-color: #eef8fa; /* Pearly White for background */
  line-height: 1.6;
  font-size: 1rem;
}

/* Navigation Bar */
/* General Navbar Styling */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: space-between; /* Distributes space between logo and nav links */
  align-items: center;
  background-color: #eef8fa;
  z-index: 10;
}

.navbar .logo img {
  max-height: 20px;
  width: auto;
  display: block;  /* Ensures the image doesn't have extra space around it */
}

.logo {
  font-size: 1rem; /* Subheadline size */
  font-weight: bold; /* Rubik Bold */
  color: #1b293c;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
  margin-right: 20px;
}

.nav-links li a {
  margin-left: 20px;
  text-decoration: none;
  color: #325689; /* Midnight Blue */
  font-weight: bold; /* Rubik Bold */
  font-size: 1.2rem; /* Base font size */
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #1a3763; /* Darker tint of Midnight Blue */
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #325689;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .hero {
    
        background-size: 300% !important; /* Forcefully zoom the background */
        background-position: center center !important; /* Ensure background stays centered */
      
    }
  
  .nav-links {
      display: none;
      position: absolute;
      top: 60px; /* Below the navbar */
      left: 0;
      width: 100%;
      background-color: #eef8fa; /* Sky Blue with transparency */
      flex-direction: column;
      align-items: center;
  }

  .nav-links.active {
      display: flex;
  }

  .nav-links li {
      margin: 20px 0;
  }

  .hamburger {
      display: block;
      padding-right: 5px;
  }
}

/* Hero Section with Video Background */
.hero {
  text-align: center; /* Center text inside the section */
  display: flex;
  /* background: linear-gradient(to bottom, #32568900 0%, #fbfbfb69 50%), */
  background: linear-gradient(to bottom, #32568900 0%, rgba(251, 251, 251, 0.7) 50%, #eef8fa 100%),
              url('../images/ai-generated-8685407_1280.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: background 2s ease-in-out;
  animation: backgroundAnimate 10s ease-in-out infinite; /* Image Animation */
  position: relative;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero-content {
  position: absolute;
  z-index: 3; /* Ensure hero content is above the video and footer */
  color: #fff; /* Make the text stand out against the background */
  /* top: 130pt; */
}


.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* Adjust the height as needed */
  background: linear-gradient(to top, #325689 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.video-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Set a minimum height to ensure it's visible */
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Match the dimensions of the video */
  background: #9e8f8f80; /* Black background with 50% opacity */
  z-index: 2; /* Higher than video, lower than content */
}
#bg-video {
  width: 100%;
  height: 100%; /* This will cover the height of the container */
  position: absolute;
  top: 0;
  z-index: 1; 
  left: 0;
  object-fit: cover; /* Ensures the video covers the area without distortion */
}

.footer-image {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto; /* Adjust if necessary */
  z-index: 2; /* Make sure it's above all other content */
}

.hero-content h1 {
  white-space: nowrap;
  z-index: 2;
  font-size: 3.5rem; /* 36pt for headlines */
  /* color: #1b293c; */
  color: #1d2c40b0;
  margin: 0 0 10px 0;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);  
  font-weight: bold; /* Rubik Bold */
  }

.hero p {
  margin: 0 0 10px 0;
  font-size: 1.5rem; /* 24pt for subheadlines */
  font-weight: regular; /* Rubik Regular */
}

/* Main Sections */
.section {
  padding: 50px;
  text-align: center;
  position: relative;
}


/* Animation for the Background Image */
@keyframes backgroundAnimate {
  0% {
    background-size: 100%;
    background-position: center;
  }
  50% {
    background-size: 105%; /* Scale the image slightly */
    background-position: top; /* Shift the image slightly */
  }
  100% {
    background-size: 100%;
    background-position: center;
  }
}

.main, .about, .feature, .home{
  background-color: #d3dde0; /* Pearly White */
}

.main-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1b326c;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.main-content {
  padding: 20%;
  position: relative;
  z-index: 2; /* Ensure text is above the gradient */
  text-align: center;
  color: #eef8fa;
}

.main-content h2 {
  font-size: 1.5rem; /* Subheadline size */
  margin-bottom: 20px;
  font-weight: semibold; /* Rubik Semibold */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.main-content p {
  font-size: 1rem; /* Body text size */
  font-weight: regular; /* Rubik Regular */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.main h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #eef8fa;
}
.home-main-section {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Diagonal Overlay Layer for About Section */
.diagonal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1b326c; /* Same as content background */
  clip-path: polygon(0% 100%, 0% 0%, 20% 100%);
  z-index: 1; /* Layer above the video */
}

.home-image-container {
  width: 50%; /* Image takes half the section */
  position: relative;
  overflow: hidden;
}
#home-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image covers the container */
  position: absolute;
  top: 0;
  left: 0;
}
.conv-image-container {
  width: 50%; /* Image takes half the section */
  position: relative;
  overflow: hidden;
  height: 100%; /* Set height to 100% to match the section */
}

.slider-wrapper {
  width: 100%;
  height: 100%; /* Ensure wrapper takes full height */
  position: relative;
  overflow: hidden; /* Hide any overflow to prevent showing parts of the next image */

}

.slider {
  display: flex;
  height: 100%; /* Make the slider height 100% of the wrapper */
  transition: transform 1s ease-in-out; /* Smooth sliding transition */
}

.slider img {
  /* flex-shrink: 0; */
  width: 100%; /* Ensure images take full width of the container */
  height: 100%; /* Ensure images fill the height of the slider */
  object-fit: cover; /* Stretch the images to fit the container exactly */
}
 /* Specific to the image styling */
 #conv-product-image {
  height: 100%; /* Ensure image fits within the container */
  position: relative; /* No absolute positioning */
}
.home-content {
  width: 50%; /* Content takes the other half on the right */
  background-color: #1b326c; /* Solid background color */
  padding: 50px;
  color: #eef8fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.home-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
/* Media query for mobile devices */
@media (max-width: 768px) {
  .home-main-section {
    flex-direction: column; /* Stack elements vertically */
    height: auto; /* Allow height to adjust for content */
  }

  .slider img {
    flex-shrink: 0;
    width: 100%; /* Ensure images take full width of the container */
    height: 100%; /* Ensure images fill the height of the slider */
    object-fit: fill; /* Stretch the images to fit the container exactly */
  }
  .home-content {
    order: 1; /* Ensure content comes first */
    width: 100%; /* Content takes full width */
    padding: 20px; /* Reduce padding for mobile */
  }

  .home-image-container {
    order: 2; /* Ensure image comes after content */
    width: 100%; /* Image takes full width */
    height: 300px; /* Set fixed height for the image on mobile */
    position: relative; /* Remove absolute positioning for mobile */
  }
  .conv-image-container {
    order: 2; /* Ensure image comes after content */
    width: 100%; /* Image takes full width */
    height: 300px; /* Set fixed height for the image on mobile */
    position: relative; /* Remove absolute positioning for mobile */
  }
  #home-product-image {
    height: 100%; /* Ensure image fits within the container */
    position: relative; /* No absolute positioning on mobile */
  }
  #conv-product-image {
    height: 100%; /* Ensure image fits within the container */
    position: relative; /* No absolute positioning on mobile */
  }
  /* Remove diagonal overlay on mobile */
  .diagonal-overlay {
    display: none; /* Hide the diagonal overlay */
  }
  .home-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
}
/* Section container */
.us-section {
  /* background: url('../images/bg.jpg') no-repeat center center; */
  background-color: #1b293c; /* Solid background color */
  position: relative;
  width: 100%;
  padding: 50px;
  min-height: 100vh; /* Allow section to expand dynamically */
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Push content towards the top */
  background-size: cover;
  overflow: hidden;
}

/* Title styles */
.us-title {
  font-size: 2.4rem;
  color: #ffffff;
  text-align: center;
  z-index: 3;
  position: relative;
  opacity: 1;
  margin-bottom: 10px;
}

/* Bullet points container */
.us-bullet-container {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin-top: -110px; /* Pull container closer to the title */
}

/* Semicircular bullet points */
.us-bullets-semicircle {
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.us-bullets-semicircle li {
  position: absolute;
  width: 200px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0; /* Hidden initially */
  transform: none; /* Ensure transform stays the same */
  transition: opacity 1.5s ease; /* Smooth transition */
}

/* Distribute the points from 3 to 9 o'clock */
.us-bullets-semicircle li:nth-child(1) { /* 3 o'clock */
  top: 50%;
  right: -5%;
  transform: translate(100%, -50%);
  animation-delay: 0.5s;
}

.us-bullets-semicircle li:nth-child(2) { /* 4 o'clock */
  top: 75%;
  right: 0%;
  transform: translate(100%);
  animation-delay: 1s;
}

.us-bullets-semicircle li:nth-child(3) { /* 5 o'clock */
  top: 105%;
  right: 10%;
  transform: translate(100%, -50%);
  animation-delay: 1.5s;
}

.us-bullets-semicircle li:nth-child(4) { /* 6 o'clock */
  bottom: -5%;
  left: 50%;
  transform: translate(-50%, 100%);
  animation-delay: 2s;
}

.us-bullets-semicircle li:nth-child(5) { /* 7 o'clock */
  top: 105%;
  left: 10%;
  transform: translate(-100%, -50%);
  animation-delay: 2.5s;
}

.us-bullets-semicircle li:nth-child(6) { /* 8 o'clock */
  top: 75%;
  left: 0%;
  transform: translate(-100%);
  animation-delay: 3s;
}

.us-bullets-semicircle li:nth-child(7) { /* 9 o'clock */
  top: 50%;
  left: -5%;
  transform: translate(-100%, -50%);
  animation-delay: 3.5s;
}

/* Product image */
.us-product-image {
  position: relative;
  z-index: 2;
  width: 800px; /* Set a fixed pixel size for the image */
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8); /* Center the image and scale it */
  transform-origin: center; /* Ensure scaling happens from the center */
  transition: opacity 2s ease, transform 2s ease; /* Smooth transition */
}

.product-overlay {
  width: 100%;
  opacity: 0; /* Hidden initially */
  transition: opacity 2s ease, transform 2s ease; /* Smooth transition */
}

/* Animation for fading in the points */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  /* Layout for mobile: Ensure the section aligns properly */
  .us-section {
    flex-direction: column;
    justify-content: center; /* Center all content vertically */
    align-items: center; /* Center all content horizontally */
    padding: 20px;
    min-height: 100vh; /* Ensure full height is utilized */
  }

  /* Title stays at the top */
  .us-title {
    font-size: 2rem;
    margin-bottom: 20px; /* Add margin to create space between title and the content */
    z-index: 1; /* Ensure the title stays above the points */
    position: relative;
  }

  /* Bullet container with image on the left and points on the right */
  .us-bullet-container {
    display: flex;
    flex-direction: row; /* Image on the left, points on the right */
    justify-content: center; /* Center the image and points */
    width: 100%;
    height: auto;
    align-items: center; /* Center items vertically */
    flex-grow: 1; /* Allow this section to grow and fill the available space */
    margin-top: 40px; /* Move the image and points down below the title */
  }

  /* Center the image in the column */
  .us-product-image {
    width: 50%; /* Reduced width for mobile */
    overflow: hidden;
    position: relative !important; /* Remove desktop positioning */
    left: auto !important; /* Reset left positioning */
    top: auto !important; /* Reset top positioning */
    transform: none !important; /* Remove desktop transform */
    align-self: center; /* Center the image vertically */
    margin-right: 0px; /* Add spacing between image and points */
  }

  .us-product-image img {
    width: 200%; /* Double the width */
    transform: translateX(-50%); /* Show left half of the image */
  }

  /* Stack the bullet points vertically on the right */
  .us-bullets-semicircle {
    position: relative; /* Reset container positioning */
    width: 50%; /* Use half of the screen width */
    height: auto; /* Adjust height to fit content */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the bullet points vertically */
    align-items: flex-start;
    padding-left: 10px;
    margin-left: 10px;
  }

  /* Override desktop li styles for mobile view */
  .us-bullets-semicircle li {
    position: relative !important; /* Reset absolute positioning */
    top: auto !important; /* Remove desktop-specific top */
    left: auto !important; /* Remove desktop-specific left */
    bottom: auto !important; /* Remove desktop-specific bottom */
    right: auto !important; /* Remove desktop-specific right */
    width: auto;
    font-size: 1rem;
    text-align: left; /* Align text to the left for readability */
    margin-bottom: 15px;
    opacity: 1 !important; /* Ensure bullet points are visible */
    transform: none !important; /* Reset transform to default */
    animation: none !important; /* Remove animation delay for mobile */
  }
}


.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1b326ce6;
}
.feature h2 {
  font-size: 2.4rem; /* Subheadline size */
  font-weight: semibold; /* Rubik Semibold */
  margin-bottom: 20px;
  color: #1b293c;
}

.feature-item:hover {
  transform: scale(1.05); 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}
/* Features Section */
.features-grid {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  padding: 50px;
}

.feature-item {
  background-color: #eef8fa; /* Pearly White */
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex-basis: 30%;
}

.feature-item i {
  font-size: 2rem;
  color: #2d86b2; /* Sky Blue */
  margin-bottom: 10px;
}

.feature-item h3 {
  font-size: 1.3rem; /* Subheadline size */
  font-weight: semibold; /* Rubik Semibold */
  margin-bottom: 10px;
  color: #1b293c;
}

.feature-item p {
  font-size: 1.2rem; /* Body text size */
  font-weight: regular; /* Rubik Regular */
  color: #3e4d5e;
}

/* Responsive Layout for Mobile (less than 768px wide) */
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column; /* Stack items vertically on small screens */
    gap: 20px;
  }

  .feature-item {
    flex-basis: 100%; /* Make each feature item take up full width */
  }

  .lab7-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
  }

}
/* LAB7 Section */
.lab7-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background-color: #f0f4f8;
}

/* LAB7 Details (Orange Background) */
.lab7-details {
  flex: 2; /* Takes 2/3 of the width */
  background-color: #f26522; /* Orange background */
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative; /* For containing the texture images */
  z-index: 2; /* Keep content above background textures */
  overflow: hidden; /* Ensure texture images don't overflow outside */
}
.learn-more-btn {
  padding: 12px 20px;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 8px;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}
.lab7-title {
  font-size: 2.4rem;
  color: white;
  margin-bottom: 20px;
}

.lab7-description {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 20px;
}

/* LAB7 Logo Section (White Background) */
.lab7-logo-container {
  flex: 1; /* Takes 1/3 of the width */
  background-color: white; /* White background */
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.lab7-logo {
  max-height: 6rem; /* Keep the logo size */
  margin-bottom: 10px;
}

.logo-caption {
  font-size: 1rem;
  color: #333;
}

/* Background Textures */
.texture {
  position: absolute;
  display: block; /* Ensure the texture is visible */
  z-index: 1; /* Ensure textures are behind text but above background */
  opacity: 0.1;
  transform: scale(1.5); /* Adjust size as needed */
}

.texture-right {
  top: -50px; /* Adjust positioning to stay within borders */
  right: 10px;
  transform: rotate(180deg) scale(1.2); /* Adjust scale to fit inside */
}

.texture-left {
  top: 100px; /* Adjust positioning to stay within borders */
  left: 10px;
  transform: scale(1.2); /* Adjust scale to fit inside */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .lab7-section {
    flex-direction: column;
  }
}

/* Contact Section */
.contact {
  background-color: #f0f4f8;
  padding: 50px;
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  width: 100%;
  align-items: center;      /* Vertically centers flex items */
  text-align: center;  
}

.contact h2 {
  text-align: center; /* Center text of the h2 element */
  font-size: 2.4rem;
  color: #333;
  margin-bottom: 40px; /* Provides spacing between the header and content */
}

/* Styles for the container that holds text and form */
.form-container {
  display: flex;
  flex-direction: column; /* Stack text and form vertically */
  width: 100%; /* Full width of its parent element */
  align-items: center;
  text-align: center;  /* Center text */
  gap: 30px; /* Add some space between text and form */
}

/* Container for textual content */
.text-container {
  display: flex; /* Align the paragraphs in a row */
  justify-content: space-between; /* Ensure there's space between the paragraphs */
  width: 100%; /* Full width of its parent */
  text-align: justify;
  max-width: 1000px; /* Optional: Set a max width for the container */
}

/* Styling for paragraphs in the text container */
.text-container p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #444;
  margin: 40px; /* Space between paragraphs */
  width: 50%; /* Each paragraph takes up 50% of the container width */
}

/* Form styling */
form {
  justify-content: space-around;
  background-color: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%; /* Full width to match the text container */
  display: flex;
  flex-direction: column;
}

/* Styling for form rows */
.form-row {
  display: flex;
  gap: 10px; /* Space between form inputs */
}

/* Styling for individual form groups */
.form-group {
  position: relative;
  width: 100%;
}

/* Label styling within form */
form label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-70%);
  font-size: 1.2rem;
  color: #aaa;
  pointer-events: none; /* Ensures the label does not prevent input interaction */
}

/* Input field styling */
form input, form select {
  padding: 12px 40px; /* Padding to accommodate icons */
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px; /* Space below each input */
  width: 100%; /* Full width of its container */
  transition: border-color 0.3s; /* Smooth transition for focus highlight */
  height: 45px;
}

/* Focus state for inputs */
form input:focus, form select:focus {
  border-color: #007dac;
  outline: none;
}

/* Styling for dropdown (select) field */
form select {
  padding: 8px;
  background-color: #fff; /* Dropdown background */
  cursor: pointer;
  color:#858585 ;
}

/* Styling for the form submit button */
form button {
  padding: 12px;
  background-color: #2d86b2; /* Dark blue */
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s; /* Smooth color transition on hover */
}

/* Hover state for the button */
form button:hover {
  background-color: #28769c; /* Slightly darker blue on hover */
}

/* Responsive design adjustments */
@media (max-width: 768px) {
  .form-container {
    flex-direction: column; /* Stacks elements vertically on smaller screens */
    align-items: center; /* Centers items when stacked */
  }

  .text-container {
    display: block; /* Stacks paragraphs on top of each other */
    width: 100%; /* Full width for mobile responsiveness */
    text-align: left; /* Align text to the left */
    max-width: none; /* Overrides any max-width set for larger screens */
    padding: 10px; /* Adjusted padding for smaller screens */
  }

  .text-container p {
    width: 100%; /* Make each paragraph take the full width */
    margin: 20px 0; /* Add some space between the paragraphs */
  }

  form {
    width: 100%; /* Full width for mobile responsiveness */
    max-width: none; /* Overrides any max-width set for larger screens */
    padding: 10px; /* Adjusted padding for smaller screens */
  }
}



/* Footer */
.footer {
  background-color: #10284a; /* Space Blue */
  color: #eef8fa;
  padding: 20px;
  text-align: center;
  font-size: 0.8rem; /* Smaller text size by default */
  font-weight: 300; /* Light weight */
  border-top: 2px solid #233244; /* Darkest Space Blue */
  position: relative;
}

.social-media-icons {
  margin-bottom: 10px;
}

.social-icon {
  margin: 0 10px;
  color: #eef8fa;
  font-size: 1.5rem; /* Size of the icons */
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #2d86b2; /* Highlight on hover */
}

/* Media query for small screens */
@media (max-width: 768px) {
  .footer {
    font-size: 0.9rem; /* Increase font size for better readability on small screens */
  }

  .social-icon {
    font-size: 1.2rem; /* Adjust icon size for small screens */
  }
}

.conventional-creative-content {
  width: 50%; 
  background-color: #1b326c; /* Solid background color */
  padding: 50px;
  color: #eef8fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.conventional-creative-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.conventional-creative-content h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.conventional-creative-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Custom styles for the list */
.conventional-creative-content ul {
  list-style: none; /* Removes the default bullet points */
  padding: 0;
  margin: 0 0 20px 0;
}

.conventional-creative-content li {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  margin-bottom: 15px;
}

.conventional-creative-content li i {
  margin-right: 10px; /* Space between icon and text */
  color: #eef8fa; /* Color for the icons (gold) */
  width: 60px;
  text-align: center
}

/* Optional hover effect for the icons */
.conventional-creative-content li:hover i {
  color: #38a8de; /* Slightly lighter shade of gold on hover */
}
.creative-main-section {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.conv-creative-main-section {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.creative-content {
  width: 50%; /* Content takes half the section */
  background-color: #1b326c; /* Solid background color */
  padding: 50px;
  color: #eef8fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.creative-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.creative-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
@keyframes insta-bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05); /* Slightly larger at the midpoint */
  }
}

.creative-video-container {
  width: 50%; /* Video takes the other half */
  position: relative;
  overflow: hidden;
  animation-direction: alternate
}

#creative-product-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure video covers the container */
  position: absolute;
  top: 0;
  left: 0;
}

/* Diagonal Overlay Layer */
.main-diagonal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1b326c; /* Same as content background */
  clip-path: polygon(0 0, 20% 0, 0% 100%, 0% 100%); /* Diagonal cut */
  z-index: 1; /* Layer above the video */
}
@media (max-width: 768px) {
  .creative-main-section {
    flex-direction: column; /* Stack elements vertically */
    height: auto; /* Allow height to adjust for content */
  }
  .conventional-creative-content {
    width: 100%; /* Content takes full width */
    padding: 20px; /* Reduce padding for mobile */
  }
  .conventional-creative-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .conventional-creative-content h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .creative-content {
    width: 100%; /* Content takes full width */
    padding: 20px; /* Reduce padding for mobile */

  }
  .creative-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .creative-video-container {
    width: 100%; /* Video takes full width */
    height: 300px; /* Set fixed height for video on mobile */
    position: relative; /* Remove absolute positioning for mobile */
  }

  #creative-product-video {
    height: 100%; /* Ensure video fits within the container */
    position: relative; /* No absolute positioning on mobile */
  }

  /* Remove diagonal overlay on mobile */
  .main-diagonal-overlay {
    display: none; /* Hide the diagonal overlay */
  }
}
.conventional-section {
  position: relative; /* Make sure the section is a positioned element */
  padding: 50px;
  height: 100vh;
  background-color: #eef8fa; /* Light background */
  color: #3e4d5e; /* Dark text color */
}

.conventional-heading {
  text-align: center;
  /* margin-bottom: 60px;  */
}

.conventional-heading h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  text-align: left;
  color: #1b326c; /* Darker blue color for the heading */
}

.conventional-content {
  margin-bottom: 30px;
  align-items: stretch; /* Make both bullet points and image stretch to the same height */
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 50px; Space between the content and paragraph */
}
.creative-bullets {
  flex: 1;
  padding-left: 0;
  margin-right: 30px;
}

.creative-bullets li {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center; /* Center the text */
  align-items: center;
  margin: 1.5em 0;
  cursor: pointer;
  padding: 1em;
  background-color: #eef8fa; /* Fixed dark background */
  position: relative;
  color: white;
  border-radius: 8px;
  overflow: hidden; /* Hide overflow */
  z-index: 1;
  transition: all 0.3s ease;
  font-size: 2.3rem; /* Increase font size here */
}

/* Gradient background behind the dark block */
.creative-bullets li::before {
  content: "";
  position: absolute;
  z-index: -2; /* Behind everything */
  left: -100%; /* Start off screen */
  top: 0;
  width: 300%; /* Large width to create a sweeping effect */
  height: 100%;
  background: linear-gradient(to right, #021B79, #021B79, #021B79); /* Gradient */
  transition: all 0.6s ease; /* Smooth transition */
  border-radius: 8px;
}

.creative-bullets li::after {
  content: "";
  position: absolute;
  z-index: -1; /* Behind the dark background, but above the gradient */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1); /* Light blurred background */
  backdrop-filter: blur(10px); /* Strong blur effect */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.164); /* Subtle shadow */
  transition: all 0.6s ease;
  border-radius: 8px;
}

/* Hover effect */
.creative-bullets li:hover::before {
  transform: translateX(100%); /* Move the gradient to the right */
}


/* Dark background stays dark on hover */
.creative-bullets li:hover {
  background-color: #325689; /* Fixed dark background remains */
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center; /* Ensures image is centered vertically */
  height: auto; /* Ensure container takes the full height of its parent */
}

.conventional-image {
  max-width: 100%;
  height: 100%; /* Set the image height to fill the container's height */
  border-radius: 10px; /* Rounded corners */
  object-fit: contain;/* Ensure the image covers the entire container without distortion */
  margin-left: 30px; /* Adds space between the image and bullet points */
}
.conventional-paragraph {
  text-align: justify;
  /* margin-top: 20px; */
}

.conventional-paragraph p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #3e4d5e;
  text-align: center;
}

/* Corner footer image */
.corner-footer-image {
  position: absolute;
  top: 0; /* Moves the image to the top */
  right: 0; /* Moves the image to the right */
  width: 250px; /* Set the desired width */
  height: auto; /* Maintain aspect ratio */
  margin: 1px; /* Optional margin for spacing from the edges */
  z-index: 10; /* Make sure it's on top of other elements */
  transform: rotate(180deg); /* Rotate 180 degrees for two half rotations */
  transform-origin: center; /* Rotate around the center */
  transition: transform 0.5s ease; /* Smooth transition effect */
}

@media (max-width: 768px) {
  .corner-footer-image {
    width: 100px; /* Adjust size for smaller screens */
    margin: 10px; /* Smaller margin */
    
  }

  .hero-content h1 {
    font-size: 2rem; /* Further reduce for very small screens */
    color: #1b326b;
  }
}
  /* Additional wrapping rules for even smaller screens */
  @media (max-width: 480px) {
    .hero-content h1 {
      white-space: normal;
      font-size: 2rem; /* Further reduce for very small screens */
      padding: 10px; /* Adjust padding for smaller screens */
    }
  }

.about-main-section {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  flex-direction: row-reverse; /* Image on the right, text on the left */
}

.about-image-container {
  width: 50%; /* Image takes half the section */
  position: relative;
  overflow: hidden;
}

#about-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image covers the container */
  position: absolute;
  top: 0;
  left: 0;
}

.about-content {
  width: 50%; /* Content takes the other half on the left */
  background-color: #1b326c; /* Solid background color */
  padding: 50px;
  color: #eef8fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .hero {
      background-size: 10000%; /* Zoom in the background on smaller screens */
      background-position: center center; /* Center the background */
    }
    .about-content h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    
  .about-main-section {
    flex-direction: column; /* Stack elements vertically */
    height: auto; /* Allow height to adjust for content */
  }

  .about-content {
    order: 1; /* Ensure content comes first */
    width: 100%; /* Content takes full width */
    padding: 20px; /* Reduce padding for mobile */
  }

  .about-image-container {
    order: 2; /* Ensure image comes after content */
    width: 100%; /* Image takes full width */
    height: 300px; /* Set fixed height for the image on mobile */
    position: relative; /* Remove absolute positioning for mobile */
  }
  
  #about-image {
    height: 100%; /* Ensure image fits within the container */
    position: relative; /* No absolute positioning on mobile */
  }

  /* Remove diagonal overlay on mobile */
  .diagonal-overlay {
    display: none; /* Hide the diagonal overlay */
  }
}
/* Section container */
.values-section {
  width: 100%;
  background: #f0f4f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}

/* Unified box style for Vision, Mission, and Values with reduced height */
.section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  width: 100%;
  max-width: 900px;
  background: white;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
}

.section-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Alternate layouts for icons */
.vision .icon {
  order: 2;
}
.mission .icon {
  order: 1;
}

/* Text and icon styles */
.text {
  width: 60%;
  padding: 10px;
}

.icon {
  width: 25%;
  font-size: 5.5rem;
  color: #2d86b2;
  display: flex;
  justify-content: left;
  align-items: center;
}

/* Headings */
.section-content h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #1b293c;
}

.section-content p {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
  color: #444;
}

/* Values Section */
.section-content.values {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Ensures alignment similar to Vision and Mission */
  width: 100%;
  padding: 20px 40px;
}

/* Values Grid */
.values-grid {
  display: flex;
  justify-content: center; /* Center the values grid */
  align-items: center;
  gap: 30px; /* Spacing between items */
  width: 100%;
  max-width: 900px; /* Ensures consistency */
}

/* Values Items */
.values-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.values-item i {
  font-size: 3rem;
  color: #2d86b2;
  margin-bottom: 10px;
}

.values-item p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1b293c;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .section-content {
    flex-direction: column;
    text-align: center;
    max-width: 90% ;
    padding: 20px;
  }
  .section-content p {
    text-align: center;
  }
  .text {
    width: 100%;
    margin-bottom: 10px;
  }

  .icon {
    display: block;
    width: 100%;
    font-size: 3rem;
    margin-bottom: 10px;
  }

  .values-grid {
    flex-direction: column;
    gap: 20px;
  }

  .values-item {
    width: 100%;
  }
}

.product-section {
  position: relative;
  height: 250vh; /* Enough space for scrolling */
  background-color: #eaf7f5;
}

.advantages-content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Align elements to the top */
  text-align: center;
  padding-top: 150px; /* Add space below the title when shrunk */
}


.big-title {
  font-size: 6rem;
  color: #05668d;
  transition: font-size 1s ease, opacity 1s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: 2;
}

.big-title.shrunk {
  position: relative;
  top: 0;
  left: 0; /* Remove absolute positioning */
  transform: none; /* Remove transformation */
  font-size: 2.4rem;
  opacity: 1;
  margin-bottom: 20px;
  z-index: 2;
  width: 100%; /* Take full width to ensure centering */
  text-align: center; /* Center the text */
}

.advantages-bullets-semicircle {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%; /* Full width to allow centered bullets */
  display: flex;
  justify-content: center;
  gap: 10px; /* Space between the bullets when stacked */
  flex-wrap: wrap; /* Enable wrapping into multiple rows */
}

.bullet.stacked {
  position: static; /* Reset positioning to allow stacking in rows */
  font-size: 1.7rem;
  opacity: 1;
  font-weight: bold;
  white-space: nowrap;
  transform: none;
  transition: transform 1s ease, opacity 1s ease;
  width: 45%; /* Each bullet will take about half of the available width */
  text-align: center;
  margin-bottom: 20px; /* Space between rows */
}
.bullet {
  font-size: 2.4rem;
  width: max-content;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
  position: absolute; /* Ensures bullets are centered when shown */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bullet.show {
  font-size: 4rem;
  white-space: nowrap;
  font-weight: bold;
  opacity: 1;
  transform: translate(-50%, 50%);
}

.left-side-content {
  opacity: 0; /* Initially hidden */
  transition: opacity 1s ease;
  text-align: center;
  margin-top: 40px;
}

.left-image {
  max-width: 400px;
  height: auto;
}

.left-paragraph {
  font-size: 1.7rem;
  margin-top: 20px;
  text-align: center; /* Center the text */
  width: 50%; /* Make the paragraph 50% of the container's width */
  margin-left: auto; /* Automatically set the left margin */
  margin-right: auto; /* Automatically set the right margin to center it */
}

@media (max-width: 768px) {
  /* Adjust font sizes and spacing for mobile view */
  .big-title {
    font-size: 2.4rem; /* Smaller title for mobile */
  }

  .big-title.shrunk {
    font-size: 2rem; /* Smaller title when shrunk on mobile */
    margin-bottom: 30px; /* Less space between title and bullets */
  }

  .bullet {
    font-size: 1.8rem; /* Smaller bullet points for mobile */
    position: absolute; /* Position "show" bullets in the middle */
    top: 50%;
    left: 50%; /* Ensure the bullet is horizontally centered */
    transform: translate(-50%, -50%); /* Center vertically and horizontally */
    z-index: 10; /* Ensure "show" bullets are above others */
    width: 100%; /* Ensure the bullet occupies the entire width */
    white-space: nowrap; /* Prevent wrapping of text */
    text-align: center; /* Ensure text is centered */
  }

  .bullet.show {
    opacity: 1;
    z-index: 10;
    transform: translate(-50%, 200%);
    font-size: 2.4rem;
    white-space: wrap;
  }

  .bullet.stacked {
   /* position: relative; */
    font-size: 1.2rem;
    text-align: center;
    display: block;
    margin: 5px 0;
    width: 100%;
    z-index: 1;
    left: 0;
    transform: none; 
  }

  /* Prevent overlap of last bullet in "show" mode with stacked bullets */
  .bullet.show.stacked {
    opacity: 0; /* Hide the "show" bullet once stacked */
    z-index: -1; /* Push "show" bullet behind once it transitions to stacked */
  }

  .advantages-content {
    padding-top: 100px; /* Adjust padding for mobile */
  }

  .advantages-bullets-semicircle {
    flex-direction: column; /* Stack bullets vertically on mobile */
    gap: 10px; /* Add space between the bullets */
    justify-content: center;
    align-items: center;
  }

  .left-paragraph {
    width: 80%; /* Make paragraph take up more space on mobile */
    font-size: 1.2rem; /* Smaller paragraph font size */
    margin-left: auto;
    margin-right: auto;
  }

  .left-image {
    max-width: 60%; /* Reduce image size for mobile */
    height: auto;
  }
}

@media screen and (min-width: 1600px) {
  .left-image {
    max-width: 600px; 
    height: auto;
  }

  .left-paragraph {
    font-size: 1.5rem; 
    width: 60%; 
  }

  .big-title {
    font-size: 4rem;
  }
}
/* Responsive adjustments for screens with lower height */
@media screen and (max-height: 800px) {
  .left-image {
    max-width: 250px; /* Reduce image size for shorter screens */
    height: auto;
  }

  .left-paragraph {
    font-size: 1.4rem; /* Reduce font size to fit more text within view */
    width: 70%; /* Adjust width to prevent overflowing */
    margin-top: 10px; /* Reduce space to fit content better */
  }

  .big-title {
    font-size: 3.5rem; /* Decrease font size */
    top: 40%; /* Move title up for better positioning */
    transform: translate(-50%, -40%);
  }

  .advantages-content {
    padding-top: 60px; /* Decrease padding to accommodate shorter screens */
  }
  .bullet.stacked {
    position: static; /* Reset positioning to allow stacking in rows */
    font-size: 1.4rem;
    margin-bottom: 10px; /* Space between rows */
  }
}
