/************* 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;
}





/* ============================
   ABOUT HERO
   ============================ */

.about-hero {
    height: 60vh;
    background: url("../../lg-images/team.jpeg") center / cover no-repeat;
    position: relative;
}

.about-hero-overlay {
    height: 100%;
    background: rgba(0,0,0,0.55);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-hero-overlay h1 {
    color: #fff;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.about-hero-overlay h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
}

.about-hero-overlay p {
    color: #ddd;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* ============================
   ABOUT MAIN CARD
   ============================ */

.about-main {
    background: #f7f7f7;
    padding: 5rem 1.5rem;
}

.about-card {
    max-width: 1200px;
    margin: -120px auto 0;

    background: #fff;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);

    padding: 3.5rem;

    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;

    position: relative;
    z-index: 5;
}

/* ============================
   ABOUT TEXT
   ============================ */

.about-text h3 {
    color: #c40000;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

/* ============================
   BADGES
   ============================ */

.about-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.badge {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #c40000;
    color: #fff;
    font-size: 1.2rem;

    margin-bottom: 0.6rem;
}

.badge p {
    color: #333;
    font-weight: 600;
}

/* ============================
   WHY SECTION
   ============================ */

.why-section {
    background: #fff;
    padding: 5rem 1.5rem;
    text-align: center;
}

.why-section h3 {
    color: #c40000;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.why-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    background: #f9f9f9;
    padding: 2.5rem 2rem;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.why-card i {
    color: #c40000;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.why-card h4 {
    margin-bottom: 0.6rem;
    color: #222;
}

.why-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1000px) {
    .about-card {
        grid-template-columns: 1fr;
        margin-top: -80px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero-overlay h2 {
        font-size: 2.4rem;
    }
}












/** 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;
}


@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;
   }


   .services-side {
    margin-top: 2rem
   }



   /* 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;
  }








   }