/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");


/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #0b8c9f;
  --second-color: hsl(270, 12%, 35%);
  --third-color: hsl(0, 37%, 57%);
  --fourth-color: hsla(291, 78%, 48%, 0.971);
  --fifth-color: hsl(37, 52%, 60%);
  --sixth-color: rgb(133, 117, 12);
  --first-gradient: linear-gradient(90deg,
                  hsl(0, 0%, 0%),
                  hsl(216, 74%, 34%));
  --title-color: hsl(240, 100%, 0%);
  --text-color: hsl(0, 0%, 100%);
  --text-color-light: hsl(0, 0%, 99%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(0, 0%, 100%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);
  --gray-border: hsl(0, 0%, 0%);
  --black-border: hsl(0, 0%, 0%);
  --home-page-color: linear-gradient(90deg, #cdffd8, #94b9ff);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --big-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*========== Responsive typography ==========*/
@media screen and (max-width: 480px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 480px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 768px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(hwb(0 4% 42%));
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}
.section__title, 
.section__subtitle {
  text-align: center;
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
}

.section__subtitle {
  display: block;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--second-color);
  margin-bottom: .5rem;
}

.main {
  overflow: hidden;
}

/*..........for flotting direct whatsapp chat.........*/
.whatsapp-float {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #25D366;
  color: #fff;
  padding: 6px 10px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: background 0.3s, padding 0.3s;
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
  margin-right: 6px;
}

.whatsapp-float:hover {
  background: #20b955;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}


/* Responsive: Hide text on small devices */
@media (max-width: 480px) {
  .whatsapp-float {
    padding: 8px;
  }

  .whatsapp-float .whatsapp-text {
    display: none;
  }
}

/* Responsive: Hide text on small devices */
@media (max-width: 768px) {
  .whatsapp-float {
    padding: 8px;
  }

  .whatsapp-float .whatsapp-text {
    display: none;
  }
}


/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #0C3B65;
  z-index: var(--z-fixed);
  transition: background-color .4s;
}

.nav{
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  width: 100px;
  height: auto;
  margin-top: 55px;
  border-radius: 100px;
  cursor: pointer;
}




.nav__toggle,
.nav__close {
  font-size: 1.5rem;
  color: #0b8c9f;
  cursor: pointer;
  transition: color 0.4s;
}

/* NAV MENU */
.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__link,
.dropdown__toggle {
  text-decoration: none;
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover,
.dropdown__toggle:hover {
  color: var(--first-color);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
  padding: 10px;
  transition: color 0.3s ease;
}

.dropdown__toggle:hover {
  color: var(--first-color);
}


.dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgb(255, 255, 255);
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 100;
}

.dropdown:hover > .dropdown__menu {
  display: block;
}

.dropdown__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

/* Category Items */
.dropdown__menu > li {
  position: relative;
}

.dropdown__menu  li  a {
  display: flex;
  padding: 10px 15px;
  color: var(--black-color);
  text-decoration: none;
  font-weight: 500;
}

.dropdown__menu  li  a:hover {
  background-color: #f5f5f5;
  color: var(--first-color);
}

.dropdown__menu > li > .dropdown__toggle,
.dropdown__menu  li  a {
  display: flex;
  padding: 10px 15px;
  font-weight: var(--font-semi-bold);
  color: var(--black-color);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.dropdown__menu > li > .dropdown__toggle:hover,
.dropdown__menu li a:hover {
  color: var(--white-color);          /* change text color */
  background-color: var(--first-color); /* add background highlight */
  border-radius: 1px;                 /* smooth corners */
  text-decoration: none;              /* remove underline */
  font-weight: 500;                   /* slight emphasis */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* floating effect */
  transition: all 0.3s ease;          /* smooth animation */
  transform: translateX(3px);         /* subtle movement */
}

/* Sub-dropdown */
.sub-dropdown {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: var(--white-color);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 101;
}

.dropdown__menu li:hover > .sub-dropdown {
  display: block;
}

.sub-dropdown li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--black-color);
  font-weight: 500;
}

