/************* FONTS *********/


/*** NAV BAR FONT ****/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap');
/*** FOOTER GALLR SOLUTIONS ***/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
/** CONTAINER font */


/* MAIN FONTS */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}



#container{
    width: 100%;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

/* MAIN-NAVBAR */
.main-navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;


    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 3rem;
    z-index: 100;
    background: transparent;
    transition: background 0.3s ease, height 0.3s ease;
}

.main-navbar.scrolled{
    height: 5.5rem;
    background: rgba(196, 0, 0, 0.85);
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}


/* THE SERVICES BUTTONS */
.nav-links{
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 3.5rem;
}

.nav-links a {
    display: inline-block;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: 
        transform 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease ;
}

/* underline */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #e53935;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}



/* WHEN CLICKING NAV LINKS*/
.nav-links a:active {
    outline: none;
}





.nav-links a.active {
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
     /* soft red accent */
    font-weight: 600;
}


/*================== PHONE NUMBER RIGHT SIDE ============*/
/* PHONE NUMBER WRAPPER */
.nav-btn {
    display: flex;
    align-items: center;
}

/* PHONE BUTTON */
.nav-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.55rem 1.1rem;
    border-radius: 999px;

    border: 2px solid #e53935;
    background: transparent;

    color: #ffffff;
    font-weight: 600;
    font-size: 19px;
    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* HOVER */
.nav-phone:hover {
    background: #e53935;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(229, 57, 53, 0.35);
}

/* CLICK */
.nav-phone:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(229, 57, 53, 0.25);
}

 /** HAMBURGER **/
 
 
 .hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff; /* or your red */
  border-radius: 2px;
  transition: all 0.3s ease;
}





/*========= MAIN SECTION ========*/
.service-container {
  padding: 8rem 2rem;
  background: radial-gradient(
    circle at top,
    #e45a5a 0%,
    #b73737 45%,
    #7a1f1f 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-text {
  max-width: 700px;
  margin: 0 auto 5rem;
}

.service-text h1 {
  padding-top: 4rem;
  font-size: 2.8rem;
  color: #fff;
}

.service-text p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* GRID */
.services-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  justify-content: center;
}

/* CARD */
.service-card {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.85),
    rgba(10, 10, 10, 0.85)
  );
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 2.8rem 2.4rem;
  height: 280px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #fff;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);

  /* 👇 IMPORTANT */
  transition:
    background 0.45s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* ICON */
.service-card i {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: #e53935;
}

/* TEXT */
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

/* LINK */
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #e53935;
  font-weight: 600;
  text-decoration: none;
}

.service-card a::after {
  content: "→";
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.service-card:hover a::after {
  transform: translateX(6px);
}

/* FEATURED CARD */


/* HOVER */
.service-card:hover {
  background: linear-gradient(145deg, #e53935, #c40000);
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(229, 57, 53, 0.6);
  
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover a,
.service-card:hover i {
  color: #fff;
}







/** FOOTER MAIN **/
footer{
    background: #111;
    color: #ccc;
}
.footer-content{
    max-width: 1400px;
    background: #111;  
    color: #fff;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr ;
    margin: auto;
    gap: 2.5rem;
    padding: 4rem 3rem;
}
/** FOOTER COL **/
.footer-col {
    position: relative;
    padding-right: 2rem;
}

.footer-col h3{
    color: #ff0000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col h4{
    color: #ff0000;
    margin-bottom: 1rem;
    font-weight: 600; 
}

.footer-col p{
   font-size: 0.95;
   line-height: 1.6;
}
.footer-col li{
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.footer-col ul{
    list-style: none;
    padding :0;
}

.footer-col a{
    text-decoration: none;
    color: #fff;
        transition: 
        transform 0.25s ease,
        color 0.25s ease;
}

.footer-col a:hover{
  color:#ff0000;
}

/*** VERTIAL LINE **/
.footer-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #222;
}

.footer-contact p{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;

}

.footer-contact i {
    color: #ff0000;
    font-size: 0.95rem;
    min-width: 16px;
}




/** FOOTER BOTTOM **/
.footer-bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
    background: #111;  
    color: #fff;
    text-align: center;
    font-size: 0.9375;

}

/* SOCIAL ICONS *****/
.footer-socials{
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: #222;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
        transition: 
        transform 0.25s ease,
        color 0.25s ease;
}


.footer-bottom p{
    color: #777;
    text-align: cetner;
    padding: 1rem;
    font-size: 0.9375rem;
}

.footer-bottom p span {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
}

/* ======================
    NAV BAR
 ========================*/


 
@media (max-width: 768px) {




    .main-navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
        padding: 0 1.2rem;
        position: fixed;
        background: #111;
        backdrop-filter: none;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
  }

   

    .logo {
     position: absolute;
     left: 50%;
     transform: translateX(-50%);

    }

   .logo img {
    height: 110px;
   }

     /**HAMBURGER **/


     .hamburger{
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        margin-left: auto;
     }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        }


    /* NAV LINKS SLIDE DOWN */

  .nav-links {
    position: absolute;
    background-color: #111;
    padding: 2rem 0;
    top: 80px; 
    left: 0;
    width: 100%;
    z-index: 999;
   

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);

    transition: 
      max-height 0.4s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
  }

    .nav-links.active{
        max-height: 400px; /* adjust if needed */
        opacity: 1;
        transform: translateY(0);
    }


   .nav-btn {
    display: none;
   }


   /*Supreme*/

   .supreme {
    height: 85vh;
    text-align: center;
    padding-top: 80px;
   }


   .supreme-content {
    padding: 0 1.5rem;  
   }


   .supreme-content h1 {
    font-size: 2.2rem;
   }

   .supreme-content p {
    font-size: 1rem;
   }

   .supreme-btn{
    width: 100%;
    text-align: center;
   }

   /*Services*/

   .services {
    padding: 4rem 1.5rem;
   }

   .services-content {
    grid-template-columns: 1fr;
   }


   .services-grid {
    grid-template-columns: 1fr;
    margin: 0 7rem 0 7rem;
   }





   /* ESTMISTE */

   .estimate-form{
     width: 100%;
    max-width: 530px;
    margin: 0 auto;     
     padding: 4rem 2.75rem;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
   }

   .estimate-form input,
    .estimate-form select,
    .estimate-form textarea {
        padding: 1rem;
        font-size: 1.05rem;
}



    .estimate-section {
    padding: 4rem 1.5rem;
  }

  .estimate-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .estimate-text {
    text-align: center;
  }

  .estimate-btn {
  padding: 1.25rem;
  font-size: 1.15rem;
  border-radius: 10px;
  margin-top: 1.5rem;
  }

   /* WHY US */
  .why-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-text {
    justify-self: center;
  }

  /* FOOTER */
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .footer-bottom{
    display: grid;
    grid-template-columns: 1fr;

  }

  .footer-bottom p{
    font-size: 0.7rem;
  }
    .footer-bottom span{
    font-size: 0.5rem;
  }








   }