  
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* sticky  Navbar Container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  padding: 20px 20px;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000; 
  box-shadow: 0 0.5px 0.5px rgba(0, 0, 0, 0.1); 
}


/* Logo Styling */
.logo {
  display: flex; /* Flexbox for alignment */
  align-items: center; /* Vertically align logo with hamburger */
}

.logo img {
  max-height: 80px; 
  width: auto; 
  height: auto; 
}





.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-weight: 500;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
color: blue;
text-decoration: underline;
text-decoration-thickness: 2px; 
text-underline-offset: 5px; 
}

/* Dropdown Styling */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 10;
}

.dropdown-menu li {
  padding: 10px 20px;
  transition: background-color 0.3s ease;
  color: #333 !important;
  text-decoration: none;
  margin-top: -10px;
}

.dropdown-menu li:hover {
  color: blue !important;
}
.caret {
  display: inline-block;
  cursor: pointer;
  border: solid #333;
  border-width: 0 2px 2px 0;
  padding: 5px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.caret.open {
  transform: rotate(-135deg);
}


.auth-buttons a {
  margin-left: 15px;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.auth-buttons .btn-signup {
  background-color: #0A3C75;
  color: #ffffff;
  border-radius: 7px;
}

.auth-buttons .btn-signup:hover {
  background-color: blue;
}

.auth-buttons .btn-login {
  border: 1px solid blue;
  background-color: transparent;
  border-radius: 7px;
}

.auth-buttons .btn-login:hover {
  background-color: #0A3C75;
  color: #ffffff;
}

/* Hamburger Button */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger .bar {
  width: 30px;
  height: 4px;
  background-color: #333;
  border-radius: 5px;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -500px; /* Fully hidden */
  width: 300px; 
  height: 100%;
  background-color: #0a3d76; 
  box-shadow: -4px 0px 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease; 
  padding: 20px;
  z-index: 1000; /* Ensure it appears above other content */
}

/* Responsive styles */
@media (max-width: 768px) { 
  .side-menu {
    width: 300px;
    right: -500px;
    padding: 15px;
  }
}

@media (max-width: 480px) { /* For small smartphones */
  .side-menu {
    width: 250px; 
    right: -500px;
    padding: 10px; 
  }
}

.side-menu .cancel-icon {
  font-size: 2rem;
  color: white;
  cursor: pointer;
  padding: 10px;
  text-align: right;
}

.side-menu .nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-left: 15px;
}

/* Show auth-buttons in navbar for larger screens */
.auth-buttons {
  display: flex;
  gap: 10px;
}

/* Hide auth-buttons in main navbar on smaller screens */
@media (max-width: 768px) {
  .auth-buttons {
      display: none;
  }
}

/* Auth Buttons in Side Menu */
.side-menu .auth-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: -20px;
}

.side-menvu .btn-signup,
.side-menu .btn-login {
  padding: 10px 20px;
  border-radius: 7px;
  border: none;
  outline: none;
  text-align: center;
  color: #ffffff;
}

.side-menu .btn-signup {
  background-color: transparent;
}

.side-menu .btn-signup:hover {
  background-color: blue;
}

.side-menu .btn-login {
  background-color: transparent;
}

.side-menu .btn-login:hover {
  background-color: blue;
  color: #ffffff;
}


/* Media Query for Mobile Screens */
@media (max-width: 768px) {
  .nav-links {
      display: none; /* Hide the nav links on small screens */
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 10px  10px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000; 
    box-shadow: 0 0.5px 0.5px rgba(0, 0, 0, 0.1); 
  }
  .nav-links a {
    font-weight: 500;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .dropdown-menu a {
    color: #333;
  }
    .dropdown {
    align-self: flex-start;
  }
  .hamburger {
      display: flex; /* Show hamburger button on small screens */
  }

  .side-menu.auth-buttons .btn-signup {
    background-color: #0a3d76;
    color: #ffffff;
    border-radius: 7px;
    display: flex;
  }
  
  .auth-buttons .btn-signup:hover {
    background-color: blue;
  }
  
  .side-menu.auth-buttons .btn-login {
    border: 1px solid #0a3d76;
    background-color: transparent;
    border-radius: 7px;
    display: flex;
  }
  
  .auth-buttons .btn-login:hover {
    background-color: blue;
    color: #ffffff;
  }
  

}



/* Logo and Cancel Icon in Side Menu */
.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.side-menu-logo {
  max-height: 60px;
  width: auto;
  margin-left: 10px;
}

/* Separator Line */
.menu-separator {
  border: none;
  border-top: 1px solid white;
  margin: 20px 0;
}

/* Cancel Icon */
.cancel-icon {
  font-size: 2rem;
  color: white;
  cursor: pointer;
  padding: 10px;
  text-align: right;
  transition: color 0.3s ease;
}

/* Switch Theme Section */
.theme-switcher {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 10px;
}

.theme-switcher p {
  color: white;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  transition: color 0.3s ease;
}

.theme-icon {
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 24px;
  transition: transform 0.3s, color 0.3s ease;
}

.theme-icon:hover {
  transform: scale(1.1);
}



/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 150px;
  background: linear-gradient(to bottom left, #6e91e2 30%, #3c6eb7 70%);
  border-bottom-right-radius: 80px;
  margin-top: -42px;
}

.hero-content {
z-index: 2;
max-width: 50%;
padding-left: 25px;
}

.hero-content p:first-of-type {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 60px;
  color: white;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #0A3C75;
}

.hero-content p:last-of-type {
  font-size: 16px;
  color: white;
  margin-bottom: 30px;
}

.hero-content .btn-get-started {
  padding: 15px 30px;
  background-color: #0A3C75;
  color: #ffffff;
  border: none;
  border-radius: 7px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-content .btn-get-started:hover {
  background-color: blue;
}

.hero-content .learn-more {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  font-size: 16px;
  color: white;
  font-weight: 500;
  border: 1px solid white;
  border-radius: 7px;
  padding: 12px;

}

.hero-content .learn-more:hover {
background-color: #0A3C75;
}

.hero-content .learn-more .arrow {
  margin-left: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: margin-left 0.3s ease;
}

.hero-content .learn-more:hover .arrow {
  margin-left: 10px;
}
/* Hero Image Styling - Start of Changes */
.hero-image {
  position: absolute; 
  bottom: -233px; 
  right: 0; 
  max-width: 50%;
  height: 100%; 
  z-index: 1; 
}


.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}


/* Media Queries for Hero Section */

/* For Tablets (iPads and Medium Screens) */
@media screen and (max-width: 1024px) {
  .hero {
      flex-direction: row; /* Stack content vertically */
      padding: 60px 20px;
      text-align: center;
  }

  .hero-content {
      max-width: 80%;
      margin: 0 auto 20px;
  }

  .hero-content h1 {
      font-size: 48px; /* Slightly smaller headline */
  }

  .hero-content p:first-of-type,
  .hero-content p:last-of-type {
      font-size: 14px; /* Adjusted font size for smaller screens */
  }

  .hero-content .btn-get-started {
      padding: 12px 24px; /* Reduced button size */
      font-size: 14px;
  }

  .hero-content .learn-more {
      font-size: 14px;
      padding: 8px 16px;
  }

  .hero-image {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    bottom: -155px; 
}


  .hero-image img {
      width: 100%;
      object-fit: contain;
  }
}

/* For Small Screens (Phones) */
@media screen and (max-width: 768px) {
  .hero {
      padding: 40px 15px;
      flex-direction: column;
      text-align: center;
  }

  .hero-content {
      max-width: 90%;
      margin: 0 auto 20px;
  }

  .hero-content h1 {
      font-size: 36px; 
  }

  .hero-content p:first-of-type,
  .hero-content p:last-of-type {
      font-size: 12px;
      margin-top: 25px;
  }

 
  .hero-content .btn-get-started {
    padding: 13px 30px;
    font-size: 10px;
}

.hero-content .learn-more {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  font-size: 10px;
  color: white;
  font-weight: 500;
  border: 1px solid white;
  border-radius: 7px;
  padding: 6px;

}

.hero-content .learn-more:hover {
background-color: #0A3C75;
}

.hero-content .learn-more .arrow {
  margin-bottom: -10px;
  margin-left: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: margin-left 0.3s ease;
}

.hero-content .learn-more:hover .arrow {
  margin-left: 10px;
}

  .hero-image {
      max-width: 80%;
      margin: 0 auto;
      bottom: -33px;
      left: 0;
  }

  .hero-image img {
      width: 100%;
      height: auto;
      object-fit: contain;
  }
}

/* For Extra Small Screens (Smaller Phones) */
@media screen and (max-width: 480px) {
  .hero {
      padding: 30px 10px;
  }

  .hero-content h1 {
      font-size: 28px;
  }

  .hero-content p:first-of-type,
  .hero-content p:last-of-type {
      font-size: 10px;
  }

  .hero-content .btn-get-started {
      padding: 14px 30px;
      font-size: 10px;
  }

  .hero-content .learn-more {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    font-size: 10px;
    color: white;
    font-weight: 500;
    border: 1px solid white;
    border-radius: 7px;
    padding: 6px;
  
  }
  
  .hero-content .learn-more:hover {
  background-color: #0A3C75;
  }
  
  .hero-content .learn-more .arrow {
    margin-bottom: -10px;
    margin-left: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: margin-left 0.3s ease;
  }
  
  .hero-content .learn-more:hover .arrow {
    margin-left: 10px;
  }

  .hero-image {
      max-width: 100%;
      margin: 10px auto 0;
      bottom: -33px;
      left: 0;
  }

  .hero-image img {
      width: 100%;
      object-fit: contain;
  }
}

/* Brands Section */
.brands-section {
  padding: 40px 20px;
  background-color: #f4f4f4;
  text-align: center;
  margin-bottom: -40px;
  border-top-right-radius: 20px;
}

.brands {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); 
  gap: 60px;
  align-items: stretch;
  justify-items: center;
 justify-content: space-between;
}

.brand {
  position: relative;
  display: flex;
  justify-content: center; 
}

