/*================================HOME CSS=================================*/

*{
    margin: 0;
    padding: 0;   
    box-sizing: border-box;
}

/* NAVBAR STYLING */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 2em;
  background-color: rgb(89, 194, 236);
  position: relative;
}

.logo img {
  display: block;
}

.nav-links {
  display: flex;
  gap: 8em;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: rgb(244, 244, 149);
}

/* CART ICON BADGE */
.cart-icon {
  position: relative;
  cursor: pointer;
}

.cart-icon::after {
  content: attr(data-count);
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 10px;
  height: 18px;
  padding: 0 5px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: red;
  color: white;
  font-weight: bold;
}

/* MENU TOGGLE (HIDDEN ON DESKTOP) */
.menu-toggle {
  display: none;
  cursor: pointer;
}

/* RESPONSIVE STYLING */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1em;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    gap: 1em;
    display: none; /* hidden initially */
    margin-top: 1em;
    background-color: rgb(89, 194, 236);
    padding: 1em 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }
}

 /*====== box 1 =======*/
/* Base styles (desktop) */
.box1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url(/Assets/images/watch-banner-3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 25em;
  padding: 2rem;
}

.box1 .box1_par {
  flex: 1;
  text-align: center;
}

.box1 p {
  color: #020C8D;
  font-size: 2.5em;
  font-weight: 300;
  margin-bottom: 1rem;
}

.box1 button {
  padding: 1rem 3rem;
  border: none;
  font-size: 1rem;
  color: #fff;
  background-color: rgb(89, 194, 236);
  border-radius: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.box1 button:hover {
  background-color: rgb(33, 33, 113);
}

.box1 img {
  max-width: 450px;
  height: auto;
}

/* Typing effect */
#box1-typed {
  display: inline-block;
  border-right: 2px solid #020C8D;
  animation: blink-caret 0.7s steps(1) infinite;
  color: #020C8D;
  font-size: 1.1em;
  font-weight: 100;
  text-align: center;
  transition: filter 0.3s linear;
}

@keyframes blink-caret {
  0%, 100% { border-color: transparent; }
  50% { border-color: #020C8D; }
}

/* Responsive styles */
@media (max-width: 992px) {
  .box1 {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 2rem 1rem;
  }

  .box1 img {
    max-width: 80%;
    margin-top: 2rem;
  }

  .box1 p {
    font-size: 2em;
  }

  .box1 button {
    margin-top: 1.5rem;
  }
}

@media (max-width: 600px) {
  .box1 p {
    font-size: 1.5em;
  }

  .box1 button {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
}


/*======== box 2 ======*/
.box2 {
  text-align: center;
  padding: 60px 20px;
  background-color: rgb(245, 244, 244);
}

.box2 h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: rgb(89, 194, 236);
  font-weight: 600;
}

.box2 .intro-text {
  font-size: 1.1em;
  color: #444;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.profile_cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 25px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.card img.proimg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.3em;
  margin: 12px 0;
  color: #333;
}

.card p {
  font-size: 0.95em;
  color: #666;
  line-height: 1.5;
}


/*======= box 3 ========*/
.box3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
  flex-wrap: wrap;
  gap: 30px;
}

.box3 .par_content {
  max-width: 50%;
}

.box3 .par_content h2 {
  font-size: 3em;
  color: rgb(89, 194, 236);
}

.box3 .par_content p {
  font-size: 1.2em;
  color: #555;
  margin-top: 10px;
  font-weight: 300;
  line-height: 1.6;
}

/* Custom list styling */
.box3 .par_content ul {
  margin-top: 15px;
  padding-left: 0;
}

.box3 .par_content li {
  list-style: none;
  margin: 8px 0;
  font-size: 1.1em;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.box3 .par_content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: rgb(89, 194, 236);
  font-weight: bold;
}

#s_img {
  width: 400px;
  height: auto;
  flex-shrink: 0;
}

