//* Importing Google font - Fira Sans */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Fira Sans', sans-serif;
}

body {
  background: #fff;
  margin-top: 80px;
}

/* Header Styling */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 15px 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #005b96;
  text-decoration: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
}

.navbar .menu-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
}

.navbar .menu-links li a {
  color: #005b96;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .menu-links li a:hover {
  color: #4888EA;
}

/* Mobile Menu */
.navbar #hamburger-btn,
.navbar #close-menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #005b96;
  background: none;
  border: none;
}

.navbar .menu-links .menu-logo {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Show the logo inside the menu on mobile */
  .navbar .menu-links .menu-logo {
    display: block; /* Show the logo */
    margin-bottom: 30px; /* Add space below the logo */
  }

  .navbar .menu-links {
    position: fixed;
    top: 0;
    right: -100%;  /* Initially hidden */
    height: 100vh;
    width: 250px;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Align items to the top */
    padding: 80px 30px 30px; /* Add padding for the logo */
    box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }

  .navbar .menu-links.active {
    right: 0;  /* Show menu when active */
  }

  .navbar #hamburger-btn {
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar #close-menu-btn {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
  }

  .navbar .menu-links .menu-logo .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #005b96;
    text-decoration: none;
  }

  /* Ensure menu items are stacked properly */
  .navbar .menu-links li {
    margin-bottom: 20px;
  }
}



/* Hero Section */
.hero-section {
  padding: 60px 20px;
  background-image: url("images/0.jpg");
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}

 .call-now {
            position: fixed;
            bottom: 15px;
            right: 15px;
            background-color: #005b96;
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
        }
        .testimonial-slider { overflow: hidden; white-space: nowrap; }



.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #005b96;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #000;
}

/* Cards Section */
.wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.card {
  flex: 1 1 calc(33.33% - 20px);
  background: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: auto;
}

.card .content {
  padding: 20px;
}