.brand:not(:last-child) {
  border-right: 1px solid #ccc; 
}

.brands img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.brands img:hover {
  transform: scale(1.1); 
}

/* Media Queries for Brands Section */
@media screen and (max-width: 1200px) {
  .brands {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); 
    gap: 20px;
  }

  .brands img {
    margin-right: 0; 
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .brands-section {
    padding: 30px 15px;
  }

  .brands {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
  }
  .brands-section {
    margin-bottom: -30px;
  }
  
  .brands img {
    width: 70%;
  }
}

@media screen and (max-width: 480px) {
  .brands-section {
    padding: 20px 10px;
  }

  .brands-section {
    margin-bottom: -20px;
  }
  
  
  .brands {
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); 
    gap: 10px;
  }

  .brands img {
    width: 60%; 
  }
}

.creative-solutions {
  padding: 60px 20px;
  background-color: white;
  text-align: center;
}

.creative-solutions h2 {
  font-size: 40px;
  color: black;
  margin-bottom: 20px;
}

.creative-solutions p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

p1 {
  font-size: 18px;
  color: rgb(28, 28, 172);
  margin-bottom: 40px;
}

.icon-boxes {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 40px;
}

.icon-box {
  background-color: rgba(240, 240, 240, 0.986);
  padding: 30px;
  border-radius: 30px;
  text-align: center;
  width: 20%;
}

.icon-box .icon {
  background-color: #0A3C75;  /* Dark blue background color */
  width: 40px;              
  height: 40px;             
  border-radius: 5px;      
  margin-bottom: 20px;      
  margin-left: 100px;       
  display: flex;           
  justify-content: center;  
  align-items: center;    
  padding: 10px;            
}

.icon-box i { 
  font-size: 20px;
  color: white; 
}


.icon-box img {
  width: 30px;
  height: 30px;
  filter: invert(1);  /* Make the icon white */
}

.icon-box p {
  font-size: 14px;
  color: #777;
}

@media screen and (max-width: 768px) {
  .creative-solutions h2 {
    font-size: 30px;
  }

  .creative-solutions p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  p1 {
    font-size: 16px;
  }

  .icon-boxes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .icon-box {
    width: 100%;
    padding: 20px;
  }

  .icon-box img {
    width: 40px;
    height: 40px;
  }

  .icon-box p {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .creative-solutions h2 {
    font-size: 24px;
  }

  .creative-solutions p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  p1 {
    font-size: 14px;
  }

  .icon-box {
    width: 100%;
    padding: 15px;
  }

  .icon-box img {
    width: 30px;
    height: 30px;
  }

  .icon-box p {
    font-size: 12px;
  }
}

/* Creative Solutions Section */
@media screen and (max-width: 768px) {
  .creative-solutions h2 {
    font-size: 30px;
  }

  .creative-solutions p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* Ensure p1 is a valid class or selector */
  .p1 {
    font-size: 16px;
  }

  .icon-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .icon-box {
    width: 100%;
    padding: 20px;
    text-align: center; /* Ensures icons and text are centered */
  }

  .icon-box img {
    width: 40px;
    height: 40px;
  }

  .icon-box p {
    font-size: 13px;
    margin-top: 10px; 
  }

  .icon-box .icon {
    background-color: #0A3C75;  /* Dark blue background color */
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-bottom: 20px;
    margin-left: auto; 
    margin-right: auto; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
}





/* Courses Section */
.Exp {
  color: #22c55e;
}
.courses-section {
  padding: 40px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.head-course {
  text-align: left;
}

/* Slider Container */
.slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.courses-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

/* Course Card */
.course-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 10px;
  flex: 0 0 calc(33.333% - 20px); 
  max-width: 100%;
}

.course-image {
  position: relative;
}

.course-image img {
  width: 100%;
  height: 260px;
  display: block;
}

.course-duration {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  color: black;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 4px;
}
.course-tags {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 10px 15px;
  background-color: #f9f9f9; 
  border-bottom-left-radius: 10px; 
  border-bottom-right-radius: 10px; 
}

.tag {
  font-size: 12px;
  color: #333;
  padding: 5px 10px;
  border-radius: 5px;
  text-transform: uppercase;
}

.design-tag {
  background: #ffffff;
  margin-right: auto;
}


.design-tag i {
  font-size: 17px;
  color: #ddd; 
}

.beginner-tag {
  background: white;
  padding: 8px 18px;
  border: 1px solid #999898;
  margin-left: auto; 
}

.course-content {
  padding: 15px;
  text-align: left;
}

.course-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.course-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.course-rating {
  font-size: 14px;
  color: #f59e0b;
  margin-bottom: 15px;
}

.course-rating span{
  color: #58eb8e;
}
.course-rating span1{
  color: #6e6d6d}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-price {
  font-size: 16px;
  font-weight: bold;
  color: #5027b5;
}

.join-now-btn {
  background:  #A3C7E9;
  color: black;
  padding: 12px 40px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.join-now-btn:hover {
  background: #0A3C75;
  color: white;
}

/* Slider Indicators */
.slider-indicators {
  margin-top: 20px;
  text-align: center; 
}

.indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  margin-bottom: 20px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
}

.indicator.active {
  background:  #A3C7E9;
  transform: scale(1.2); 
}



/* Explore All Programs Button */
.explore-btn {
  margin-top: 30px;
  padding: 10px 20px;
  background: white;
  color: black;
  border: 1px solid rgb(221, 218, 218);
  border-radius: 5px;
  font-size: 17px;
  cursor: pointer;
}

.explore-btn:hover {
  background: #0A3C75;
  color: white;
}


/* Explore All Programs Button */
@media screen and (max-width: 768px) {
  .explore-btn {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .explore-btn {
    font-size: 12px;
  }
}


/* Header Section */
.header {
  background: #f9f9f9;
  padding: 2rem;
  display: flex; 
  flex-direction: column; 
  align-items: flex-start; 
  margin-top: 40px;
}

.header h1 {
  font-size: 2.5rem;
  color: black;
}

.header p {
  max-width: 600px;
  margin: 1rem 0;
  font-size: 1rem;
  color: #333;
}

.header a {
  align-self: flex-end; 
  background-color: #f1eeee;
  padding: 10px 12px;
  border-radius: 10px;
}

.header-cta {
  background: #007bff;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1rem;
}

/* Header Section */
@media screen and (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }
  .header p {
    font-size: 0.875rem;
  }
  .header a {
    padding: 8px 10px;
  }
}
/* Header Section */
@media screen and (max-width: 768px) {
  .header {
    padding: 1rem;
  }

  .header h1 {
    font-size: 2rem;
  }

  .header p {
    font-size: 0.9rem;
  }

  .header a {
    padding: 8px 10px;
  }

  .header-cta {
    padding: 0.5rem 1rem;
  }
}

@media screen and (max-width: 480px) {
  .header h1 {
    font-size: 1.5rem;
  }

  .header p {
    font-size: 0.85rem;
  }

  .header a {
    padding: 6px 8px;
  }

  .header-cta {
    padding: 0.5rem 1rem;
  }
}


/* Courses Section */
.courses {
  display: flex;
  gap: 4rem;
  padding: 2rem;
  justify-content: center;
}
.courses-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.course-card img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}
.course-info {
  padding: 1rem;
}
/* Parent Container */
.course-info {
  display: flex; 
  flex-direction: column; 
  align-items: flex-start; 
  text-align: left; 
}

/* Styling the Tag */
.course-info .tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem; 
}

/* Styling the Icon in the Tag */
.course-info .tag i {
  margin-right: 0.25rem; 
}

/* Heading Style */
.course-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Paragraph Style */
.course-info p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.course-info button {
  background: #A3C7E9;
  color: black;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

/* Responsive Courses Section */
@media (max-width: 768px) {
  .courses {
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
  }

  .course-card {
    width: 100%;
  }

  .course-info h3 {
    font-size: 1.25rem;
  }

  .course-info p {
    font-size: 0.9rem;
  }

  .course-info button {
    padding: 0.5rem;
  }
}
/* Ensure that the course cards take up 100% width on smaller screens */
@media (max-width: 768px) {
  .course-card {
    width: 100%; /* Make sure it fills the entire container on smaller screens */
  }
}

@media (max-width: 480px) {
  .courses {
    padding: 0.5rem;
  }

  .course-info h3 {
    font-size: 1rem;
  }

  .course-info p {
    font-size: 0.8rem;
  }

  .course-info button {
    padding: 0.4rem;
    font-size: 0.875rem;
  }
}



/* Media query for screens 768px or smaller (Tablets and Mobile) */
@media (max-width: 768px) {
  .courses-slider {
    display: flex; 
    overflow-x: hidden; 
  }

  .course-card {
    flex: 0 0 100%; 
    max-width: 100%; 
    margin: 0;
  }
}


/* About Us Section */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  max-width: 500px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: black;
}


.about-text p span{
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: darkblue;
}
.about-btn {
  background: #0A3C75;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
}
.about-btn:hover {
  background: blue;
  color: white;
}
.about-images {
  position: relative;
}

/* Main Image */
.main-image {
  width: 100%; 
  height: auto; 
  border-radius: 10px;
  position: relative; 
}

/* About Images Wrapper */
.about-images {
  position: relative;
  width: 30%; 
  height: auto;
}

/* Overlay Image */
.overlay-image {
  position: absolute;
  bottom: -25px; 
  right: -25px;
  width: 200px; 
  height: auto;
  border: 5px solid white; 
  border-radius: 8px; 
  object-fit: cover;
  z-index: 1;
}

.about-images img {
  border-radius: 10px;
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    width: 100%; /* Ensure it takes up full width on small screens */
  }

   .main-image {
    width: 80%; /* Adjust this as needed */
    height: auto;
    margin: 0 auto; /* Center the image horizontally */
  }

  .overlay-image {
    bottom: -25px;
    right: -25px;
    width: 150px;
    bottom: -25px;  
    height: auto;
    border: 2px solid white;
   
  }
}


/* Call-to-Action Section */
.cta {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  align-items: center;
  background: #f9f9f9;
}