.box3 .par_content button {
  margin: 20px 0 0;
  padding: 1rem 3rem;
  border: none;
  font-size: 1rem;
  color: #fff;
  background-color: rgb(89, 194, 236);
  border-radius: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.box3 .par_content button:hover {
  background-color: rgb(33, 33, 113);
}

/* Responsive */
@media (max-width: 768px) {
  .box3 {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .box3 .par_content {
    max-width: 100%;
  }

  #s_img {
    width: 90%;
    margin: 0 auto;
  }
}


/*======= box 4 =========*/
.box4 {
  flex-wrap: wrap;
  background-color: rgb(245, 244, 244);
  padding: 2em;
}

.box4-intro {
  display: flex;
  justify-content: space-between; /* replaces fixed gap */
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2em;
}

.box4-intro h2 {
  font-size: 2.5em;
  color: rgb(80, 189, 232);
  margin: 0;
}

.intro-btn button {
  padding: 0.8em 2.5em;
  border: none;
  background-color: rgb(80, 189, 232);
  color: white;
  border-radius: 20px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.intro-btn button:hover {
  background-color: rgb(48, 137, 172);
}

.card-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.price_card {
  background-color: white;
  border-radius: 20px;
  padding: 1.5em;
  width: 280px; /* keeps consistent card size */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  animation: slideUp 2s;
}

.price_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.price_card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  margin-bottom: 1em;
}

.price_card p {
  color: red;
  font-size: 1em;
  font-weight: bold;
  margin: 0.5em 0 0.2em;
}

.price_card data {
  font-weight: bold;
  color: rgb(17, 211, 17);
  display: block;
  margin-bottom: 0.5em;
}

.price_card del {
  color: gray;
  font-size: 0.9em;
}

.price_card button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 10px;
  background-color: rgb(80, 189, 232);
  color: white;
  margin-top: 1em;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s ease;
}

.price_card button:hover {
  background-color: rgb(48, 137, 172);
}

.price_card a {
  text-decoration: none;
}
/* Existing styles above remain the same */

/* Responsive adjustments */
@media (max-width: 1024px) {
  .box4-intro {
    flex-direction: column;
    text-align: center;
    gap: 1em;
  }

  .intro-btn button {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .card-price {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }

  .price_card {
    width: 90%; /* take most of screen width */
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .box4-intro h2 {
    font-size: 2em;
  }

  .intro-btn button {
    padding: 0.6em 1.8em;
    font-size: 0.9em;
  }

  .price_card img {
    height: 200px;
  }
}



/*============= box5 ============*/
  .box5 {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #f9fafc, #eef3f8);
}

.box5 .discount {
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.08);
  padding: 50px 40px;
  border-radius: 20px;
  display: inline-block;
  max-width: 600px;
  background: #fff;
  transition: transform 0.3s ease;
}

.box5 .discount:hover {
  transform: translateY(-5px);
}

.box5 .discount h3 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
}

.box5 .discount p {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 15px;
  color: #555;
}

.box5 .discount button {
  padding: 1rem 3rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: #fff;
  background-color: rgb(80, 189, 232);
  border-radius: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 35px;
}

.box5 .discount button:hover {
  background-color: rgb(33, 33, 113);
  transform: scale(1.05);
}


@keyframes slideUp{
  from{transform: translateY(300%);}
}
#backToTopBtn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: #111;
      color: white;
      border: none;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      z-index: 1000;
}
#backToTopBtn:hover {
      background-color: #444;
      transform: scale(1.1);
}

/*========================ABOUT CSS====================*/
 .container-about h1 {
  color: rgb(89, 194, 236);
  font-size: 3.5em;
  text-align: center;
  margin-bottom: 1em;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  margin: 3em auto;
  flex-wrap: wrap;
}

.about-container img {
  width: 380px;
  max-width: 100%;
  border-radius: 10px;
}

.about-content {
  max-width: 600px;
  line-height: 1.6;
}

.about-content button {
  background-color: rgb(89, 194, 236);
  padding: 0.6em 2em;
  border: none;
  color: white;
  border-radius: 5px;
  font-size: 1em;
  margin-top: 1em;
}

.about-content button:hover {
  background-color: rgb(65, 154, 188);
  cursor: pointer;
  transition: 0.3s;
}

#more {
  display: none;
}

/* Grid layout for story section */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  margin: 4em auto;
  max-width: 1200px;
  padding: 0 1.5em;
}

.story-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 2em 1.5em;
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-6px);
}

.story-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1em;
}