.sub-dropdown li a:hover {
  background-color: #f0f0f0;
  color: var(--first-color);
}

/* General link reset */
.dropdown__link {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: color 0.3s;
}

.dropdown__link:hover,
.dropdown__link:focus {
  color: var(--first-color); /* Your theme color */
  text-decoration: none;
}



/* ARROW */
.arrow {
  margin-left: 5px;
  font-size: 0.6rem;
}

/* NAV TOGGLE */
.nav__close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* MOBILE NAV */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    background-color:#86b8c8;
    width: 80%;
    height: 100%;
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    border-left: 2px solid var(--white-color);
    transition: right 0.4s;
    z-index: 100;
  }

  .nav__list {
    flex-direction: column;
    width: 100%;
    row-gap: 1.5rem;
  }

  .show-menu {
    right: 0;
  }

  .nav__close {
    display: block;
  }

  .dropdown__menu,
    .sub-dropdown {
      display: none;
      position: static;
      background-color: transparent;
      box-shadow: none;
      padding-left: 1.5rem;
    }
  
    .dropdown__menu.show {
      display: block;
    }
  
    .sub-dropdown.show {
      display: block;
      padding-left: 2rem;
    }
  
    /* Optional: better touch spacing */
    .dropdown__menu li a,
    .dropdown__toggle {
      padding: 0.75rem 1.5rem;
      display: block;
      width: 100%;
      color: var(--text-color);
      background-color: transparent;
    }
  }
  

/*=============== HOME ===============*/
.home{
  position: relative;
  background: var(--home-page-color);
}

.home__container{
  position: relative;
  row-gap: 3rem;
  padding-block: 2.5rem 6rem;
}

.home__contect{
  row-gap: 2.5rem;
}

.home__data{
  text-align: center;
}
.home__title{
  color: var(--first-color);
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}

.home__description{
  margin-bottom: 2.5rem;
  color: var(--black-color);
}

.home__buttons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.home__info{
  display: flex;
  justify-content: center;
  column-gap: 4.5rem;
}

.home__info-title{
  color: var(--second-color);
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  margin-bottom: .5rem;
}

.home__info-description{
  font-size: var(--small-font-size);
  color: var(--black-color);
}

.home__images{
  position: relative;
  justify-content: center;
}

.home__img-1{
  width: 270px;
  margin-left: 3.5rem;
}

.home__img-2{
  width: 180px;
  border: 3px solid var(--white-color);
  position: absolute;
  left: 0;
  bottom: -3.5rem;
}