.cta-image img {
  border-radius: 8px;
  width: 100%;
  max-height: 380px; 
  object-fit: cover; 
}


.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: black;
  max-width: 500px; 
  word-wrap: break-word; 
}

.cta-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #333;
  max-width: 500px; 
  word-wrap: break-word;
  line-height: 1.6; 
}

.btn-get-started {
  padding: 15px 30px;
  background-color: #0A3C75;
  color: #ffffff;
  border: none;
  border-radius: 7px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-get-started:hover {
  background-color: blue;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  font-size: 16px;
  color: black;
  font-weight: 500;
  border: 1px solid #ddd;
  border-radius: 7px;
  padding: 12px;
}

.learn-more:hover {
  background-color: #0A3C75;
  color: white;
}

.learn-more .arrow {
  margin-left: 0.5rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.learn-more:hover .arrow {
  transform: translateX(5px); 
}

/* @media queries for responsiveness */
@media screen and (max-width: 768px) {
  .cta {
    flex-direction: column;
    padding: 1.5rem;
  }

  .cta-image img {
    width: 80%; 
    max-height: 300px; /* Adjust max height for medium screens */
    object-fit: cover;
  }
  .cta-text h2 {
    font-size: 1.5rem; /* Reduce font size for smaller screens */
  }

  .cta-text p {
    font-size: 1rem;
  }

 
.btn-get-started {
  padding: 12px 25px;
  background-color: #0A3C75;
  color: #ffffff;
  border: none;
  border-radius: 7px;
  font-weight: 500;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-get-started:hover {
  background-color: blue;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  font-size: 12px;
  color: black;
  font-weight: 500;
  border: 1px solid #ddd;
  border-radius: 7px;
  padding: 6px;
}

.learn-more:hover {
  background-color: #0A3C75;
  color: white;
}

.learn-more .arrow {
  margin-left: 0.5rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  margin-bottom: -5px;
}

.learn-more:hover .arrow {
  transform: translateX(5px); 
}
}

@media screen and (max-width: 480px) {
  .cta {
    padding: 1rem;
  }
  .cta-image img {
    width: 100%; 
    max-height: 250px; /* Further reduce max height for smaller screens */
    object-fit: cover;
  }
  .cta-image img {
    width: 100%; /* Ensure full width for smaller screens */
  }

  .cta-text h2 {
    font-size: 1.25rem;
  }

  .cta-text p {
    font-size: 0.9rem;
  }


  .btn-get-started {
    padding: 14px 25px;
    background-color: #0A3C75;
    color: #ffffff;
    border: none;
    border-radius: 7px;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn-get-started:hover {
    background-color: blue;
  }
  
  .learn-more {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    font-size: 12px;
    color: black;
    font-weight: 500;
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 6px;
  }
  
  .learn-more:hover {
    background-color: #0A3C75;
    color: white;
  }
  
  .learn-more .arrow {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-bottom: -5px;
  }
  
  .learn-more:hover .arrow {
    transform: translateX(5px); 
  }
}


/*actual courses page section*/
/* Base Header Section (for large screens) */
.courses-header {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url('images/courses-header-image.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.courses-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  word-break: break-word;
  width: 700px;
}

.courses-header-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

.courses-header-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #d1d1d1;
}

.btn-get-started-courses {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4285F4; /* Button color */
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn-get-started-courses:hover {
  background-color: #3073D1;
}

.courses-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
  background-color: white; 
}

/* Responsive Styles */

/* For 1024px screens */
@media (max-width: 1024px) {
  .courses-header {
    height: 60vh; 
  }

  .courses-header-content {
    width: 600px;
  }

  .courses-header-content h1 {
    font-size: 2.5rem; 
  }

  .courses-header-content p {
    font-size: 1.1rem; 
  
  }

  .btn-get-started-courses {
    padding: 10px 20px;
    font-size: 0.9rem; 
    margin-bottom: 30px;
  }

  .courses-container {
    padding: 2rem;
  }
}

/* For 768px screens */
@media (max-width: 768px) {
  .courses-header {
    height: 50vh; /* Further reduced height for tablet screens */
  }

  .courses-header-content {
    width: 500px;
  }

  .courses-header-content h1 {
    font-size: 2rem; /* Adjusted font size */
  }

  .courses-header-content p {
    font-size: 1rem; /* Adjusted font size */
  }

  .btn-get-started-courses {
    padding: 10px 20px;
    font-size: 0.9rem; /* Adjusted button size */
  }

  .courses-container {
    padding: 2rem 1rem;
  }
}

/* For 480px screens */
@media (max-width: 480px) {
  .courses-header {
    height: 40vh; /* Reduced height for mobile screens */
  }

  .courses-header-content {
    width: 90%;
    padding: 0 10px; /* Adjusted padding */
  }

  .courses-header-content h1 {
    font-size: 1.8rem; /* Smaller font size for mobile */
  }

  .courses-header-content p {
    font-size: 0.9rem; 
  }

  .btn-get-started-courses {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .courses-container {
    padding: 1.5rem 1rem;
  }
}

/* Base styles for Courses Search Container and Categories */
.courses-search-container {
  display: flex;
  align-items: center;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  background-color: white;
  width: 100%;
  max-width: 600px;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  background-color: transparent;
  color: #555555;
  font-size: 1rem;
  padding: 0.5rem;
}

.search-input::placeholder {
  color: #555555;
}

.courses-search-container i {
  color: #555555;
  font-size: 1.2rem;
  cursor: pointer;
}

.courses-categories {
  display: flex;
  justify-content: center;
  width: 100%;
}

.courses-categories ul {
  display: flex;
  gap: 3rem; /* Increased gap between list items */
  list-style: none;
  padding: 0;
  margin: 0;
}

.courses-categories li {
  font-size: 1rem;
  color: #555555;
  margin: 0; /* Ensure no additional margin unless required */
}

.courses-categories a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.courses-categories a:hover {
  color: #007bff; /* Change this color for hover */
}

.courses-categories a.active {
  color: #007bff; /* Highlighted link color */
}

.courses-categories a.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #007bff;
  position: absolute;
  bottom: -5px;
  left: 0;
}

/* Responsive Styles */

/* For 1024px screens */
@media (max-width: 1024px) {
  .courses-search-container {
    max-width: 500px; /* Reduced max-width */
    padding: 0.5rem 0.8rem; /* Adjusted padding */
  }

  .search-input {
    font-size: 0.95rem; /* Slightly smaller font size */
    padding: 0.4rem;
  }

  .courses-categories ul {
    gap: 2rem; /* Reduced gap for better fit */
  }

  .courses-categories li {
    font-size: 0.9rem; /* Slightly smaller font size */
  }
}

/* For 768px screens */
@media (max-width: 768px) {
  .courses-search-container {
    max-width: 400px; /* Further reduced max-width */
    padding: 0.5rem 1rem;
  }

  .search-input {
    font-size: 0.9rem; /* Further reduced font size */
    padding: 0.5rem;
  }

  .courses-categories ul {
    gap: 1.5rem; /* Further reduced gap */
  }

  .courses-categories li {
    font-size: 0.9rem; /* Reduced font size */
  }
}

/* For 480px screens */
@media (max-width: 480px) {
  .courses-search-container {
    max-width: 100%; /* Full width on mobile */
    padding: 0.5rem 1rem;
  }

  .search-input {
    font-size: 0.85rem; /* Smaller font size for mobile */
    padding: 0.4rem;
  }

  .courses-categories ul {
    gap: 1rem; /* Adjusted gap for mobile */
    flex-wrap: wrap; /* Allow wrapping of list items */
    justify-content: space-evenly; /* Center the items */
  }

  .courses-categories li {
    font-size: 0.85rem; /* Smaller font size for mobile */
  }
}




.courses-page-section {
  padding: 40px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.courses-page-title {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 10px;
}

.courses-section-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

/* Filter Dropdown Section */


  /* Ensure the section is positioned relatively */
  .section-courses-page {
    position: relative;
  }

  /* Style for the description paragraph */
  .courses-section-description {
    position: relative;
    margin-right: 220px; 
  }

.dropdown-container {
  position: absolute; 
  top: 0;
  right: 0; 
  transform: translateY(-50%);
  z-index: 10; 
  margin-top: 80px;
}

/* Chevron dropdown button */
.chevron-dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 210px;
  padding: 10px;
  padding-right: 30px;
  padding-left: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: white;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  z-index: 10; /* Prevent the dropdown button from going behind elements */
}

/* Dropdown options (prevent overlapping) */
.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  list-style: none;
  padding: 0;
  margin: 5px 0 0;
  width: 100%;
  z-index: 100;
}

/* Ensure the parent container has proper padding to avoid overlap */
.section-courses-page {
  position: relative;
  padding-right: 220px; 
}

/* Additional styling for description text */
.courses-section-description {
  margin: 0 0 20px;
  margin-bottom: 50px;
}

  /* Chevron icon */
  .chevron-icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
  }

  /* Rotate chevron when dropdown is open */
  .chevron-dropdown.open .chevron-icon {
    transform: rotate(135deg); /* Chevron pointing up */
  }

  /* Dropdown options (hidden by default) */
  .dropdown-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
    width: 100%;
    z-index: 10;
  }

  /* Dropdown option items */
  .dropdown-options li {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  /* Hover effect on options */
  .dropdown-options li:hover {
    background-color: #f0f0f0;
  }

  /* Show options when dropdown is open */
  .chevron-dropdown.open + .dropdown-options {
    display: block;
  }

  @media (max-width: 480px) {
    .courses-page-section {
      padding: 30px 15px;
    }
  
    .courses-page-title {
      font-size: 32px; 
      margin-bottom: 15px;
      width: 100%; 
      text-align: center; 
    }
  
    .courses-section-description {
      font-size: 14px; 
      margin-bottom: 20px;
      width: 100%; 
      text-align: center; 
      margin-right: 0;
    }
  
    .section-courses-page {
      padding-right: 0; 
    }
  
    .dropdown-container {
      position: static; 
      transform: none; 
      margin-top: 20px; 
      width: 100%; 
    }
  
    .chevron-dropdown {
      width: 100%; 
      max-width: none; 
      font-size: 14px; 
      padding: 8px 15px; 
    }
  }
  
  
/* Courses Slider Styles */
.actual-courses-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.actual-courses-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

/* Parent container styling */
.actual-courses-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Align cards in the center */
  margin: 0 auto; /* Center the container on the page */
}

/* Course Card */
.actual-courses-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 10px;
  flex: 0 0 calc(33.333% - 20px); /* Default: 3 cards per row */
  max-width: calc(33.333% - 20px);
}

