@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
  margin: 0;
  font-family: Arial, monospace;
  background-color: white;
  color: #fff;
}

/* General styles for navbar */
header.navbar {
  background-color:none; /* White background */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  padding: 10px 20px;
  position: relative; /* Make sure it is positioned relative to its container */
}

.sec1 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 20px;
  height: 600px;
  position: relative;
  transition: background-position 1s;
}

.sec1 .left {
  padding: 20px;
  color: #fff; /* Ensure text is readable on dark background */
}

.sec1 .left p {
  font-size: 18px;
  line-height: 1.6;
  color: #f0f0f0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  margin: 0 auto;
}

.sec1 .left h1 {
  font-size: 2.5em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  margin-top: 20px;
}

.hero-buttons .explore-now {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f05454;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.hero-buttons .explore-now:hover {
  background-color: #d43f3f;
}
.button-container {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.button {
  background-color: #333;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.button:hover {
  background-color: #555;
  transform: scale(1.1);
}

.button:active {
  background-color: #777;
}

header.navbar .logo {
  color: #333; /* Dark color for better contrast */
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

header.navbar nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

header.navbar nav ul li {
  font-family: "Amazon Ember",Arial,sans-serif;
font-weight: bold;
  display: inline-block;
  margin: 0 20px;
}

header.navbar nav ul li a {
  color: #2b2828; /* Dark color for links */
  text-decoration: none;
}

header.navbar nav ul li a:hover {
  background-color:#0278ae; /* Hover color */
  color:#2b2828;
}

/* Responsive styles for navbar inside section */
@media (max-width: 767px) {
  header.navbar nav ul {
    display: none; /* Hide the ul by default */
    flex-direction: column;
    gap: 15px;
    margin-top: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    z-index: 1000;
    padding-top: 60px; /* Space for the navbar */
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
  }

  /* Show the menu icon */
  .menu-icon {
    display: block;
  }

  /* Show the menu when the checkbox is checked */
  #menu-toggle:checked ~ nav ul {
    transform: translateX(0);
    display: flex;
  }

  /* Style links for touch */
  .navbar nav ul li {
    margin: 10px 0; /* Add space between items */
  }

  .navbar nav ul li a {
    padding: 15px 30px; /* Increase touch area */
    font-size: 18px; /* Larger text for easier clicking */
    display: block;
  }

  /* Prevent content from shifting */
  .content {
    transition: none;
  }
}

  header.navbar input[type="checkbox"]:checked ~ nav ul {
    display: flex;
  }

  .menu-icon {
    display: inline-block;
    cursor: pointer;
    font-size: 24px;
  }




/* Add this CSS inside your existing <style> tags or in your CSS file */

.sec1 .right img {
  width: 100%;
  max-width: 480px;
  border-radius: 15px; /* Rounded corners for a modern look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  object-fit: cover; /* Ensures the image covers the container nicely */
  transition: transform 0.3s ease-in-out; /* Smooth transition for hover effect */
}

.sec1 .right img:hover {
  transform: scale(1.05); /* Slight zoom-in effect on hover */
}

@media (max-width: 768px) {
  .sec1 .split-section {
    flex-direction: column-reverse; /* Stack the image below the text on small screens */
    text-align: center;
  }

  .sec1 .right img {
    max-width: 100%; /* Make the image full-width on smaller screens */
    margin-top: 20px; /* Add some space between text and image */
  }
}
/* Hero section styles */
/* Hero section styles */
.sec1 {
  background-image: url("image/a2.jpg");
  background-size: cover; /* Make the background image cover the entire section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  background-attachment: fixed; /* Keep the image fixed during scrolling */
  padding: 40px 20px; /* Add padding if needed */
}


/* Split section styles */
.split-section {
  display: flex;
  flex-direction: column; /* Stack elements vertically on small screens */
}

.left,
.right {
  padding: 20px;
}

.split-section h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.split-section p {
  font-size: 18px;
  margin-bottom: 40px;
}

/* Hero buttons */
.left {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center items horizontally */
  text-align: center; /* Center text */
}

/* Hero buttons */
.hero-buttons a {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  margin-right: 20px;
  transition: transform 0.3s ease;
  margin-left: 0;
}

/* Explore Now button */
.explore-now {
  background-color: #fff;
  color:#0021a6;
  margin-bottom: 20px; /* Add margin-bottom */
}

/* Scaling effect when hovering over the Explore Now button */
.explore-now:hover {
  transform: scale(1.1);
}

/* Section 2 styles */
.sec2 {
  padding: 40px 20px;
  text-align: center;
}

.sec2 h3 {
  color: #6c63ff;
  font-size: 18px;
  margin-bottom: 10px;
}

.sec2 h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

/* Card grid styles */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
}

/* 
/* Scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* For Firefox */
html {
  scrollbar-width: thin;
}
/* Heading Styles */
.main-heading {
  text-align: center;
  color: #343e51;
  font-size: 2.5rem; /* Larger font size for prominence */
  font-weight: 700; /* Bold font weight */
  margin: 0 0 20px 0; /* Margin below the heading */
}

.sub-heading {
  text-align: center;
  color: #343e51;
  font-size: 1.5rem; /* Slightly smaller than h1 */
  font-weight: 400; /* Regular font weight */
  margin: 0 0 30px 0; /* Margin below the sub-heading */
  line-height: 1.6; /* Increase line height for readability */
  max-width: 800px; /* Constrain width for better readability */
  margin-left: auto;
  margin-right: auto;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: background-color 0.3s, transform 0.3s;
}

.logo-item:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

.logo-item img {
  max-width: 60%;  /* Adjust size as needed */
  height: auto;
  margin-bottom: 10px;
}

.logo-title {
  font-size: 1rem;
  font-weight: 600;
  color: #343e51;
}

/* Section 3 styles */
.sec3 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.container {
  flex: 1;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.top-part {
  flex: 2;
}

.top-part img {
  width: 100%;
  height: auto;
  display: block;
}

.bottom-part {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bottom-part h3 {
  margin: 0;
  font-size: 1.2em;
}

.bottom-part p {
  margin: 10px 0;
}

.date {
  color: #888;
  font-size: 0.9em;
}

.right img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .right img {
    width: 80%;
  }

  .split-section {
    flex-direction: row;
    align-items: center;
  }

  .navbar nav ul {
    flex-wrap: nowrap; /* Prevents wrapping on larger screens */
  }

  .card-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sec3 {
    flex-direction: row;
  }
}

/* Media query for small screens (responsive mode) */
@media (max-width: 767px) {
  .split-section {
    flex-direction: column; /* Stack the sections vertically */
    align-items: center; /* Center the content horizontally */
    text-align: center; /* Center text and other elements */
  }

  .right img {
    width: 80%; /* Make the image smaller on smaller screens */

    display: block;
  }

  .right {
    display: flex;
    justify-content: center; /* Center image horizontally */
    align-items: center; /* Center image vertically */
    height: 100vh; /* Make the right div take up the full viewport height */
  }
}
.sec2 {
  padding: 60px 20px; /* Add space around the section */
  background-color: #f8f9fa; /* Light background for a clean look */
}

.sec2 h3 {
  font-size: 1.75em; /* Slightly larger for emphasis */
  color: #343e51; /* Subtle dark color for the heading */
  text-align: center; /* Center the heading */
  margin-bottom: 10px; /* Space below the heading */
}

.sec2 h2 {
  font-size: 2.25em; /* Larger size for the main subtitle */
  color: #343e51; /* Matching color for consistency */
  text-align: center; /* Center the subtitle */
  margin-bottom: 40px; /* Space below the subtitle */
  font-weight: 400; /* Normal weight for a modern look */
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between cards */
  justify-content: center; /* Center the cards horizontally */
}

.card {
  background-color: #fff; /* White background for cards */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  padding: 20px;
  max-width: 300px; /* Limit card width for consistency */
  text-align: center; /* Center text inside cards */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.card:hover {
  transform: translateY(-10px); /* Slight lift effect on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.card .icon {
  font-size: 3em; /* Larger icons for emphasis */
  color: #0278ae;/* Accent color for icons */
  margin-bottom: 20px; /* Space below the icon */
}

.card h4 {
  font-size: 1.5em; /* Slightly larger font size for headings */
  color: #343e51; /* Consistent heading color */
  margin-bottom: 10px; /* Space below the heading */
}

.card p {
  font-size: 1em; /* Standard font size for text */
  color: #6c757d; /* Light grey color for text */
  margin-bottom: 20px; /* Space below the text */
}

.card a.learn-more {
  font-size: 1em; /* Standard font size for links */
  color: #0278ae; /* Accent color for links */
  text-decoration: none; /* Remove underline */
  font-weight: 500; /* Semi-bold for emphasis */
  transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.card a.learn-more:hover {
  color: #d43f3f; /* Darker shade on hover */
}

/* Media query for desktops and larger screens */
@media (min-width: 1200px) {
  .split-section h1 {
    font-size: 48px;
  }

  .split-section p {
    font-size: 25px;
  }

  .sec2 h2 {
    font-size: 32px;
  }
}
/* Hide the checkbox */
#menu-toggle {
  display: none;
}

/* Style the menu icon */
.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

/* Responsive styles */
@media (max-width: 767px) {
  /* Hide the ul by default */
  .navbar nav ul {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-top: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    z-index: 1000;
    padding-top: 60px; /* Space for the navbar */
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
  }

  /* Show the menu icon */
  .menu-icon {
    display: block;
  }

  /* Show the menu when the checkbox is checked */
  #menu-toggle:checked ~ nav ul {
    transform: translateX(0);
    display: flex;
  }

  /* Style links for touch */
  .navbar nav ul li {
    margin: 10px 0; /* Add space between items */
  }

  .navbar nav ul li a {
    padding: 15px 30px; /* Increase touch area */
    font-size: 18px; /* Larger text for easier clicking */
    display: block;
  }

  /* Prevent content from shifting */
  .content {
    transition: none;
  }
}

/* Page Content */
.content {
  padding: 20px;
  transition: margin-left 0.3s ease;
}

/* Footer Styles */
.footer-item {
  margin: 0 20px; /* Add horizontal spacing between items */
}

.footer-item:first-child {
  margin-left: 0; /* Remove left margin for the first item */
}

.footer-item:last-child {
  margin-right: 0; /* Remove right margin for the last item */
}
.footer {
  display: flex;
  flex-direction: row; /* Arrange children in a row */
  justify-content: space-between; /* Distribute space between items */
  align-items: center; /* Vertically center items */
  padding: 20px;
  background-color: #0278ae;
  color: #fff;
}
.footer-row {
  max-width: 1170px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-col {
  min-width: 200px;
  padding: 15px;
  flex: 1 1 200px; /* Allow columns to grow and shrink, with a base width */
  margin: 0 40px; 
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #000000;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul {
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links {
  display: flex;
  gap: 15px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-col .social-links a:hover {
  background-color: #ffffff;
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    width: 100%;
    text-align: center;
  }
}