/*===========================PRODUCTS CSS============================*/

/* INTRO SECTION */
.intro-content {
  display: block;
  flex-wrap: wrap;
}
.pro-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pro-img img {
  animation: slideUp 2s;
}
.pro-img h1 {
  font-size: 3em;
  color: #444feb;
  animation: slideUp 2s;
}

/* SEARCH AREA */
.search-area {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #f4f3f3;
}
.search-bar {
  display: flex;
  gap: 10px;
  padding: 1rem;
  margin-top: 10px;
}
.search-bar input {
  padding: 8px 12px;
  font-size: 1.2em;
  border-radius: 10px;
  border: 1px solid #ccc;
  animation: slideUp 2s;
}
.search-bar button {
  font-size: 1em;
  padding: 8px 12px;
  background-color: #444feb;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  animation: slideUp 2s;
}
.search-bar button:hover {
  background-color: #3037a5;
}

/* PRODUCT CARDS */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  background-color: #f4f3f3;
  padding: 20px;
}
.pro-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: calc(30% - 20px);
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.2s;
  animation: slideUp 2s;
}
.pro-card:hover {
  transform: translateY(-10px);
}
.pro-card p {
  color: red;
  font-size: 1em;
  font-weight: bold;
}
.pro-card data {
  font-weight: bold;
  color: rgb(89, 194, 236);
}
.pro-card button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 10px;
  background-color: rgb(80, 189, 232);
  color: white;
  cursor: pointer;
}
.pro-card button:hover {
  background-color: rgb(48, 137, 172);
}

/* Modal overlay */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 10000;
}

/* Show state */
.custom-modal.show {
  opacity: 1;
  pointer-events: auto;
}

/* Modal box */
.modal-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  animation: popUp 0.4s ease;
  max-width: 350px;
  width: 90%; /* responsive width */
}

/* Icon */
.modal-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

/* Text */
#modal-message {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
  word-wrap: break-word;
}

/* OK button */
#modal-ok {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #007bff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: auto;
  min-width: 80px;
}

#modal-ok:hover {
  background: #0056b3;
}

/* Animation */
@keyframes popUp {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ✅ Responsive tweaks */
@media (max-width: 600px) {
  .modal-content {
    padding: 20px;
    max-width: 280px;
  }

  .modal-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }

  #modal-message {
    font-size: 16px;
  }

  #modal-ok {
    font-size: 14px;
    padding: 8px 16px;
  }
}


/* BACK TO TOP BUTTON */
#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
#backToTopBtn img {
  width: 40px;
  height: 40px;
}