.actual-courses-image {
  position: relative;
}

.actual-courses-image img {
  width: 100%;
  height: 260px;
  display: block;
}

.actual-courses-duration {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  color: black;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 4px;
}

.actual-courses-tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #f9f9f9;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.actual-tag {
  font-size: 12px;
  color: #333;
  padding: 5px 10px;
  border-radius: 5px;
  text-transform: uppercase;
}

.actual-design-tag {
  background: #ffffff;
  margin-right: auto;
}

.actual-design-tag i {
  font-size: 17px;
  color: #ddd;
}

.actual-beginner-tag {
  background: white;
  padding: 8px 18px;
  border: 1px solid #999898;
  margin-left: auto;
}

.actual-courses-content {
  padding: 15px;
  text-align: left;
}

.actual-courses-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.actual-courses-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.actual-courses-rating {
  font-size: 14px;
  color: #f59e0b;
  margin-bottom: 15px;
}

.actual-courses-rating span {
  color: #58eb8e;
}

.actual-courses-rating span1 {
  color: #6e6d6d;
}

.actual-courses-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.actual-courses-price {
  font-size: 16px;
  font-weight: bold;
  color: #5027b5;
}

/* Responsive Styles */

/* For 1024px screens */
@media (max-width: 1024px) {
  .actual-courses-card {
    flex: 0 0 calc(50% - 20px); /* 2 cards per row */
    max-width: calc(50% - 20px);
  }

  .actual-courses-title {
    font-size: 16px; /* Adjusted title font size */
  }

  .actual-courses-description {
    font-size: 12px; /* Adjusted description font size */
  }
}

/* For 768px screens */
@media (max-width: 768px) {
  .actual-courses-card {
    flex: 0 0 calc(50% - 20px); /* 2 cards per row */
    max-width: calc(50% - 20px);
  }

  .actual-courses-title {
    font-size: 15px; /* Adjusted title font size */
  }

  .actual-courses-description {
    font-size: 12px; /* Adjusted description font size */
  }
}

/* For 480px screens */
@media (max-width: 480px) {
  .actual-courses-card {
    flex: 0 0 calc(100% - 20px); /* 1 card per row */
    max-width: calc(100% - 20px);
  }

  .actual-courses-title {
    font-size: 14px; /* Adjusted title font size */
  }

  .actual-courses-description {
    font-size: 12px; /* Adjusted description font size */
  }

  .actual-courses-price {
    font-size: 14px; /* Adjusted price font size */
  }
}