.home__lines{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
/*=============== BUTTON ===============*/
.button{
  display: inline-flex;
  background: var(--first-gradient);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1rem 2rem;
  transition: box-shadow .4s;
}

.button:hover{
  box-shadow: 0 8px 32px hsla(18, 95%, 55%, 0.3);
  color: var(--white-color);
}

.button__link{
  display: flex;
  align-items: center;
  column-gap: .25rem;
  color: var(--first-color);
}

.button__link span{
  font-weight: var(--font-semi-bold);
}

.button__link i{
  font-size: 1.5rem;
  transition: transform .4s;
}

.button__link:hover i{
  transform: translateX(.25rem);
}
/*=============== ABOUT ===============*/
.about{
  background-color:rgb(32, 32, 32);
}
.about__container{
  row-gap: 8rem;
}

.about__data{
  text-align: justify;
}

.section__subtitle_about{
  color: var(--sixth-color);
  text-align: center;
}

.section__title{
  color: var(--white-color);
}

.about__description{
  margin-bottom: 2rem;
  color: var(--white-color);
  text-align: justify;
}

.about__list{
  text-align: initial;
  grid-template-columns: repeat(2,130px);
  justify-content: justify;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about__list-item{
  display: flex;
  column-gap: .5rem;
  color: var(--sixth-color);
}

.about__list-item i{
  font-size: 1.25rem;
  color: var(--sixth-color);
}

.about__images{
  position: relative;
  justify-self: center;
}

.about__img-1{
  width: 700px;
  border: 1px solid var(--body-color);
  position: absolute;
  top: -5rem;
  left: 6rem;
}

.about__img-2{
  width: 250px;
  margin-right: 2.5rem;
}


/*=============== About Button ===============*/
.button_about {
  display: inline-block;
  padding: 16px 24px;
  background-color: var(--sixth-color); /* Primary button color */
  color: #fff; /* Text color */
  font-size: 16px;
  font-weight: var(--font-semi-bold);
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button_about:hover {
    box-shadow: 0 18px 32px hsla(114, 80%, 61%, 0.3);
    color: var(--white-color);
}

.button_about:active {
  background-color: #bf360c; /* Even darker shade when clicked */
  transform: scale(0.98); /* Slight shrink effect */
}

/*==================== SERVICES ====================*/




.services__card {
    background-color:#ffffff;
    border: 2px solid var(--gray-border);
    padding:  2rem 1rem 3.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 z4px 16px rgba(0, 0, 0, .1);
    transition: all .3s ease;
    max-width: 200 px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;  
}


 .services__icon{
    width: 70px;
    height: 70px;
    background-color: var(--black-color);
    color: var(--white-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }


.services{
  position: relative;
  padding: 2rem;
  background:linear-gradient(0deg, #62bfd4, #f1dd76);
}


.section__title{
  color: var(--black-color);
  text-align: center;
}

.section__subtitle{
  color: var(--first-color);
  text-align: center;
}
 

  .services__title{
    font-size: var(--h2-font-size);
    margin-bottom: .5rem;
    text-align: center;
  }


/* Swiper class */
.swiper{
  margin-inline: initial;
  padding-bottom: 4rem;
}

.swiper-button-prev::after,
.swiper-button-next::after{
  content: '';
}

.swiper-button-prev,
.swiper-button-next{
  top: initial;
  bottom: 0;
  width: 32px;
  height: 32px;
  background-color: var(--container-color);
  box-shadow: 0 2px 8px hsla(255, 8%, 4%, .1);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--title-color);
}

.swiper-button-prev{
  left: calc(50% -3rem);
}

.swiper-button-next{
  right: calc(50% -3rem);
}


/*=============== PROJECTS SECTION ===============*/
.projects {
  padding: 4rem 1rem;
  background:linear-gradient(45deg, #f3b0f2, #fdf5b9);

}

.projects .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__subtitle {
  display: block;
  text-align: center;
  color: #007bff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.section__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #222;
}

/* Swiper */
.project__swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.project__card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.project__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project__data {
  padding: 1.5rem;
  text-align: center;
}

.project__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #007bff;
}

.project__desc {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.6;
}

/* Custom Circular Buttons */
.custom-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #00c4ff);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
}

.custom-btn:hover {
  background: linear-gradient(135deg, #0056b3, #0091ff);
  transform: scale(1.1);
  box-shadow: 0 5px 12px rgba(0, 123, 255, 0.4);
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none; /* Hide default Swiper arrows */
}

.swiper-button-prev {
  left: -5px;
}

.swiper-button-next {
  right: -5px;
}

/* Pagination */
.swiper-pagination-bullet {
  background: #007bff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .project__image {
    height: 200px;
  }
  .project__title {
    font-size: 1.1rem;
  }
  .project__desc {
    font-size: 0.9rem;
  }
  .custom-btn {
    width: 36px;
    height: 36px;
  }
  .custom-btn svg {
    width: 14px;
    height: 14px;
  }
}

/*=============== PRODUCTS ===============*/
.products {
  background-color: var(--third-color);
  padding-block: 3rem;
}

.products .section__title {
  color: var(--fourth-color);
  text-align: center;
}

.products__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding-block: 1.5rem 3rem;
}

.products__card {
  background-color: var(--container-color);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.products__card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-color: var(--fourth-color);
}

.products__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.products__data {
  padding: 1.5rem;
  text-align: center;
}

.products__title {
  font-size: var(--h2-font-size);
  margin-bottom: 0.5rem;
  color: var(--title-color);
}

.products__link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--first-color);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.products__link:hover {
  color: var(--first-color-light);
}

/* Responsive Design */
@media (max-width: 480px) {
  .products__container {
      grid-template-columns: 1fr;
      background-color: #86b8c8;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .products__container {
      grid-template-columns: 1fr;
      background-color: #86b8c8;
  }
}
/*=============== CONTACT ===============*/

.contact__container{
  row-gap: 2rem;
  padding-block: 1.5rem 3rem;
  
  
}

.contact__img{
  width: 400px;
  justify-self:auto;
}

.contact__data{
  grid-template-columns: 300px;
  justify-content: center;
  row-gap: 1.5rem;
}

.contact__card{
  background-color: var(--container-color);
  border: 2px solid var(--gray-border);
  padding: 1rem 1rem;
  text-align: center;
  transition: border-color .4s;
  justify-self:auto;
}

.contact__card:hover{
  border-color: var(--first-color);
}

.contact__icon{
  width: 48px;
  height: 48px;
  background-color: var(--black-color);
  color: var(--white-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
}

.contact__title{
  font-size: var(--h2-font-size);
  margin-bottom: .5rem;
}

.contact__info{
  font-style: normal;
}

.contact__social{
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}

.contact__social-link{
  font-size: 1.5rem;
  color: var(--first-color);
  transition: transform .4s;
}

.contact__social-link:hover{
  transform: translateY(-.25rem);
}

/*============email form========*/
.subscribe__section {
  padding: 1.5rem;
  background: linear-gradient(45deg, #e0f7fa, #f1f8e9);
  text-align: center;
  box-shadow: 0 4px 16px hsla(210, 4%, 15%, .05);
}

.subscribe__title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #0b8c9f;
}

.subscribe__form {
  max-width: 600px;
  margin: auto;
}

.input-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-input {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.contact-input:focus {
  border-color: #0b8c9f;
  outline: none;
}

.subscribe__btn {
  margin-top: 1rem;
  padding: 0.9rem 1.5rem;
  background: #0b8c9f;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe__btn:hover {
  background: #ffffff;
  color: #0b8c9f;
  font-weight: bold;
  border:2px solid #0b8c9f;
}







/*=============== FOOTER ===============*/
/* ==================== FOOTER ==================== */
.footer {
  background-color: #0f172a;
  color: #f1f5f9;
  padding: 4rem 0 2rem;
  font-family: "Poppins", sans-serif;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.footer__logo img {
  display: inline-flex;
  width: 250px;
  margin-bottom: 1rem;
}

.footer__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 1rem;
  max-width: 250px;
  text-align: justify;
}

.footer__email {
  color: #38bdf8;
  font-style: normal;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: medium;
}

.footer__email:hover {
  color: #fbbf24;
}

/* ============ Footer Content Grid ============ */
.footer__content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer__sub_title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #63dbff;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__link {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #38bdf8;
}

.footer__info {
  color: #cbd5e1;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer__social-link {
  color: #38bdf8;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: #38bdf8;
  color: #0f172a;
  transform: translateY(-3px);
}

/* Footer Copy */
.footer__copy {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 992px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .footer__description {
    max-width: 100%;
  }

  .footer__social {
    justify-content: center;
  }
}


/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  background-color: hsl(255, 5%, 75%);
}

::-webkit-scrollbar-thumb{
  background-color: hsl(255, 5%, 65%);
}

::-webkit-scrollbar-thumb:hover{
  background-color: hsl(255, 5%, 55%);
}

/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: 0 4px 16px hsla(255, 90%, 8%, .15);
  color: var(--title-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
}

.scrollup:hover{
  transform: translateY(-.5rem);
}

/* Show Scroll Up */
.show-scroll{
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 480px){
  .container{
    margin-inline: 1rem;
  }

  .section__title{
    font-size: 1.25rem;
  }

  .home__title{
    font-size: 1.75rem;
  }

  .home__buttons{
    flex-direction: column;
  }

  .home__img-1{
    width: 200px;
    margin-top: 1.5rem;
  }

  .about__list{
    grid-template-columns: repeat(1, 200px);
  }

  .about__img-1{
    width: 150px;
    left: 4rem;
  }

  .about__img-2{
    width: 200px;
    margin-right: 0;
  }

  .footer__content{
    grid-template-columns: repeat(1, max-content);
  }
}

/* For medium devices */
@media screen and (min-width: 540px){
  .home__container,
  .about__container,
  .services__container,
  .projects__container,
  .contact__container{
    grid-template-columns: auto;
    justify-content: center;
  }

  .footer__content{
    grid-template-columns: repeat(3, max-content);
  }
}

@media screen and (max-width: 480px){
    .nav__menu{
      width: 70%;
    }

    .projects__container{
      grid-template-columns: repeat(3, 300px);
    }

    .contact__data{
      grid-template-columns: repeat(2, 240px);
    }

    .contact__container{
    grid-template-columns: 400px;
    justify-content: center;
  }

  .contact__data{
  grid-template-columns: 300px;
  justify-content: center;
  row-gap: 1.5rem;
}

    .footer__container{
      grid-template-columns: repeat(2, max-content);
      justify-content: space-between;
    }
  }

  @media screen and (min-width: 768px){
    .nav__menu{
      width: 50%;
    }

    .projects__container{
      grid-template-columns: repeat(3, 300px);
    }

    .contact__data{
      grid-template-columns: repeat(2, 240px);
    }

    .footer__container{
      grid-template-columns: repeat(2, max-content);
      justify-content: space-between;
    }
  }

/* For large devices */
@media screen and (min-width: 1150px){
  .container{
    margin-inline: auto;
  }

  .section{
    padding-block: 7rem 2rem;
  }

  .nav{
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle,
  .nav__close{
    display: none;
  }

  .nav__menu{
    width: initial;
  }

  .nav__list{
    flex-direction: row;
    align-items: center;
    column-gap: 4rem;
  }

  .bg-header .nav__link{
    color: var(--text-color);
  }

  .bg-header .active-link,
  .bg-header .nav__link:hover{
    color: var(--first-color);
  }

  .bg-header .button,
  .bg-header .button:hover{
    color: var(--white-color);
  }

  .home__container{
    grid-template-columns: 475px 550px;
    column-gap: 6rem;
    align-items: flex-start;
    padding-top: 5.5rem;
  }

  .home__content{
    row-gap: 4.5rem;
  }

  .home__data{
    text-align: initial;
  }

  .home__description{
    margin-bottom: 3rem;
  }

  .home__buttons{
    justify-content: initial;
    column-gap: 5.5rem;
  }

  .home__info{
    justify-content: initial;
    column-gap: 5.5rem;
  }

  .home__info-description{
    font-size: var(--normal-font-size);
  }

  .home__img-1{
    width: 550px;
    margin-left: 0;
  }

  .home__imag-2{
    width: 350px;
    border-width: 10px;
    left: -7rem;
    bottom: -8rem;
  }

  .home__lines{
    object-position: center;
  }

  .about__container{
    grid-template-columns: repeat(2, 480px);
    column-gap: 9rem;
    padding-block: 9rem 2rem;
    background-color: #62bfd4;
  }

  .about__images{
    order: -1;
  }

  .about__img-1{
    width: 370px;
    border-width: 10px;
    top: -9rem;
    left: 11rem;
  }

  .about__img-2{
    width: 470px;
  }

  .about__data,
  .about__data :is(.section__title, .section__subtitle){
    text-align: initial;
  }

  .about__list{
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3.5rem;
  }

  .services__container{
    grid-template-columns: initial;
    row-gap: 5rem;
    padding-bottom: 4.5rem;
  }

  .services__data{
    display: grid;
    grid-template-columns: 415px 370px max-content;
    justify-content: space-between;
    align-items: center;
  }


  .services_data :is(.section__title, .section__subtitle),
  .services__description{
    text-align: initial;
  }

  .services_data .section__title{
    margin-bottom: 0;
  }

  .services_swiper{
    max-width: 1100px;
  }

  
  .services_card{
    width: 348px;
    border-width: 3px;
    padding: 3.5rem 2rem 6rem;
  }

  .services__shape{
    height: 330px;
  }

  .swiper-button-next,
  .swiper-button-prev{
    bottom: 3rem;
    }

    .project__container{
      grid-template-columns: repeat(3, 350px);
      column-gap: 2rem;
      padding-block: 5rem 4rem;
    }

    .projects__card{
      border-width: 3px;
    }

    .projects__data{
      padding: 2rem 1.5rem 4rem;
    }

    .contact :is(.section__title, .section__subtitle){
      text-align: center;
    }

    .contact__container{
      grid-template-columns: 530px 515px;
      justify-content: initial;
      align-items: flex-start;
      column-gap: 3.5rem;
      padding-block: 3.5rem;
    }

    .contact__img{
      width: 530px;
    }

    .contact__data{
      gap: 2rem;
    }

    .contact__card{
      border-width: 3px;
    }

    .contact__title{
      font-size: var(--h3-font-size);
    }

    .footer{
      padding-block: 4.5rem 3rem;
    }

    .footer__container{
      padding-bottom: 6rem;
    }

    .footer__content{
      column-gap: 7rem;
    }

    .footer__description{
      margin-block: 1.5rem;
    }

    .footer__title{
      margin-bottom: 1.5rem;
    }

    .footer__links,
    .footer__list{
      row-gap: 1rem;
    }

    .scrollup{
      right: 3rem;
    }
}











/* Subscription Box */

.email-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  width: 100%;
}

.email-content p {
  font-size: 14px;
  font-weight: 500;
  color: #0b8c9f;
  margin-bottom: 10px;
}

/* Input and button container - Vertical layout */
.input-box {
  display: flex;
  flex-direction: column; /* Now in vertical column */
  align-items: center;
  justify-content: center;
  width: 300px;
  max-width: 360px;
  margin-top: 20px auto;
  gap: 8px; /* Space between inputs */
}

/* Input fields and Textarea */
.contact-input {
  width: 280px;
  height: 40px;
  outline: none;
  border: 1px solid #0b8c9f;
  border-radius: 4px;
  background-color: rgba(17, 16, 16, 0);
  font-weight: 400;
  padding: 0 15px;
  color: #0b8c9f;
}

.contact-input::placeholder {
  color: rgba(106, 103, 103, 0.7);
}

/* Textarea */
textarea.contact-input {
  height: 80px;
  resize: none;
  padding-top: 10px;
}

/* Button */
.input-box button {
  width: 200px;
  height: 40px;
  cursor: pointer;
  color: #ffffff;
  padding: 10px;
  transition: all 0.3s ease;
  background: #0b8c9f;
  border: none;
  border-radius: 4px;
}

.input-box button:hover {
  background-color: #000000;
  color: #0b8c9f;
}


/*This is the additional code*/
.products__card-link {
  text-decoration: none;
  color: inherit;
  display: block; 
}

.products__card-link:hover {
  opacity: 0.9;
}

#sec {
  color: white;
}


#sec:hover {
  color: #ffda47; /* Changes to yellow on hover */
  transition: color 0.3s ease; /* Smooth transition */
}