/* Footer */
.footer {
  background-color: #005b96;
  padding: 40px 20px;
  color: #fff;
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer .footer-col {
  flex: 1 1 250px;
}

.footer .footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer .footer-col .links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer .footer-col .links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .footer-col .links li a:hover {
  color: #ccc;
}

/* Responsive Adjustments for Mobile and Tablet */
@media (max-width: 1024px) {
  /* Tablet Adjustments */
  .wrapper {
    gap: 15px;
    padding: 15px;
  }

  .card {
    flex: 1 1 calc(50% - 15px);
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  /* Mobile Adjustments */
  .wrapper {
    gap: 10px;
    padding: 10px;
  }

  .card {
    flex: 1 1 100%;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 0.9rem;
  }

  .footer .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer .footer-col {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
 background-color: #fff;
  padding: 30px;
	z-index: 1000; 
}

header .navbar {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
	height: 50px;
}

.cta-button {
      display: inline-block;
      padding: 10px 20px;
      background-color: #005b96;
      color: #ffffff;
      text-decoration: none;
      border-radius: 5px;
      transition: background-color 0.3s;
    }

    .cta-button:hover {
      background-color: #000000;
    }

.navbar .menu-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.navbar .menu-links li a {
  color: #005b96;
  font-weight: 400;
  text-decoration: none;
  transition: 0.2s ease;
}

.navbar .menu-links .language-item a {
  display: flex;
  gap: 8px;
  align-items: center;
}

.navbar .menu-links .language-item span {
  font-size: 1.3rem;
}

.navbar .menu-links li a:hover {
  color: #4888EA;
}

.navbar .menu-links .join-btn a {
  border: 1px solid #005b96;
  padding: 8px 15px;
  border-radius: 4px;
}

.navbar .menu-links .join-btn a:hover {
  color: #fff;
  border-color: transparent;
  background: #000000;
}

.navbar .menu-links .dropdown {
    position: relative;
    display: inline-block;
}

/* Style the dropdown menu */
/* Style the dropdown menu */
.navbar .menu-links .dropdown-menu {
    display: none;
    color: #000;
    background-color: #005b96;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: 100%; /* Position the dropdown menu below the dropdown container */
    left: 0; /* Align the dropdown menu with the left edge of the dropdown container */
    max-width: 200px; /* Set a maximum width for the dropdown menu */
    overflow: hidden;
	border-radius: 0 0 5px 5px; /* Rounded corners only on the bottom */
	border: .05px solid #f2f2f2; /* Border for the dropdown menu */
  border-top: none; /* Remove top border to prevent duplication with navbar */

}

/* Show the dropdown menu when hovering over the dropdown container */
.navbar .menu-links .dropdown:hover .dropdown-menu {
    display: block;
	
}

/* Style the dropdown menu items */
.navbar .menu-links .dropdown-menu li {
    padding: 10px;
    min-height: 10px;
    font-size: 15px;
    color: #fff; /* Text color */
    transition: background-color 0.3s, color 0.3s; /* Smooth transitions */
    cursor: pointer;
	border-bottom: 1px solid #fff;
}

.navbar .menu-links .dropdown-menu li:hover {
    background-color: #488EA; /* Background color on hover */
    color: #000; /* Text color on hover */
}

.navbar .menu-links .dropdown-menu li a {
    text-decoration: none;
    color: inherit; /* Inherit text color from parent */
}

/* Optional: Adjustments for a cleaner design */
.navbar .menu-links .dropdown-menu {
    width: 200px; /* Adjust the width as needed */
}

.navbar .menu-links .dropdown-menu a {
    display: block;
    padding: 3px 0;
}

.navbar .menu-links .dropdown-menu li:last-child {
    margin-bottom: 0; /* Remove bottom margin for the last item */
}

.hero-container {
  position: relative;
  height: auto; /* Automatically adjust based on content */
  overflow: hidden;
}

.hero-image {
  display: flex;
  width: 100%;
  height: auto; /* Scale image height proportionally */
  transition: transform 3s ease;
}

.hero-image:hover {
  transform: scale(1.1); /* Add zoom effect on hover */
}

.hero-text {
  position: absolute;
  top: 10%; /* Adjust position for better visibility */
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 0 10px; /* Add padding for small screens */
  width: 90%; /* Constrain text width on smaller devices */
}

.hero-text h1 {
  font-size: 2rem; /* Smaller font for better mobile fit */
  margin-bottom: 15px;
  line-height: 1.2; /* Improve readability */
	color: #fff;
}

.hero-text p {
  font-size: 1rem; /* Adjust text size for readability */
	color: #fff;
}

.hero-section {
  height: auto; /* Automatically adjust based on content */
  background-image: url("images/0.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-section .content {
  max-width: 90%; /* Fit content within smaller screens */
  margin: 0 auto;
  text-align: center;
}

.hero-section .content h1 {
  color: #fff;
  font-size: 1.8rem; /* Adjust font size for mobile */
  line-height: 1.4;
}

.hero-section .popular-tags {
  display: flex;
  flex-wrap: wrap; /* Wrap tags to avoid overflow */
  gap: 10px;
  color: #fff;
  font-size: 0.9rem; /* Smaller size for mobile */
  justify-content: center; /* Center-align tags */
  margin-top: 15px;
}

.hero-section .tags {
  display: flex;
  gap: 10px;
  align-items: center;
  list-style: none;
}

.hero-section .tags li a {
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 10px; /* Adjust padding for mobile */
  border-radius: 50px;
  font-size: 0.8rem; /* Reduce font size for small screens */
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-section .tags li a:hover {
  background-color: #fff;
  color: #000; /* Change text color for contrast */
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .hero-text {
    top: 30%; /* Lower position for better visibility */
    padding: 0 15px; /* Add spacing on smaller screens */
  }

  .hero-text h1 {
    font-size: 1.8rem; /* Adjust for smaller screens */
  }

  .hero-text p {
    font-size: 0.9rem; /* Ensure readability */
  }

  .hero-section .content h1 {
    font-size: 1.6rem; /* Reduce font size for readability */
    line-height: 1.3;
  }

  .hero-section .popular-tags {
    gap: 8px; /* Reduce gap for better fit */
  }

  .hero-section .tags li a {
    padding: 4px 8px; /* Adjust padding */
    font-size: 0.75rem; /* Smaller size for mobile */
  }
}

@media screen and (max-width: 480px) {
  .hero-text {
    top: 40%; /* Position lower on very small screens */
    padding: 0 10px;
  }

  .hero-text h1 {
    font-size: 1.5rem; /* Adjust for better fit */
  }

  .hero-text p {
    font-size: 0.8rem; /* Smaller text for compact screens */
  }

  .hero-section .popular-tags {
    gap: 5px;
  }

  .hero-section .tags li a {
    padding: 3px 6px; /* Reduce padding for small screens */
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-text {
    display: none; /* Hides the hero text on mobile devices */
  }

  .hero-section .popular-tags {
    display: none; /* Hides the popular tags section */
  }
}


.wrapper{
	
	
 margin: 3% auto; /* Center the wrapper horizontally and add top/bottom margin */
	
  position: relative;
  max-width:120%;
  display: flex;
  align-items: center;
  
	 flex-wrap: wrap; /* Allow wrapping of items */
  align-items: center;
 
  justify-content: space-around; /* Evenly distribute items */
  gap: 15px; /* Space between cards */
}
.wrapper .cart-nav{
  position: relative;
  right: 0;
  top: -35%;
  width: 200px;
  background: #fff;
  padding: 13px 15px;
  border-radius: 3px;
	border-color: lightgrey;
  display: flex;
  cursor: pointer;
  justify-content: space-evenly;
  box-shadow: 3px 3px 8px 0px rgba(0,0,0,0.15);
}
	

.wrapper .card{
  position: relative;
  background: lightgrey;
  border-radius: 10px;
  width: calc(34% - 20px);
  overflow: hidden;
  box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.15);
	border-color: lightgrey;
	dispay:flex;
	 
  margin-bottom: 20px; /* Add margin between cards */
	
}
.wrapper .card img{
  width: 100%;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.card:hover img{
  transform: scale(1.1);
}
.wrapper .card .content{
  position: absolute;
  width: 100%;
  bottom: -50%;
  background: #fff;
  padding: 10px 20px 22px 20px;
  box-shadow: 0px -3px 10px 0px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.wrapper .card:hover .content{
  bottom: 0;
}
.card .content .row,
.content .buttons{
  display: flex;
  justify-content: space-between;
}
.content .row .details span{
  font-size: 22px;
  font-weight: 500;
}
.content .row .details p{
  color: #333;
  font-size: 17px;
  font-weight: 400;
}
.content .row .price{
  color:#005b96;
  font-size: 25px;
  font-weight: 600;
}
.content .buttons{
  margin-top: 20px;
}
.content .buttons button{
  width: 100%;
  padding: 9px 0;
  outline: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  border-radius: 3px;
  border: 2px solid #005b96;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.buttons button:first-child{
  color: #005b96;
  margin-right: 10px;
  background: #fff;
}
button:first-child:hover{
  color: #fff;
  background: #005b96;
}
.buttons button:last-child{
  color: #fff;
  margin-left: 10px;
  background: #005b96;
}
button:last-child:hover{
  background: #005b96;
  border-color: #005b96;
}	



.section-container {
    display: flex;
    align-items: center; /* Center items vertically */
    background-color: none; /* Assuming transparent */
    border: outset;
    border-color: steelblue;
    border-radius: 15px;
    max-width: 95%;
    margin: 60px auto; /* Center the container horizontally */
    padding: 20px;
}

.image-container {
    flex: 2; /* Take 1/3 of the space */
    padding: 20px; /* Added padding for spacing */
}

.image-container img {
    width: 80%; /* Ensure image fills its container */
    max-width: 100%;
    height: auto;
    border-radius: 3px; /* Rounded corners */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    background: #ffffff; /* White background */
}

.content-container {
    flex: 2; /* Take 2/3 of the space */
    padding: 20px; /* Adjusted padding */
    margin-left: 20px; /* Space between image and content */
    border: outset;
    border-color: steelblue;
    border-radius: 15px;
    background-color: none; /* Assuming transparent */
    color: black;
}

h2 {
    font-size: 30px;
    margin-bottom: 20px; /* Adjusted margin */
    color: black;
}

h3 {
	font-size: 20px;
    margin: 20px 0;
}

h10 {
	font-size: 20px;
    margin: 20px 0;
	Color:white;
}
p {
    font-size: 15px;
    line-height: 1.5;
    color: black;
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


wrapper{
  display: flex;
  max-width: 80%;
  position: relative;
}
.wrapper i{
  top: 50%;
  height: 44px;
  width: 44px;
  color: #343F4F;
  cursor: pointer;
  font-size: 1.15rem;
  position: absolute;
  text-align: center;
  line-height: 44px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper i:active{
  transform: translateY(-50%) scale(0.9);
}
.wrapper i:hover{
  background: #f2f2f2;
}
.wrapper i:first-child{
  left: -22px;
  display: none;
}
.wrapper i:last-child{
  right: -22px;
}
.wrapper .carousel{
  font-size: 0px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}
.carousel.dragging{
  cursor: grab;
  scroll-behavior: auto;
}
.carousel.dragging img{
  pointer-events: none;
}
.carousel img{
  height: 350px;
  object-fit: cover;
  user-select: none;
  margin-left: 14px;
  width: calc(100% / 3);
}
.carousel img:first-child{
  margin-left: 0px;
}
@media screen and (max-width: 900px) {
  .carousel img{
    width: calc(100% / 2);
  }
}


@media screen and (max-width: 550px) {	
  .carousel img{
    width: 100%;
  }
}


.section-container1 {
    display: flex;
    flex-direction: column; /* Stack items vertically on small screens */
    align-items: center; /* Center items horizontally */
    background-color: none; /* Assuming transparent */
    border: outset;
    border-color: steelblue;
    border-radius: 15px;
    max-width: 95%;
    margin: 60px; auto; /* Center the container horizontally */
    padding: 20px;
	
}

.image-container1 {
    width: 60%; /* Full width on small screens */
    max-width: 60%; /* Maximum width for flexibility */
    padding: 10px; /* Added padding for spacing */
    text-align: center; /* Center the image */
}

.image-container1 img {
    width: 100%; /* Ensure image fills its container */
    height: auto;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    background: #ffffff; /* White background */
}

.content-container1 {
    width: 100%; /* Full width on small screens */
    max-width: 100%; /* Maximum width */
    padding: 20px; /* Adjusted padding */
    margin-top: 20px; /* Space between image and content */
	
    border: outset;
    border-color: steelblue;
    border-radius: 15px;
    background-color: none; /* Assuming transparent */
    color: black;
	margin: 2%;
}

@media only screen and (min-width: 600px) {
    .section-container1 {
        flex-direction: row; /* Place items side by side */
    }

    .image-container1 {
        width: 50%; /* Half width on larger screens */
        padding: 0; /* Remove padding */
    }

    .content-container1 {
        width: 50%; /* Half width on larger screens */
        margin-top: 0; /* Remove margin */
    }
}




.hero-section10 {
    padding: 2%;
    background-color: none;
}

.table-container10 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.table-card {
    width: 300px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    
}

.table-card img {
    width: 90%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.table-card h1 {
    background-color: steelblue;
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    margin: -20px -20px 20px -20px;
}

.table-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.read-more-button {
    margin-top: 35px;
}

.read-more-button a {
    text-decoration: none;
    background-color: steelblue;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.read-more-button a:hover {
    background-color: #005b96;
}

@media only screen and (min-width: 500px) {
  
	   width: calc(20% - 10px); /* Adjusted card width for smaller screens */
  margin-bottom: 10px; /* Added margin between cards */
	margin-left: 1%;
    }

  

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

.wrapper1 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Add gap between items */
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card1 {
  flex: 1 1 calc(50% - 30px); /* Two cards per row with space between */
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card1:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card1 img {
  width: 100%;
  height: auto;
}

.content1 {
  padding: 20px;
}

.details1 span {
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.details1 p {
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
}

.buttons {
  text-align: center;
}

.buttons button {
  padding: 12px 20px;
  background-color: #005b96;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.buttons button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .card1 {
    flex: 1 1 calc(100% - 20px); /* Full width on mobile with gap */
  }
}



/* General Gallery Styling */
/* General Gallery Styling */
.gallery {
  padding: 60px 9%;
  max-width: 1200px;
  margin: 0 auto;
  perspective: 2000px;
}

.project-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.project-item {
  background: white;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 
    0 30px 60px -20px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.4, 1);
  transform-style: preserve-3d;
  position: relative;
  overflow: visible;
  will-change: transform;
}

/* Inner glow effect */
.project-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 2s ease-in-out; /* Slower glow transition */
  pointer-events: none;
}

/* Default state (30% smaller with slow zoom-out) */
.project-item img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 15px;
  transform: 
    translateZ(60px)
    scale(0.5);
  transition: 
    transform 3s cubic-bezier(0.2, 0.8, 0.1, 1), /* Slower 3s duration */
    box-shadow 3s ease-in-out,
    filter 3s ease-in-out;
  box-shadow: 
    0 30px 30px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1);
  filter: brightness(0.98) contrast(1.05);
}

/* Hover state (normal speed return) */
.project-item:hover {
  transform: 
    translateY(-20px)
    rotateX(2deg)
    scale(1.02);
  box-shadow: 
    0 40px 80px -10px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.03);
}

.project-item:hover::after {
  opacity: 1;
}

.project-item:hover img {
  transform: 
    translateZ(80px)
    scale(1)
    translateY(-10px);
  box-shadow: 
    0 45px 100px rgba(0, 0, 0, 0.25),
    0 20px 50px rgba(0, 0, 0, 0.2);
  filter: brightness(1) contrast(1.1);
  transition-duration: 0.6s; /* Faster return on hover */
}

/* Reflection effect with slow fade */
.project-item::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 5%;
  right: 5%;
  height: 20%;
  background: linear-gradient(
    to bottom, 
    rgba(255, 255, 255, 0.3) 0%, 
    transparent 100%
  );
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 2s ease-in-out; /* Slower reflection */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .gallery {
    padding: 40px 5%;
    perspective: 1000px;
  }
  .project-item {
    padding: 30px;
  }
  .project-item img {
    transform: translateZ(20px) scale(0.75);
    transition-duration: 2s; /* Slightly faster on mobile */
  }
  .project-item:hover img {
    transform: translateZ(40px) scale(1);
  }
}

.project-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background-color: #005b96;      /* Solid black */
    color: #ffffff;              /* White text */
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: opacity 0.2s ease;
}

.project-btn:hover {
    opacity: 0.8;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0; /* Increased padding for better spacing */
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1); /* Shadow for footer to separate from content */
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .gallery {
        padding: 20px;
    }

    .grid-item {
        padding: 10px; /* Adjust padding for smaller screens */
    }

    .grid-item img {
        transform: scale(1); /* Ensure no zoom on very small screens */
    }
}


/* Contact Container */
.contact-container {
    margin: 0;
    width: 100%;
    max-width: 100%;
    display: flex; /* Use flex for responsive layouts */
    padding: 40px;
    flex-direction: row; /* Ensures content is side-by-side (text left, image right) */
    justify-content: space-between;
}

/* Image Container on the Right */
.image-container10 {
    flex: 1;
    display: flex; /* Make image container visible */
    justify-content: flex-end; /* Align images to the right */
    align-items: center;
}

.image-container10 img {
    max-width: 100%; /* Ensure images take up the full width available */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5%; /* Slight rounding for professionalism */
}

/* Contact Content */
.contact-content {
    border: 2px outset #4888EA;
    border-radius: 15px;
    margin: 7%;
    flex: 1;
    padding: 30px;
    color: black;
    background-color: white; /* Adding background for readability */
}

/* Section Styling */
section4 {
    max-width: 100%;
    margin: 10px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Form Labels */
label {
    display: block;
    margin-bottom: 8px;
}

/* Form Inputs and Textarea */
input,
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Submit Button */
button {
    margin-top: 7%;
    padding: 10px 20px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
    background-color: #005b96;
    color: #fff;
    font-weight: bold;
}

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Stack elements vertically on mobile */
        padding: 20px; /* Reduce padding for smaller screens */
    }

    .contact-content {
        margin: 5%;
        padding: 20px;
    }

    button {
        width: 100%;
        margin-top: 5%;
        padding: 12px;
    }

    /* Form Inputs and Textarea */
    input,
    textarea {
        padding: 10px;
        font-size: 25px;
    }

    /* Image Container */
    .image-container10 {
        justify-content: center; /* Center image on mobile */
    }

    .image-container10 img {
        max-width: 90%; /* Ensure image fits on mobile */
        height: auto;
    }
}


.container11 {
            max-width: 800px;
            margin: 60px auto;
            padding: 30px;
            background-color: #fff;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }

        h1 {
            text-align: center;
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        p {
            text-align: center;
            font-size: 1.1rem;
            color: #7f8c8d;
            margin-bottom: 30px;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        label {
            font-size: 1rem;
            font-weight: 600;
            color: #34495e;
        }

        input, select, textarea {
            padding: 12px;
            border-radius: 5px;
            border: 1px solid #ccc;
            font-size: 1rem;
            width: 100%;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

        input:focus, select:focus, textarea:focus {
            border-color: #005b96;
            outline: none;
            box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
        }

        button {
            padding: 15px;
            background-color: #005b96;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button:hover {
            background-color: #005b96;
        }

        .form-section {
            margin-bottom: 20px;
        }

        footer {
            text-align: center;
            padding: 10px 0;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #005b96;
        }

        /* Mobile-Friendly Styles */
        @media (max-width: 600px) {
            .container {
                padding: 20px;
                margin: 20px auto;
            }

            h1 {
                font-size: 2rem;
            }

            p {
                font-size: 1rem;
            }

            button {
                padding: 12px;
                font-size: 1rem;
            }
        }

        /* Extra small devices (like phones in portrait mode) */
        @media (max-width: 400px) {
            h1 {
                font-size: 1.8rem;
            }

            button {
                font-size: 0.9rem;
                padding: 10px;
            }

            input, select, textarea {
                padding: 10px;
            }
        }


.container13 {
            max-width: 1100px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .blog-post {
            background-color: white;
            margin-bottom: 40px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .blog-post:hover {
            transform: translateY(-10px);
        }

        .blog-post img {
            width: 100%;
            border-radius: 12px;
        }

        .blog-post h2 {
            font-size: 2rem;
            color: #34495e;
            margin: 20px 0 10px;
        }

        .blog-post p {
            font-size: 1.1rem;
            color: #7f8c8d;
            line-height: 1.8;
        }

        .blog-post .read-more {
            display: inline-block;
            margin-top: 15px;
            color: #005b96;
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .read-more:hover {
            color: #005b96;
        }

        

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2.5rem;
            }

            header p {
                font-size: 1rem;
            }

            .container {
                padding: 0 15px;
            }

            .blog-post h2 {
                font-size: 1.6rem;
            }

            .blog-post p {
                font-size: 1rem;
            }
        }


section {
            padding: 3em 1em;
            margin: 1em 0;
            background-color: white;
        }

        /* Service Box Styling */
        .service-box {
            display: flex;
            gap: 2em;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .service-box div {
            flex: 1;
            min-width: 300px;
            background-color: #e6e6e6;
            padding: 1em;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 1.5em;
        }
.read-more {
            display: none;
        }

        .read-more-btn {
            background-color: #005b96;
            color: white;
            padding: 0.5em 1em;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 1em;
            font-size: 1em;
        }

        /* Call to Action Button */
        .cta {
            text-align: center;
            margin: 2em 0;
        }

        .cta a {
            text-decoration: none;
            padding: 1em 2em;
            background-color: #005b96;
            color: white;
            border-radius: 5px;
            font-size: 1.2em;
        }

       

 @media screen and (max-width: 768px) {
            header h1 {
                font-size: 1.8em;
            }

            header p {
                font-size: 1em;
            }

            section {
                padding: 1.5em 1em;
            }

            .service-box {
                flex-direction: column;
            }

            .service-box div {
                width: 100%;
                margin-bottom: 1.5em;
            }

            .cta a {
                display: inline-block;
                width: 100%;
                padding: 1em;
                box-sizing: border-box;
                font-size: 1.1em;
            }
        }

        @media screen and (max-width: 480px) {
            header h1 {
                font-size: 1.6em;
            }

            header p {
                font-size: 0.9em;
            }

            .service-box div {
                padding: 1em;
            }

            .read-more-btn {
                padding: 0.4em 0.8em;
                font-size: 0.9em;
            }

            .cta a {
                font-size: 1em;
                padding: 0.8em;
            }
        }
.service-box img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Match the service box styling */
    object-fit: cover; /* Ensure the image covers the box without stretching */
}

/* Responsive Image Adjustment */
@media screen and (max-width: 768px) {
    .service-box img {
        max-width: 100%; /* Ensure it doesn't overflow */
    }
}

@media screen and (max-width: 480px) {
    .service-box img {
        max-width: 100%; /* Ensure it fits small screens */
    }
}

.grid-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .grid-item {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .grid-item h2 {
            font-size: 1.75rem;
            color: #005b96;
            margin-bottom: 15px;
        }

        .grid-item p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px; /* Larger margin-bottom to separate the content from the image */
}

.grid-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px; /* Added more space between the content and the image */
}
        /* Responsive Design */
        @media (max-width: 768px) {
            .grid-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            header h1 {
                font-size: 2rem;
            }

            header p {
                font-size: 1rem;
            }
        }




.grid-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .grid-item {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .grid-item img {
           width: 100%; /* Adjust the width to 80% of the container */
    height: auto; /* Maintain aspect ratio */
   
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto; /* Center the image */
        }

        .grid-item h2 {
            font-size: 1.5rem;
            color: #005b96;
            margin-bottom: 15px;
        }

        .grid-item p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 20px;
        }

        .read-more {
            display: none;
            margin-top: 10px;
        }

        .read-more-btn {
            background-color: #005b96;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
        }

        .read-more-btn:hover {
            background-color: #004080;
        }

        /* Call to Action Section */
        .cta {
            text-align: center;
            background-color: #005b96;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }

        .cta a {
            background-color: white;
            color: #005b96;
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }

        .cta a:hover {
            background-color: #004080;
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .grid-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            header h1 {
                font-size: 2rem;
            }

            header p {
                font-size: 1rem;
            }
        }

.services {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-item {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .service-item img {
            width: 80%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .service-item h3 {
            font-size: 1.8rem;
            color: #005b96;
            margin-bottom: 15px;
        }

        /* Process Section */
        .process-step {
            margin-bottom: 30px;
        }

        .process-step h4 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #005b96;
        }

        .process-step p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: #f1f1f1;
            padding: 50px 20px;
        }

        .testimonial-item {
            margin-bottom: 20px;
        }

        .testimonial-item p {
            font-style: italic;
            color: #333;
        }

        .testimonial-item h4 {
            margin-top: 10px;
            color: #005b96;
        }

        /* Call to Action Section */
        .cta {
            background-color: #005b96;
            color: white;
            text-align: center;
            padding: 40px 20px;
        }

        .cta a {
            background-color: white;
            color: #005b96;
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.2rem;
            transition: background-color 0.3s ease;
        }

        .cta a:hover {
            background-color: #004080;
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .services {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }


















@media screen and (max-width: 900px) {
  header.show-mobile-menu::before {
    content: "";
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    backdrop-filter: blur(5px);
  }

  .navbar .menu-links {
    height: 100vh;
    max-width: 250px;
    width: 100%;
    background: #fff;
    position: fixed;
    left: -300px;
    top: 0;
    display: block;
    padding: 75px 40px 0;
    transition: left 0.2s ease;
  }

  header.show-mobile-menu .navbar .menu-links {
    left: 0;
  }/* Style for the mobile link drop-down menu */
.navbar .menu-links .dropdown {
    position: relative;
    display: block;
}




  .navbar .menu-links li {
    margin-bottom: 30px;
  }

  .navbar .menu-links li a {
    color: #000;
    font-size: 13 px;
  }

  .navbar .menu-links .join-btn a {
    padding: 150;
  }
  .navbar .menu-links .join-btn a:hover {
    color: #4888EA;
    background: none;
  }

 
 
	.section-container {
		
    display: flex;
    flex-direction: column; /* Stack items vertically on small screens */
    align-items: center; /* Center items horizontally */
    background-color: none; /* Assuming transparent */
    border: outset;
    border-color: steelblue;
    border-radius: 5px;
    max-width: 95%;
    margin: 0 auto; /* Center the container horizontally */
    padding: 20px;
}

.image-container {
    width: 200%; /* Full width on small screens */
    max-width: 100%; /* Maximum width for flexibility */
   

  }

.image-container img {
    width: 100%; /* Ensure image fills its container */
    height: auto;
    border-radius: 3px; /* Rounded corners */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    background: #ffffff; /* White background */
	
  transition: all 0.3s ease;
}

.content-container {
    width: 100%; /* Full width on small screens */
    max-width: 100%; /* Maximum width */
    padding: 20px; /* Adjusted padding */
    margin-top: 20px; /* Space between image and content */
    border: outset;
    border-color: steelblue;
    border-radius: 3px;
    background-color: none; /* Assuming transparent */
    color: black;
}

h2 {
    font-size: 40px;
    margin-bottom: 20px; /* Adjusted margin */
    color: black;
}

h3 {
	
	font-size: 35px;
    margin: 20px 0;
}

p {
    font-size: 25px;
    line-height: 1.5;
    color: black;
}
	
	.section-container1 {
		
    display: flex;
    flex-direction: column; /* Stack items vertically on small screens */
    align-items: center; /* Center items horizontally */
    background-color: none; /* Assuming transparent */
    border: outset;
    border-color: steelblue;
    border-radius: 5px;
    max-width: 95%;
    margin: 0 auto; /* Center the container horizontally */
    padding: 20px;
}

.image-container1 {
    width: 200%; /* Full width on small screens */
    max-width: 100%; /* Maximum width for flexibility */
   

  }

.image-container1 img {
    width: 100%; /* Ensure image fills its container */
    height: auto;
    border-radius: 3px; /* Rounded corners */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    background: #ffffff; /* White background */
	
  transition: all 0.3s ease;
}

.content-container1 {
    width: 100%; /* Full width on small screens */
    max-width: 100%; /* Maximum width */
    padding: 20px; /* Adjusted padding */
    margin-top: 20px; /* Space between image and content */
    border: outset;
    border-color: steelblue;
    border-radius: 3px;
    background-color: none; /* Assuming transparent */
    color: black;
}

h2 {
    font-size: 40px;
    margin-bottom: 20px; /* Adjusted margin */
    color: black;
}

h3 {
	
	font-size: 35px;
    margin: 20px 0;
}

p {
    font-size: 25px;
    line-height: 1.5;
    color: black;
}

@media only screen and (min-width: 600px) {
    .section-container {
        flex-direction: column; /* Revert to horizontal layout on larger screens */
        justify-content: center; /* Center items horizontally */
    }

    .content-container {
        margin-top: 20px; /* Reset margin top */
        margin-left: 5px; /* Space between image and content */
        max-width: 95%; /* Limit content width on larger screens */
    }
}
	
/* Styles for mobile and tablets */
@media only screen and (max-width: 1023px) {
  .slider-wrapper .slide-button {
    display: none !important;
  }
   .slider-wrapper .image-list {
        gap: 10px; /* Adds spacing between images */
        margin-bottom: 15px; /* Adds bottom margin to image list */
        overflow-x: auto; /* Enables horizontal scrolling */
        white-space: nowrap; /* Prevents wrapping of inline elements */
        scroll-snap-type: x mandatory; /* Enables mandatory horizontal scrolling */
    }
    
    .slider-wrapper .image-list .image-item {
        width: 280px; /* Sets width of each image item */
        height: 380px; /* Sets height of each image item */
        display: inline-block; /* Ensures images display inline */
        scroll-snap-align: center; /* Centers each image item when scrolling */
    }
    
    .slider-scrollbar .scrollbar-thumb {
        width: 20%; /* Sets width of scrollbar thumb */
        background-color: #ccc; /* Background color of scrollbar thumb */
        border-radius: 10px; /* Rounds corners of scrollbar thumb */
    }
}
	
	
	
	.wrapper {
		margin-top:20%;
  margin-left: 3%; /* Adjusted margin for smaller screens */
		 margin-right: 3%;
			  margin-bottom: 3%;
  max-width: 120%; /* Increased maximum width for better fit */
  display: flex;
  flex-wrap: wrap; /* Allowing cards to wrap on smaller screens */
  justify-content: space-between/* Adjusted spacing for better alignment */
}

.wrapper .cart-nav {
  display: none; /* Hide cart navigation on smaller screens */
}

.wrapper .card {
  background: lightgrey;
  border-radius: 4px;
  width: calc(90% - 30px); /* Adjusted card width for smaller screens */
  margin-bottom: 20px; /* Added margin between cards */
	margin-left: 40px;
	
}

.wrapper .card img {
  width: 100%;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.card:hover img {
  transform: scale(1.1);
}


  .hero-section {
    background: none;
	  margin-bottom: 5%;
  }

  .hero-section .content {
    margin: 0 auto 80px;
  }

  .hero-section .content :is(h1, .search-form) {
    max-width: 100%;
  }

  .hero-section .content h1 {
    text-align: center;
    font-size: 2.5rem;
    line-height: 55px;
  }

  .hero-section .search-form {
    display: block;
    margin-top: 20px;
  }

  .hero-section .search-form input {
    border-radius: 4px;
  }
  
  .hero-section .search-form button {
    margin-top: 10px;
    border-radius: 4px;
    width: 100%;
  }

  .hero-section .popular-tags {
    display: none;
  }
	
	height: 100vh;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(45deg,#d8f2f3 0%,#ebf9f9 100%);
}




	
	
	
	
	

main {
  flex: 1; /* Allow the main content to grow and take available space */
}

.footer {
  background-color: #005b96;
  padding: 40px 20px;
  color: #fff;
  text-align: left;
  width: 100%; /* Ensures it spans the full width of the page */
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer .footer-col {
  flex: 1 1 250px;
  padding: 20px;
}

.footer .footer-col h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer .footer-col .links {
  margin-top: 20px;
}

.footer .footer-col .links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer .footer-col .links li a {
  text-decoration: none;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.footer .footer-col .links li a:hover {
  color: #E4E2E2;
}

.footer .footer-col p {
  margin: 20px 0;
  color: #fff;
  max-width: 300px;
}

.footer .footer-col form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer .footer-col input {
  height: 40px;
  border-radius: 6px;
  background-color: #fff;
  width: 70%;
  outline: none;
  border: 1px solid #7489C6;
  color: #000;
  padding-left: 10px;
}

.footer .footer-col input::placeholder {
  color: #ccc;
}

.footer .footer-col form button {
  background: #000000;
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
  color: #fff;
}

.footer .footer-col form button:hover {
  background: #cecccc;
}

.footer .footer-col .icons {
  display: flex;
  margin-top: 30px;
  gap: 20px;
  justify-content: center;
}

.footer .footer-col .icons i {
  font-size: 1.2rem;
  color: #afb6c7;
  transition: color 0.3s ease;
}

.footer .footer-col .icons i:hover {
  color: #fff;
}

/* Media Queries for Mobile and Tablet */
@media (max-width: 1024px) {
  .footer .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .footer .footer-col {
    max-width: 100%;
    text-align: center;
  }

  .footer .footer-col form {
    flex-direction: column;
    align-items: center;
  }

  .footer .footer-col input {
    width: 100%;
  }

  .footer .footer-col form button {
    width: 100%;
  }

  .footer .footer-col .icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 15px;
  }

  .footer .footer-col {
    padding: 10px 0;
  }

  .footer .footer-col h4 {
    font-size: 0.9rem;
  }
}

.footer .newsletter-form form {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  max-width: 500px;
}

.footer .newsletter-form input[type="text"] {
  flex-grow: 1;
  height: 45px;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #7489C6;
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  outline: none;
}

.footer .newsletter-form input[type="text"]::placeholder {
  color: #ccc;
}

.footer .newsletter-form button[type="submit"] {
  height: 35px; /* Reduced height */
  padding: 0 15px; /* Reduced padding */
  background-color: #f0f0f0; /* Light gray */
  color: #333; /* Dark gray text for readability */
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem; /* Slightly smaller font size */
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer .newsletter-form button[type="submit"]:hover {
  background-color: #d9d9d9; /* Slightly darker on hover */
  transform: scale(1.05); /* Slight scale-up for interaction feedback */
}

/* Icons section for social media */
.footer .icons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 25px;
}

.footer .icons i {
  font-size: 1.2rem;
  color: #afb6c7;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer .icons i:hover {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer .newsletter-form form {
    flex-direction: column;
    max-width: 100%;
  }

  .footer .newsletter-form input[type="text"],
  .footer .newsletter-form button[type="submit"] {
    width: 100%;
  }

  .footer .icons {
    justify-content: center;
  }
}