/* Pagination container */
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  /* Arrow buttons */
  .arrow-prev{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(27, 27, 27, 0.4);
    border-radius: 50%;
    background-color: transparent;
    color: rgba(27, 27, 27, 0.6);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .arrow-prev:hover {
    border-color: rgba(27, 27, 27, 0.8);
    color: rgba(27, 27, 27, 1);
  }
  
  .arrow-prev i {
    pointer-events: none; /* Ensure the icon does not affect button behavior */
  }
  
  /* Arrow buttons */
  .arrow-next{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(27, 27, 27, 0.4);
    border-radius: 50%;
    background-color: transparent;
    color: rgba(27, 27, 27, 0.6);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .arrow-next:hover {
    border-color: rgba(27, 27, 27, 0.8);
    color: rgba(27, 27, 27, 1);
  }
  
  .arrow-next i {
    pointer-events: none; /* Ensure the icon does not affect button behavior */
  }
  
  /* Page number buttons */
  .page-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(27, 27, 27, 0.4);
    border-radius: 50%;
    background-color: #fff;
    color: rgba(27, 27, 27, 0.8);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .page-number:hover {
    border-color: rgba(27, 27, 27, 0.8);
    color: rgba(27, 27, 27, 1);
  }
  
  .page-number.active {
    background-color: #003366; /* Navy blue background */
    color: #fff;
    border-color: #003366;
  }
  
  /* For responsive styling */
  @media screen and (max-width: 768px) {
    .pagination {
      gap: 8px;
    }
  
    .arrow,
    .page-number {
      width: 35px;
      height: 35px;
      font-size: 14px;
    }
  }
  
.courses-hero {
  background-color: #f3f0ff;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.courses-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #000;
  max-width: 900px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.courses-hero-description {
  font-size: 1.1rem;
  color: #333;
  max-width: 800px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.courses-cta-button {
  background-color: #60a5fa;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.courses-cta-button:hover {
  background-color: #3b82f6;
}

@media (max-width: 768px) {
  .courses-hero-title {
      font-size: 2.5rem;
  }

  .courses-hero-description {
      font-size: 1rem;
      padding: 0 1rem;
  }
}





/* About Us Section */
.about-us {
  display: flex;
  height: 80vh;
  flex-wrap: nowrap;
}

.about-content {
  flex: 1;
  background: #004aad; /* Dark blue */
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
}

.about-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Background Dots Section */
.background-dots {
  flex: 1;
  background: linear-gradient(to right, #004aad, #1e90ff);
  position: relative;
  border-bottom-right-radius: 100px;
  margin-bottom: 20px;
  overflow: hidden;
}

.background-dots .dot {
  position: absolute;
  border-radius: 50%;
  background-color: white;
  opacity: 0.2;
  transition: all 0.3s ease;
}

/* Media Queries for Smaller Screens */
@media (max-width: 768px) {
  .about-us {
   max-height: 100%; 
   width: 100%;
   flex-wrap: nowrap;
  }

  .about-content {
    padding: 10px;
    text-align: center;

  }

  .about-content h1 {
    font-size: 2.5rem; 
  }

  .about-content p {
    font-size: 1rem; 
  }

  .background-dots {
    flex: 1;
    background: linear-gradient(to right, #004aad, #1e90ff);
    position: relative;
    border-bottom-right-radius: 100px;
    margin-bottom: 20px;
    overflow: hidden;
  }
  
}
@media (max-width: 480px) {
  .about-us {
    max-height: 100%;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }

  .about-content {
    padding: 18px;
    text-align: center;
  }

  .about-content h1 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }

  .background-dots {
   left: -1px;
  }
  
  .background-dots {
    flex: 0.5;
    background: linear-gradient(to right, #004aad, #1e90ff);
    position: relative;
    border-bottom-right-radius: 100px;
    margin-bottom: 20px;
    overflow: hidden;
  }
}

/* Mission and Vision Section */
.mission-vision {
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
gap: 30px;
padding: 50px 10%;
}

/* Mission Section */
.mission {
display: flex;
flex-direction: row; /* Image on the right for Mission */
align-items: center;
width: 100%;
gap: 350px;
}

.mission .carde {
background: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
width: 37%;
padding: 20px;
}

.mission .carde-top-bar {
height: 10px;
background-color: #004aad;
}

.mission .carde-content h2 {
font-size: 1.2rem;
color: #004aad;
margin-bottom: 10px;
}

.mission .carde-content h3 {
font-size: 1.5rem;
margin-bottom: 10px;
}

.mission .carde-content p {
font-size: 0.95rem;
color: #555;
line-height: 1.5;
}

.mission .carde-image img {
width: 300px;
height: 300px;
object-fit: contain;
margin-top: -100px;
}

/* Vision Section */
.vision {
display: flex;
flex-direction: row-reverse; /* Image on the left for Vision */
align-items: center;
width: 100%;
gap: 350px;
}

.vision .carde {
background: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
width: 30%;
padding: 20px;
}

.vision .carde-top-bar {
height: 10px;
background-color: #004aad;
}

.vision .carde-content h2 {
font-size: 1.2rem;
color: #004aad;
margin-bottom: 10px;
}

.vision .carde-content h3 {
font-size: 1.5rem;
margin-bottom: 10px;
}

.vision .carde-content p {
font-size: 0.95rem;
color: #555;
line-height: 1.5;
}

.vision .carde-image img {
width: 300px;
height: 300px;
object-fit: contain;
}

/* Mission and Vision Section - Responsive Media Queries */
@media (max-width: 768px) {
  .mission-vision {
    flex-direction: column; 
    padding: 30px 5%; 
    gap: 20px; 
    margin-top: 50px; 
  }

  /* Mission Section */
  .mission {
    flex-direction: column-reverse; 
    align-items: center;
    gap: 20px;
  }

  .mission .carde {
    width: 90%; 
  }

  .mission .carde-image img {
    width: 90%;
    height: auto; 
    margin-top: 20px;
  }

  /* Vision Section */
  .vision {
    flex-direction: column-reverse; 
    align-items: center;
    gap: 20px;
  }

  .vision .carde {
    width: 90%; 
  }

  .vision .carde-image img {
    width: 90%;
    height: auto; 
    margin-top: 20px; 
  }
}

@media (max-width: 480px) {
  .mission-vision {
    padding: 20px 3%; 
    gap: 15px;
    margin-top: 40px; 
  }

  .mission .carde-content h2, 
  .vision .carde-content h2 {
    font-size: 1rem;
  }

  .mission .carde-content h3, 
  .vision .carde-content h3 {
    font-size: 1.2rem; 
  }

  .mission .carde-content p, 
  .vision .carde-content p {
    font-size: 0.85rem; 
  }

  .mission .carde, 
  .vision .carde {
    width: 100%; 
  }

  .mission .carde-image img, 
  .vision .carde-image img {
    width: 100%; 
    height: auto; 
  }
}

@media (max-width: 1024px) {
  .mission-vision {
    flex-direction: row; 
    padding: 40px 8%;
    gap: 25px; 
    margin-top: 60px; 
  }

  /* Mission Section */
  .mission {
    flex-direction: column-reverse; 
    align-items: center;
    gap: 30px; 
  }

  .mission .carde {
    width: 85%;
  }

  .mission .carde-image img {
    width: 85%;
    height: auto; 
    margin-top: 30px;
  }

  /* Vision Section */
  .vision {
    flex-direction: column-reverse; 
    align-items: center;
    gap: 30px;  

  }

  .vision .carde {
    width: 85%; /* Adjust card width */
  }

  .vision .carde-image img {
    width: 85%; 
    height: auto;
    margin-top: 30px; 
  }

  /* Typography Adjustments */
  .mission .carde-content h2, 
  .vision .carde-content h2 {
    font-size: 1.1rem; 
  }

  .mission .carde-content h3, 
  .vision .carde-content h3 {
    font-size: 1.4rem; 
  }

  .mission .carde-content p, 
  .vision .carde-content p {
    font-size: 0.9rem;
  }
}

/* Expertise Section Styles */
.our-expertise {
  background-color: #ecf4fb;
  padding: 40px 0;
  position: relative;
  overflow: hidden; 
}

/* Ellipse Design at Top-Right and Bottom-Left */
.our-expertise::before,
.our-expertise::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 228px;
  background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #BFD8F0 85.5%);
  z-index: 0;
  border-radius: 50%;
}

/* Top-Right Ellipse */
.our-expertise::before {
  top: 50px;
  right: 0;
  transform: translate(50%, -50%);
}

/* Bottom-Left Ellipse */
.our-expertise::after {
  bottom: 140px;
  left: 0;
  transform: translate(-50%, 50%);
}

/* Media Query for Responsive Adjustments */
@media (max-width: 768px) {
  .our-expertise::before,
  .our-expertise::after {
    width: 150px; 
    height: 136px;
  }
}


.aboutus-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-section {
  text-align: start;
  margin-bottom: 50px;
}

.text-section h2 {
  font-size: 36px;
  color: black;
  margin-bottom: 10px;
}

.text-section p {
  font-size: 18px;
  color: #376190;
}

.content-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.expertise-image {
  width: 40%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 200px;
}

.cardes-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 55%;
  margin-top: -200px;
  margin-bottom: 50px;
}

.cardes {
  background-color: white;
  padding: 30px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.cardes h3 {
  font-size: 22px;
  color: #1d3557;
  margin-bottom: 15px;
}

.cardes p {
  font-size: 16px;
  color: #5f6368;
}

/* icon styles */
.about-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 10%;
  background-color: #0A3C75;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.about-icon-circle i {
  color: white;
  font-size: 20px;
}

/* Media Query for 1024px */
@media (max-width: 1024px) {
  .our-expertise::before,
  .our-expertise::after {
    width: 200px;
    height: 180px;
  }

  .text-section h2 {
    font-size: 28px;
  }

  .text-section p {
    font-size: 16px;
  }

  .content-section {
    flex-direction: column;
    align-items: center;
  }

  .expertise-image {
    width: 60%;
    margin-bottom: 50px;
  }

  .cardes-container {
    grid-template-columns: repeat(2, 1fr);
    width: 80%;
    margin-top: 0;
  }

  .cardes {
    padding: 20px;
  }

  .cardes h3 {
    font-size: 20px;
  }

  .cardes p {
    font-size: 14px;
  }
}

/* Media Query for 768px */
@media (max-width: 768px) {
  .our-expertise::before,
  .our-expertise::after {
    width: 150px;
    height: 136px;
  }

  .text-section h2 {
    font-size: 30px;
  }

  .text-section p {
    font-size: 18px;
  }

  .content-section {
    flex-direction: column;
    align-items: center;
  }

  .expertise-image {
    width: 80%;
    margin-bottom: 50px;
  }

  .cardes-container {
    grid-template-columns: 1fr;
    width: 80%;
    margin-top: 0;
  }

  .cardes {
    padding: 20px;
  }

  .cardes h3 {
    font-size: 20px;
  }

  .cardes p {
    font-size: 14px;
  }
}

/* Media Query for 480px */
@media (max-width: 480px) {
  .our-expertise::before,
  .our-expertise::after {
    width: 120px;
    height: 110px;
  }

  .text-section h2 {
    font-size: 24px;
  }

  .text-section p {
    font-size: 16px;
  }

  .content-section {
    flex-direction: column;
    align-items: center;
  }

  .expertise-image {
    width: 90%;
    margin-bottom: 30px;
  }

  .cardes-container {
    grid-template-columns: 1fr;
    width: 80%;
    margin-top: 0;
  }

  .cardes {
    padding: 15px;
  }

  .cardes h3 {
    font-size: 18px;
  }

  .cardes p {
    font-size: 12px;
  }
}

/* Meet Our Team Section Styles */
.meet-our-team {
  text-align: center;
  padding: 40px 20px;
  background-color: #ecf4fb;
  position: relative; /* For positioning child pseudo-elements */
  overflow: hidden; /* Prevents overflow caused by pseudo-elements */
}

/* Ellipse Design at Top-Right and Bottom-Left */
.meet-our-team::before,
.meet-our-team::after {
  content: "";
  position: absolute;
  width: 252px;
  height: 228px;
  background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #BFD8F0 85.5%);
  z-index: 0;
  border-radius: 50%;
}

/* Top-Right Ellipse */
.meet-our-team::before {
  top: 150px;
  right: 0;
  transform: translate(50%, -50%);
}

/* Bottom-Left Ellipse */
.meet-our-team::after {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .meet-our-team::before,
  .meet-our-team::after {
      width: 150px; /* Reduce ellipse size for smaller screens */
      height: 136px;
  }
}


.meet-our-team h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.meet-our-team p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Slider Container */
.slide-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.team-member {
    display: flex;
    align-items: center;
    margin: 0 20px;
    max-width: 100%;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.team-member-img {
    position: relative;
    width: 380px;
    height: 350px;
    background-color: #003366; /* Dark Blue Background */
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
    margin-right: 55px;
  
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #003366;
    padding: 8px;
    border-radius: 50%;
    margin-top: 10px;
}

.social-icon a {
    color: white;
    font-size: 30px;
}

/* Team Member Info */
.team-member-info {
    max-width: 400px;
    text-align: left;
    background-color:  white;
    width: 100%;
    height: 100%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    margin-left: -55px;
    position: relative;
}

.team-member-info h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    margin-left: 15px;
    margin-top: 100px;
}

.team-member-info .role {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 10px;
}

.team-member-info p {
    font-size: 1rem;
    color: #333; 
    margin-left: 15px;
    word-wrap: break-word;
    max-width: 300px;
}

/* Slider Indicator */
.slider-indicator {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.dot {
    height: 20px;
    width: 20px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #003366;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .meet-our-team::before,
  .meet-our-team::after {
    width: 130px; 
    height: 110px;
  }
  
  .meet-our-team::before {
    top: 60px; 
    right: 5px;
  }

  .meet-our-team::after {
    bottom: -30px;
    left: -20px;
  }
}

@media (max-width: 480px) {
  .meet-our-team::before,
  .meet-our-team::after {
    width: 120px; 
    height: 100px;
  }

  .meet-our-team::before {
    top: 60px; /* Adjust top positioning */
    right: 0;
  }

  .meet-our-team::after {
    bottom: -20px; /* Adjust bottom positioning */
    left: -10px;
  }

  .meet-our-team h2 {
    font-size: 1.5rem; /* Adjust font size for small screens */
  }

  .meet-our-team p {
    font-size: 1rem; /* Adjust paragraph font size */
  }
}
/* Medium Screen (768px) */
@media (max-width: 768px) {
  .team-member {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    gap: 0; 
    margin-right: -150px;
  }

  .team-member-img{
    width: 400px;
    height: 400px;
  }
  .team-member-info {
    width: 100%;
    height: 400px;
  }
  
}
/* Small Screen (480px) */
@media (max-width: 480px) {
  .team-member {
    flex-direction: column;
    align-items: center;
    padding: 8px;
    gap: 10px; /* Match gap similar to 768px */
  }

  .team-member-img {
    width: 95%;
    height: 350px;
  }

  .team-member-info {
    width: 90%;
    text-align: center;
    padding: 8px;
    height: 350px;
    margin-top: -10px;
  }

  .team-member-info h3 {
    margin-top: 60px; /* Maintain spacing consistency */
    font-size: 1.2rem;
  }

  .team-member-info p {
    font-size: 0.95rem;
    margin: 5px 0;
    word-break: break-word;
  }
}





  /* Contact Section */
  .contact-section {
    background: linear-gradient(to right, #00387a, #086bd9);
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-right-radius: 100px;
    margin-bottom: 20px;
    margin-top: -50px;
}

/* Contact Container */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

/* Left Section: Text */
.contact-text {
    max-width: 500px;
}

.contact-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-text p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
}

/* Right Section: Image */
.contact-image img {
    width: 350px;
    height: auto;
    animation: float 03s ease-in-out infinite;
}

/* Floating Animation for Image */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-text h1 {
        font-size: 2.5rem;
    }

    .contact-image img {
        width: 250px;
        margin-top: 20px;
    }
}




.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 20px;
  width: 90%; /* 90% of the parent container width */
  max-width: 1100px; /* Ensures it doesn’t exceed 1100px */
}

/* Contact Information Section */
.contact-info {
  background: #edf4fb;
  padding: 60px;
  border-radius: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  height: 350px;
  overflow: hidden; /* Hide any part of the large circle outside the container */
}

/* Large Eclipse Circle */
.eclipse-large {
  position: absolute;
  width: 137px;
  height: 137px;
  right: -15px; 
  bottom: -30px;
  background-color: #ddeefe; 
  border-radius: 50%;
  z-index: 2;
}

/* Small Eclipse Circle (overlapping with the large one) */
.eclipse-small {
  position: absolute;
  width: 65px;
  height: 65px; 
  right: 48px; 
  bottom: 30px; 
  background-color: #d1e3f4;
  border-radius: 50%; 
  z-index: 3;
}



.contact-info h2 {
  font-size: 1.6m;
  color: black;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 0.9em;
  color: #555;
  line-height: 1.5;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap:50px;
}

.contact-details .phone,
.contact-details .email {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-details .icon {
  width: 50px;
  height: 50px;
  background-color: #6c8aac;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.2em;
}

.contact-details .text h4 {
  font-size: 1em;
  color: black;
  margin: 0;
}

.contact-details .text p {
  font-size: 0.9em;
  color: #555;
  margin: 0;
}


/* Contact Form Styling */
.contact-form {
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 24px;
  padding: 60px;
  flex: 1;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 1.5em;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  position: relative;
}


.input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px; 
  
  width:450px; 
  height: auto; 
}

/* Input and Textarea Styling */
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 10px 15px; /* Adjust padding for better alignment */
  border: none;
  border-bottom: 2px solid #ddd; /* Bottom border for the input fields */
  background: none;
  font-size: 1em;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box; 
  margin-top: 20px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #999; 
  font-size: 1em; 
}

/* Focus Effect */
.input-group input:focus,
.input-group textarea:focus {
  border-bottom-color: #007bff;
}

textarea {
  resize: none;
  padding-bottom: 15px; /* Adjust padding for proper alignment */
}


.input-group input:focus,
.input-group textarea:focus {
  border-bottom-color: #007bff;
}

textarea {
  resize: none;
}

.btn {
  background-color: #003366;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #004080;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .contact-text h1 {
    font-size: 2.5rem;
  }

  .contact-image img {
    width: 250px;
    margin-top: 20px;
  }

  .contact-info {
    padding: 40px;
    height: auto;
    padding-bottom: 80px;
  }

  .contact-info h2 {
    font-size: 1.4rem;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .contact-form {
   
    width: 80%;
  }

  .input-group {
    width: 100%;
  }

  .contact-details {
    gap: 30px;
  }

  .contact-details .phone,
  .contact-details .email {
    gap: 10px;
  }

  .input-group input,
  .input-group textarea {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-text h1 {
    font-size: 2rem;
  }

  .contact-text p {
    font-size: 1rem;
  }
/* Large Eclipse Circle */
.eclipse-large {
  position: absolute;
  width: 100px;
  height: 100px;
  right: -15px; 
  bottom: -30px;
  background-color: #ddeefe; 
  border-radius: 50%;
  z-index: 2;
}

/* Small Eclipse Circle (overlapping with the large one) */
.eclipse-small {
  position: absolute;
  width: 40px;
  height: 40px; 
  right: 30px; 
  bottom: 24px; 
  background-color: #d1e3f4;
  border-radius: 50%; 
  z-index: 3;
}

  .contact-image img {
    width: 250px;
  }

  .contact-info {
    height: 100%;
    margin-bottom: 80px;
  }

  .contact-info h2 {
    font-size: 1.2rem;
  }

  .contact-info p {
    font-size: 0.8rem;
  }

  .contact-form {
   
    
    width: 70%;
  }

  .contact-details {
    gap: 20px;
  }

  .contact-details .phone,
  .contact-details .email {
    gap: 10px;
  }

  .input-group input,
  .input-group textarea {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.9rem;
  }
}

/* FAQ SECTION */
.faq-section {
  width: 100%;
  margin: 3rem auto;
  padding: 1rem;
  text-align: center;
  position: relative;
  background-color: #ffffff;
  z-index: 1;
  overflow: hidden; /* Ensure any overflow is hidden */
  box-sizing: border-box; /* Include padding and borders in element's total width and height */
}

/* Eclipse shapes in the background */
.faq-section::before,
.faq-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
  background: #cce4f6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-section::before {
  width: 300px;
  height: 300px;
  top: 10px;
  left: -150px; /* Half the size of the circle will be hidden to the left */
}

.faq-section::after {
  width: 300px;
  height: 300px;
  bottom: 100px;
  right: -150px; /* Half the size of the circle will be hidden to the right */
}

.faq-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.faq-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}

.faq-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure it doesn't exceed the container */
  width: 900px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto; /* Center the container */
  box-sizing: border-box; /* Include padding and borders in element's total width */
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #333;
  height: 50px;
}