/* ANIMATIONS */
@keyframes slideUp {
  from { transform: translateY(300%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* RESPONSIVENESS */
@media (max-width: 1200px) {
  .pro-card {
    width: calc(45% - 20px);
  }
}
@media (max-width: 768px) {
  .search-bar {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .pro-card {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .search-bar input {
    font-size: 1em;
  }
  .pro-card img {
    width: 100% !important;
    height: auto;
  }
}


/*=========================CONTACTS(SIGN UP)=============================*/
.form-content {
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin: 30px auto;
  max-width: 900px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.form-content h1 {
  font-size: 2em;
  font-weight: bold;
}

.form-content form {
  font-size: 1.2em;
  flex: 1;
}

.form-content input {
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: 1px solid gray;
  width: 90%;
  margin-bottom: 10px;
}

.form-content input::placeholder {
  font-size: 1em;
  color: rgb(109, 109, 109);
}

.form-content button {
  width: 90%;
  background-color: rgb(3, 3, 29);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 2rem;
  margin-top: 10px;
  cursor: pointer;
}

.form-content button:hover {
  opacity: 0.9;
}

.form-content p {
  color: rgb(109, 109, 109);
}

.form-content a {
  text-decoration: none;
  color: blue;
}

#google-btn {
  color: black;
  background-color: transparent;
  border: 1px solid gray;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-content img {
  flex: 1;
  max-width: 350px;
  border-radius: 15px;
  margin: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-content {
    flex-direction: column;
    padding: 10px;
  }

  .form-content form,
  .form-content img {
    width: 100%;
  }

  .form-content button {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .form-content h1 {
    font-size: 1.5em;
  }

  .form-content input {
    padding: 0.5rem;
  }

  .form-content button {
    padding: 0.5rem;
  }
}

/*==========================================CART CSS=========================================*/

.cart-item { 
      display: flex;
      justify-content: space-between; 
      margin: 10px 0;
      padding: 10px;
      border-bottom: 1px solid #ccc; 
}
.cart-item-details {
        flex: 1;
        min-width: 150px;
}
.cart-item img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      margin-right: 15px; 
}
.cart-total{
      font-size: 20px;
      margin-top: 20px;
      text-align: right;
      font-weight: bold;
}
.submitBtn{
      padding: 10px 20px; 
      background: #000;
      color: #fff;
      border: none;
      cursor: pointer;
      margin-top: 20px;
      border-radius: 10px;
      width: 100%;
}
.cart-container{
  max-width: 800px;
  margin-top: 80px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}


h1{
  margin-bottom: 20px;
  text-align: center;
  color: rgb(89, 194, 236);
  
}
.cartItems{
    display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
@media (max-width: 600px) {
  .cart-item {
    
    align-items: center;
  }

  .cart-item img {
    margin-bottom: 10px;
  }

  .cart-total {
    text-align: center;
  }
}

#orderForm{
  display: none;
  text-align: center;
    max-width: 800px;
  margin-top: 80px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  
}
#orderForm h3{
  font-size: 3em;
  color: rgb(89, 194, 236);
}
#orderForm input{
  padding: 0.2em 5em;
}
#orderForm input, #orderForm textarea {
      width: 100%;
      margin-top: 10px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
}
#orderForm button {
      padding: 1em 2em;
     background-color: rgb(89, 194, 236);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    margin-top: 40px;
}
#orderForm button:hover {
     background-color: rgb(39, 229, 39);
    color: white;
    cursor: pointer;
}
#toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #28a745;
  color: white;
  text-align: center;
  border-radius: 8px;
  padding: 12px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#toast.show {
  visibility: visible;
  opacity: 1;
}

/*======================================PRELOADER CSS=======================================*/

/* Preloader container covers entire screen */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Dot styling */
.dot {
  width: 15px;
  height: 15px;
  margin: 0 7px;
  background-color: #007bff;
  border-radius: 50%;
  display: inline-block;
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.bouncing {
  animation-name: bounce;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

/*======================================TEXT ANIMATION CSS========================================*/



.wrapper {
    display: flex;
}

.wrapper .first-text {
    font-size: 60px;
    color: #fff;
}

.wrapper .sec-texts {
    height: 90px;
    line-height: 90px;
    overflow: hidden;
}

.sec-texts li {
    position: relative;
    top: 0;
    font-size: 60px;
    color: #0ef;
    list-style: none;
    padding: 0 20px;
    text-shadow: 0 0 10px #0ef;
    animation: slide 12s steps(4) infinite, colorful 6s infinite;
}

@keyframes slide {
    100% {
        top: -360px;
    }
}

@keyframes colorful {
    100% {
        filter: hue-rotate(360deg);
    }
}

.sec-texts li span {
    position: relative;
}

.sec-texts li span::before {
    content: '';
    position: absolute;
    left: 0;
    width: 400px;
    height: 90px;
    background: #000;
    border-left: 2px solid #0ef;
    animation: typing 1.5s steps(10) infinite alternate;
}

@keyframes typing {
    100% {
        left: 100%;
        margin: 0 -35px 0 35px;
    }
}

/*=========================footer===============================*/
footer {
  background-color: rgb(89, 194, 236);
  color: black;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
}

.content-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  gap: 20px;
}

.footer-cont,
.footer-links,
.footer-contacts {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: white;
}

.footer-contacts img {
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer-contacts img:hover {
  transform: scale(1.1);
}

hr {
  border: none;
  border-top: 1px solid #444;
  margin: 20px auto;
  max-width: 1000px;
}

footer p {
  margin-top: 10px;
  font-size: 14px;
}

/* ✅ Responsive Footer */
@media (max-width: 768px) {
  .content-footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-cont, .footer-links, .footer-contacts {
    text-align: center;
  }
  .social-icons {
    margin-top: 10px;
  }
}