.faq-question:hover {
  background: #f1f5f9;
}

.toggle-icon {
  color: #555;
  font-size: 1.2rem;
}

.faq-answer {
  display: none;
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
  text-align: left;
  background-color: #f8f8f8;
  border-left: 4px solid #007bff;
}

.faq-answer.show {
  display: block;
}

.faq-footer {
  margin: 2rem 0;
  text-align: left;
}

.more-faqs {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  margin-left: 200px;
  margin-right: auto;
}

.more-faqs:hover {
  text-decoration: underline;
}

.social-media p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #333;
}

.social-icons a {
  color: white;
  border-radius: 50%;
  padding: 10px;
  font-size: 1rem;
  margin: 0 0.5rem;
  text-decoration: none;
  background-color: #6c8aac;
}

.social-icons a:hover {
  color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .faq-container {
    width: 80%;
    margin-left: 150px;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 1.1rem;
  }

  .faq-answer {
    font-size: 1rem;
  }

  .more-faqs {
    margin-left: 150px;
  }
}

@media (max-width: 768px) {
  /* Adjust FAQ section padding and title size for smaller screens */
  .faq-section {
    padding: 2rem 1rem;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  .faq-subtitle {
    font-size: 0.85rem;
  }

  .faq-container {
    width: 100%;
    margin: 0;
    padding: 1rem;
  }

  .faq-item {
    font-size: 0.9rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  .more-faqs {
    font-size: 0.9rem;
    margin-left: 0;
  }

  /* Adjust Eclipse Shapes */
  .faq-section::before,
  .faq-section::after {
    width: 200px;
    height: 200px;
  }

  .faq-section::before {
    top: 0;
    left: -100px;
  }

  .faq-section::after {
    bottom: 50px;
    right: -100px;
  }
}

@media (max-width: 480px) {
  /* Further adjustments for small screens */
  .faq-section {
    padding: 1rem;
  }

  .faq-title {
    font-size: 1.3rem;
  }

  .faq-subtitle {
    font-size: 0.8rem;
  }

  .faq-container {
    padding: 1rem;
    margin-left: 0;
    width: 100%;
  }

  .faq-item {
    font-size: 0.85rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.85rem;
  }

  .more-faqs {
    font-size: 0.85rem;
    margin-left: 0;
  }

  /* Reduce Eclipse Size */
  .faq-section::before,
  .faq-section::after {
    width: 150px;
    height: 150px;
  }

  .faq-section::before {
    left: -75px;
  }

  .faq-section::after {
    right: -75px;
  }
}




 /*signup and login styles */
    .signup-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 50px;
      height: 750px;
      position: relative;
      overflow: hidden;
      background-color: #f6f5ff;
      z-index: 2;
    }
    
    /* Left Section Styles */
    .signup-left {
      flex: 1;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding-left: 30px;
      background-color: #f6f5ff;
    }
    
    
    .big-image img {
      width: 100%;
      max-width: clamp(300px, 80vw, 1000px);
      mix-blend-mode: multiply;
      height: 100%;
      transform: scale(2.3);
      margin-left: -80px;
      margin-bottom: -70px;
      object-fit: contain;
    }
    
    /* Right Section Styles */
    .signup-right {
      flex: 1;
      text-align: left;
      margin-right: -250px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      margin-top: 50px;
      z-index: 2;
    }
    
    .top-text h1 {
      font-size: 2.8rem;
      line-height: 1.4;
      color: #1A1A1A;
      margin-bottom: 20px;
    }
    
    .top-text h1 span {
      color: #454eff; /* Highlighted color for "Innovation" */
    }
    
    .signup-form-container {
      background: #FFFFFF;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      max-width: 400px;
    }
    
    .signup-form-container h3 {
      font-size: 1.2rem;
      color: #555;
      margin-top: -10px;
    }
    
    .signup-form-container h2 {
      font-size: 2rem;
      color: #1A1A1A;
      margin: 10px 0 20px;
    }
    
    .signup-form-container form input {
      width: 90%;
      padding: 15px;
      margin: 10px 0;
      border: 1px solid #777;
      border-radius: 8px;
      font-size: 1rem;
    }
 .signup-form-container form {
  display: flex;
  flex-direction: column;
  }

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-wrapper label {
  position: absolute;
  top: 15%;
  left: 0;
  transform: translateY(-50%);
  background-color: #faf9f9; 
  margin-left: 15px;
  padding: 0 2px;
  color: #555;
  font-weight: bold;
  font-size: 1rem;
}

/* Hide the password visibility icon for all browsers */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear, /* For Microsoft Edge */
input[type="password"]::-webkit-clear-button,
input[type="password"]::-webkit-inner-spin-button, /* For Chrome, Safari */
input[type="password"]::-webkit-reveal-button { /* For Chrome */
  display: none;
}


    .signup-form-container form button {
      width: 100%;
      padding: 15px;
      background: black;
      color: #FFFFFF;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: bold;
    }


    .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%; /* Full width of the container */
  height: 30px; /* Height of the divider */
  background-color: #FFF; /* Gray background */
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px; /* Line thickness */
  background-color: #888; 
  transform: translateY(-50%); 
}

.divider-text {
  position: relative;
  padding: 0 10px;
  background-color: #FFF;
  font-weight: bold; 
  color: #333;
}

    .signup-form-container .social-signup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.signup-form-container .social-signup a {
  text-decoration: none;
  display: block;
  width: 95%;
}

.signup-form-container .social-signup a {
  width: 95%;
  height: 20px;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  background-color: #faf9f9; /* Default button background */
  color: #777; /* Text color */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; 
}

.signup-form-container .social-signup a i {
  font-size: 1.5rem; 
}
.signup-form-container .social-signup a:hover {
color: blue;
}


/* Google Button Logo Image */
.signup-form-container .social-signup .google-logo {
  width: 40px; 
  height: 30px; 
  margin-right: 40px; 
  object-fit: contain;
}

/* Facebook Button */
.signup-form-container .social-signup .facebook i {
    color: white;
    background-color: #10a0e6;
    border-radius: 50%;
    padding-top: 6px;
    padding-left: 6px;
    padding-right: 6px;
    padding-bottom: -1px;
    font-size: 1rem;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    margin-right: 35px;
}

/* Apple Button */
.signup-form-container .social-signup .apple i {
    color: #000;
    font-size: 1.5rem;
    margin-right: 50px;
}
    .signup-form-container p {
      text-align: center;
      font-size: 0.9rem;
      margin: 50px 0;

    }
    
    .signup-form-container p a {
      color: #5565FF;
      text-decoration: none;
      font-weight: bold;
      cursor: pointer;
    }
    
    /* Background Decorative Circles */
    .circle {
      position: absolute;
      border-radius: 50%;
      z-index: -1;
      pointer-events: none;
    }
    
    .circle.top-right {
      width: 250px;
      height: 250px;
      background-color: #C3C5FF;
      top: -20px;
      right: -80px;
    }
    
    .circle.bottom-right {
      width: 250px;
      height: 250px;
      background-color: #5565FF;
      bottom: -0px;
      right: -100px;
    }
    
    .circle.top-center {
      width: 200px;
      height: 200px;
      background-color: #C3C5FF;
      top: -100px;
      right: 50%;
      transform: translateX(-50%);
    }


    /*login style path*/

    .login-section {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 50px;
   height: 750px;
   position: relative;
   overflow: hidden;
   background-color: #f6f5ff;
   z-index: 2;
 }
 
 /* Left Section Styles */
 .login-left {
   flex: 1;
   position: relative;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   justify-content: flex-start;
   padding-left: 30px;
   background-color: #f6f5ff;
 }
 
 
 
 
 /* Right Section Styles */
 .login-right {
   flex: 1;
   text-align: left;
   margin-right: -250px;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   margin-top: 50px;
   z-index: 2;
 }
 
 .login-form-container {
   background: #FFFFFF;
   padding: 30px;
   border-radius: 15px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
   max-width: 400px;
 }
 
 .login-form-container h3 {
   font-size: 1.2rem;
   color: #555;
   margin-top: -10px;
 }
 
 .login-form-container h2 {
   font-size: 2rem;
   color: #1A1A1A;
   margin: 10px 0 20px;
 }
 
 .login-form-container form input {
   width: 90%;
   padding: 15px;
   margin: 10px 0;
   border: 1px solid #777;
   border-radius: 8px;
   font-size: 1rem;
 }
.login-form-container form {
display: flex;
flex-direction: column;
}


 .login-form-container form button {
   width: 100%;
   padding: 15px;
   background: black;
   color: #FFFFFF;
   border: none;
   border-radius: 8px;
   cursor: pointer;
   font-size: 1rem;
   font-weight: bold;
 }


 .login-form-container .social-login {
display: flex;
flex-direction: column;
gap: 10px;
}

.login-form-container .social-login a {
text-decoration: none;
display: block;
width: 95%;
}

.login-form-container .social-login a {
width: 95%;
height: 20px;
padding: 12px;
margin-top: 5px;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 1rem;
cursor: pointer;
background-color: #faf9f9; /* Default button background */
color: #777; /* Text color */
display: flex;
align-items: center;
justify-content: center;
gap: 10px; 
}

.login-form-container .social-login a i {
font-size: 1.5rem; 
}
.login-form-container .social-login a:hover {
color: blue;
}


/* Google Button Logo Image */
.login-form-container .social-login .google-logo {
width: 40px; 
height: 30px; 
margin-right: 40px; 
object-fit: contain;
}

/* Facebook Button */
.login-form-container .social-login .facebook i {
 color: white;
 background-color: #10a0e6;
 border-radius: 50%;
 padding-top: 6px;
 padding-left: 6px;
 padding-right: 6px;
 padding-bottom: -1px;
 margin: 0 0.5rem;
 font-size: 1.2rem;
 margin-right: 35px;
}

/* Apple Button */
.login-form-container .social-login .apple i {
 color: #000;
 font-size: 1.5rem;
 margin-right: 50px;
}
 .login-form-container p {
   text-align: center;
   font-size: 0.9rem;
   margin: 50px 0;

 }
 
 .login-form-container p a {
   color: #5565FF;
   text-decoration: none;
   font-weight: bold;
   cursor: pointer;
 }
 

  .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
  }
  
  .remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
  }
  
  .remember-me input {
    width: 16px;
    height: 16px;
  }
  
  .forgot-password {
    text-decoration: none;
    color: #333; 
    font-weight: boldv;
  }
  
  .forgot-password:hover {
    text-decoration: underline;
    color: #1e90ff;
  }


  
/* For screens 768px and below */
@media (max-width: 768px) {
  /* Hide Circles on Mobile */
  .circle {
    display: none;
  }

  /* Signup and Login Sections */
  .signup-section, .login-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 20px;
    padding-top: 30px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Left Section with Image */
  .signup-left, .login-left {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }

  .big-image img {
    width: 90%;
    max-width: 500px;
    height: auto;
    margin-left: 0;
    object-fit: contain;
    padding-top: 20px;
    margin-left: -20px;
  }

  /* Right Section with Text */
  .signup-right, .login-right {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }

  .top-text h1 {
    font-size: 2rem; 
    line-height: 1.3;
    max-width: 10px;
    margin-top: -150px;
    margin-bottom: 150px;
    padding-left: 300px;
  }

  .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%; /* Full width of the container */
    height: 30px; /* Height of the divider */
    background-color: #f6f5ff; /* Gray background */
  }
  
  .divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px; /* Line thickness */
    background-color: #888; 
    transform: translateY(-50%); 
  }
  
  .divider-text {
    position: relative;
    padding: 0 10px;
    background-color: #f6f5ff;
    font-weight: bold; 
    color: #333;
  }
  /* Form Container */
  .signup-form-container, .login-form-container {
    background: transparent;
    box-shadow: none;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }

  .signup-form-container h2, .login-form-container h2 {
    font-size: 1.5rem;
  }

  /* Social Media Buttons */
  .social-signup a, .social-login a {
    display: inline-block;
    width: 45%; /* Reduced size for buttons */
    margin: 5px;
    padding: 10px;
    font-size: 1rem;
    max-width: 340px;
  }

  .social-signup a i, .social-login a i {
    font-size: 1.2rem; /* Reduced icon size */
  }


  /* Reduce Button Size */
  .signup-form-container form button,
  .login-form-container form button {
    padding: 10px;
    font-size: 1rem;
  }
}

  
/* For screens 768px and below */
@media (max-width: 480px) {
  /* Hide Circles on Mobile */
  .circle {
    display: none;
  }

  /* Signup and Login Sections */
  .signup-section, .login-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 20px;
    padding-top: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Left Section with Image */
  .signup-left, .login-left {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }

  .big-image img {
    width: 90%;
    max-width: 300px;
    height: auto;
    margin-left: 0;
    object-fit: contain;
    padding-top: 10px;
    margin-left: -30px;
  }

  /* Right Section with Text */
  .signup-right, .login-right {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    margin-left: -260px;
  }

  .top-text h1 {
    font-size: 1.6rem; 
    line-height: 1.3;
    max-width: 10px;
    margin-top: -80px;
    margin-bottom: 100px;
    padding-left: 200px;
    
  }

  .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%; /* Full width of the container */
    height: 30px; /* Height of the divider */
    background-color: #f6f5ff; /* Gray background */
  }
  
  .divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px; /* Line thickness */
    background-color: #888; 
    transform: translateY(-50%); 
  }
  
  .divider-text {
    position: relative;
    padding: 0 10px;
    background-color: #f6f5ff;
    font-weight: bold; 
    color: #333;
  }
  /* Form Container */
  .signup-form-container, .login-form-container {
    background: transparent;
    box-shadow: none;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }

  .signup-form-container h2, .login-form-container h2 {
    font-size: 1.5rem;
  }

  /* Social Media Buttons */
  .social-signup a, .social-login a {
    display: inline-block;
    width: 45%; /* Reduced size for buttons */
    margin: 5px;
    padding: 10px;
    font-size: 1rem;
    max-width: 340px;
  }

  .social-signup a i, .social-login a i {
    font-size: 1.2rem; /* Reduced icon size */
  }

  /* Reduce Button Size */
  .signup-form-container form button,
  .login-form-container form button {
    padding: 10px;
    font-size: 1rem;
  }
}






.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  background-color: white;
}

.blog-item {
  aspect-ratio: 4/3;
}

.blog-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text1-card-overlay,
.text2-card-overlay {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  padding: 15px;
  background: linear-gradient(to right, #0a3f7c, #126dd4); /* Default gradient */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.text2-card-overlay {
  background: linear-gradient(to right, #c47b41, #dfaa60);
}

.text1-card-overlay p,
.text2-card-overlay p {
  color: white;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0;
}

.text1-card-overlay h3,
.text2-card-overlay h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
}


/* Responsive Design */
@media (max-width: 768px) {
  .text1-card-overlay,
.text2-card-overlay {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  padding: 15px;
  background: linear-gradient(to right, #0a3f7c, #126dd4); /* Default gradient */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.text2-card-overlay {
  background: linear-gradient(to right, #c47b41, #dfaa60);
}

  .blog-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }

  .text1-card-overlay h3,
  .text2-card-overlay h3 {
    font-size: 1rem;
  }

  .text1-card-overlay p,
  .text2-card-overlay p {
    font-size: 0.8rem;
  }
}

@media (max-width: 1200px) {
  .text1-card-overlay,
.text2-card-overlay {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  padding: 15px;
  background: linear-gradient(to right, #0a3f7c, #126dd4); /* Default gradient */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.text2-card-overlay {
  background: linear-gradient(to right, #c47b41, #dfaa60);
}
  .blog-container {
    gap: 30px;
  }

  .text1-card-overlay h3,
  .text2-card-overlay h3 {
    font-size: 1.2rem;
  }
}



.blog-logo-container {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #003c91, #1c76d1);
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-logo-item {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

.blog-brand-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 0 15px;
}

@media (max-width: 480px) {
.blog-logo-container {
  padding: 15px;
  width: 90%;
  display: flex;
  flex-direction: row;
}

.blog-logo-item {
  font-size: 0.8rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  }
.blog-brand-divider {
  height: 20px; 
  width: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 0 0px;
}
}


.blog-head-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  padding: 80px;
}

.blog-head-image {
  position: relative;
  width: 100%;
  height: 600px;
}

.blog-head-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-blog-tags {
  padding-top: 30px;
  position: relative;
  align-items: flex-start;
  justify-content: left;
}

.badge-text, .time {
  position: absolute;
  top: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 12px;
}

.badge-text {
  background: #003c91;
  border: 1px solid #003c91;
  color: white;
  border-radius: 4px 0 0 4px;
}

.time {
  left: 50px;
  background: white;
  color: #333;
  border-radius: 0 4px 4px 0;
  border: 1px solid #999;
}

.main-blog-content {
  padding-top: 30px;
  position: relative;
  align-items: flex-start;
  justify-content: left;
  background: #F8F8F8;
  border-radius: 10px;
  margin-top: 30px;
}


.main-blog-content h1 {
  font-size: 20px;
  font-weight: 700;
  max-width: 300px;
  color: #333;
  margin: 16px 0;
  line-height: 1.4;
  padding-left: 20px;
  margin-top: -20px;
}

.main-blog-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  padding-left: 20px;
}

.blog-read-more {
  display: inline-block;
  padding-left: 20px;
  color: #003c91;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 24px;
}


.comments-section {
  align-self: start;
  justify-content: center;
  }

  .comments-section h2 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 16px;
  }

  .comments-section form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
  }

  .comments-section input.small-input {
    width: 30%;
    padding: 8px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-size: 14px;
    background: #F8F8F8;
  }

  .comments-section textarea {
    min-height: 100px;
    resize: vertical;
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-size: 14px;
    background: #F8F8F8;
    padding-right: 40px;
  }

  .comments-section form .submit-btn {
    position: absolute;
    bottom: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    color: #004aad;
    cursor: pointer;
    transform: rotate(0deg);
  }

  .comments-section form .submit-btn .paper-plane {
    transform: rotate(0deg);
  }

  .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #666;
  }

  .checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
  }

  .newsletter {
    margin: 15px 0px;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    width: 400px;
  }

  .newsletter h3 {
    font-size: 30px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
  }

  .newsletter p {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
  }

  .newsletter form {
    display: flex;
    gap: 8px;
  }

  .newsletter-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #003c91;
    box-shadow: 0px 1px 2px #2D65FD;
    border-radius: 4px;
    font-size: 14px;
  }

  .subscribe-btn {
    padding: 12px ;
    background: #003c91;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
  }
/* General Styling */
.blog-head-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  padding: 80px;
}

.blog-head-image {
  position: relative;
  width: 100%;
  height: 600px;
}

.blog-head-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-blog-tags {
  padding-top: 30px;
  position: relative;
  align-items: flex-start;
  justify-content: left;
}

.badge-text, .time {
  position: absolute;
  top: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 12px;
}

.badge-text {
  background: #003c91;
  border: 1px solid #003c91;
  color: white;
  border-radius: 4px 0 0 4px;
}

.time {
  left: 50px;
  background: white;
  color: #333;
  border-radius: 0 4px 4px 0;
  border: 1px solid #999;
}

.main-blog-content {
  padding-top: 30px;
  background: #F8F8F8;
  border-radius: 10px;
  margin-top: 30px;
}

.main-blog-content h1 {
  font-size: 20px;
  font-weight: 700;
  max-width: 300px;
  color: #333;
  margin: 16px 0;
  line-height: 1.4;
  padding-left: 20px;
  margin-top: -20px;
}

.main-blog-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  padding-left: 20px;
}

.blog-read-more {
  display: inline-block;
  padding-left: 20px;
  color: #003c91;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 24px;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .blog-head-container {
    padding: 40px;
  }

  .blog-head-image {
    height: 400px;
  }

  .main-blog-content h1 {
    font-size: 18px;
    max-width: 100%;
    padding-left: 10px;
  }

  .main-blog-content p {
    font-size: 14px;
    padding-left: 10px;
  }

  .newsletter {
    width: 100%;
    padding: 15px;
  }

  .newsletter h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .blog-head-container {
    padding: 20px;
  }

  .blog-head-image {
    height: 300px;
  }

  .badge-text, .time {
    font-size: 0.7rem;
    top: 10px;
  }

  .main-blog-content h1 {
    font-size: 16px;
    margin-top: 0;
  }

  .main-blog-content p {
    font-size: 13px;
  }

  .comments-section input.small-input {
    width: 100%;
  }

  .newsletter {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .blog-head-container {
    padding: 10px;
    width: 300px;
  }

  .blog-head-image {
    height: 300px;
  }

  .main-blog-content h1 {
    font-size: 14px;
    padding-left: 5px;
  }

  .main-blog-content p {
    font-size: 12px;
    padding-left: 5px;
  }

  .newsletter {
    padding: 10px;
    width: 300px;
  }

  .newsletter h3 {
    font-size: 20px;
  }

  .newsletter p {
    font-size: 12px;
  }

  .subscribe-btn {
    padding: 8px;
    font-size: 12px;
  }
}



/* Testimonial Section */
.testimonial-section {
  text-align: center;
  padding: 3rem 2rem;
  background: #f9f9f9;
}

.testimonial-section h2 {
  font-size: 2rem;
  font-weight: bold;
}

.testimonial-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.testimonial-slider {
  display: flex;
  overflow: hidden;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.testimonial-card {
  flex: 0 0 300px; 
  max-width: 300px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.testimonial-card.active {
  background: #0A3C75;
  color: #fff;
}

/* Default colors for text */
.testimonial-card h4,
.testimonial-card span,
.testimonial-card p {
  color: #333; /* Default text color */
  transition: color 0.3s ease;
}

/* Active state */
.testimonial-card.active h4,
.testimonial-card.active span,
.testimonial-card.active p {
  color: #fff; /* White text when active */
}


.testimonial-card.active .quote-icon {
  color: #fff;
}


.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: #0A3C75; 
  margin-bottom: 1rem;
  align-self: flex-start; 
}

.testimonial-card h4 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #888;
}

.testimonial-img {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .name-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  margin-top: 1rem;
}

.testimonial-card .name-info h4 {
  margin-right: 10px;
}

.testimonial-card .name-info span {
  color: #888;
}



/* Slider Controls */
.slider-controls {
  margin-top: 1.5rem;
}

.slider-controls button {
  background: #0A3C75;
  color: #fff;
  border: none;
  padding: 12px 20px;
  margin: 0 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.3rem;
}

.slider-controls button:hover {
  background: #ebebeb;
  color: #093c78;
}

/* Display Three Cards at Once */
.testimonial-slider {
  display: flex;
  gap: 1rem;
  overflow: hidden;
}

.testimonial-card {
  flex: 0 0 30%; /* Three cards per screen */
  max-width: 300px;
}

.testimonial-slider .testimonial-card:not(.active) {
  display: none;
}
/* Responsive Adjustments for Testimonial Section */

/* For screens up to 1024px */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 45%; /* Show two cards per view */
    max-width: 300px;
  }
  .testimonial-slider {
    gap: 1rem;
    justify-content: center;
  }
}

/* For screens up to 768px */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 80%; /* Show one card per view */
    max-width: 300px;
  }
  .testimonial-slider {
    gap: 1rem;
    justify-content: center;
  }
  .slider-controls button {
    padding: 10px 15px; /* Adjust button size for smaller screens */
    font-size: 1rem;
  }
}

/* For screens up to 480px */
@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 100%; 
    max-width: 90%;
    width: 100%;
    padding: 1rem; 
  }
  .testimonial-slider {
    gap: 0.5rem; 
  }
  .slider-controls button {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
  .testimonial-card h4 {
    font-size: 1rem; 
  }
  .testimonial-card p {
    font-size: 0.85rem;
  }

  
.testimonial-card span {
  font-size: 0.9rem;
  color: #888;
}

.testimonial-img {
  position: absolute;
  bottom: 30px;
  left: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .name-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  margin-top: 1rem;
}

}






/* General Footer Styles */
.footer {
  background-color: #262642;
  color: #fff;
  padding: 2rem 1rem;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Contact Section */
.footer-contact {
  flex: 1 1 250px;
  align-items: flex-start;
}

.footer-contact p {
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.logo-image-footer{
  max-width: 100px;
  margin-bottom: -20px;
  margin-left: -30px;
}
/* Footer Links */
.footer-links {
  flex: 1 1 200px;
  margin-top: 60px;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #f9f9f9;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 0.5rem 0;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007bff;
}

/* Footer Bottom Section */
.footer-bottom {
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom span {
  color: #007bff;
}

.footer-contact i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%; 
  background-color: #fff; 
  color: #0A3C75; 
  font-size: 18px; 
  margin-right: 5px; 
}



/* For Tablets and Small Devices */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start; 
    text-align: left; 
  }

  .footer-contact,
  .footer-links {
    flex: 1 1 100%; 
    margin-bottom: 1rem;
  }
  .footer-contact{
    margin-bottom: -80px;
  }
  .footer-links {
    margin-bottom: -80px;
  }
  .footer-links ul {
    padding-left: 0;
    margin: 0;
  }

  .footer-links li {
    margin: 0.5rem 0;
  }
.footer-bottom {
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 1rem 0;
  margin-top: 5rem;
}

}

/* For Extra Small Devices (Mobile Phones) */
@media (max-width: 480px) {
  .footer {
    padding: 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start; 
    text-align: left;
  }

  .footer-contact,
  .footer-links {
    flex: 1 1 100%;
    margin-bottom: 1rem;
  }

  .footer-contact{
    margin-bottom: -80px;
  }
  .footer-links {
    margin-bottom: -80px;
  }
  .footer .footer-links a {
    font-size: 14px;
  }

  .footer .footer-bottom p {
    font-size: 14px;
  }
  .footer-bottom {
    border-top: 1px solid #ddd;
    text-align: center;
    padding: 1rem 0;
    margin-top: 5rem;
  }  
}
