*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body{
  margin:0;
font-family:var(--font-body);
background-color: var(--bg-black);
overflow-x:hidden;
}

html{
  overflow-x:hidden;
  scroll-behavior: smooth;
}
:root{

  /* COLORS */

  --primary-red:#ff2b2b;
  --bg-black:#000;
  --text-light:#dddddd;
  --bg-light:#f2f2f2;

  /* FONTS */

  --font-heading:'Roboto', sans-serif;
  --font-body:'Open Sans', sans-serif;

  /* TYPOGRAPHY */

  --hero-title:
clamp(54px, 7vw, 84px);

--section-title:
clamp(40px, 5vw, 64px);

--card-title:
clamp(24px, 2.5vw, 34px);

--body-large:
clamp(18px, 1.8vw, 22px);

--body-text:
clamp(16px, 1.3vw, 18px);

}

h1,
h2,
h3,
.logo,
.quote-btn{
  font-family:var(--font-heading);
}
.projects-hero{

 min-height:500px;

  background-image:

  linear-gradient(
     90deg,
      rgba(0,0,0,.92) 0%,
      rgba(0,0,0,.82) 35%,
      rgba(0,0,0,.55) 100%
  ),

  url("images/service-bg.webp");

  background-size:cover;

  background-position:right center;

  background-repeat:no-repeat;

}
/* NAVBAR */

.navbar{

  display:flex;

  justify-content:space-between;

  align-items:center;

  position:fixed;

  top:0;

  left:0;

  width:100%;

  z-index:9999;

  padding:18px 90px;

  transition:0.4s ease;
  background-color: var(--bg-black);

}

.logo img{
  width:130px;
}

.nav-links{

  display:flex;
  gap:40px;

}

.nav-links a{

  color:var(--text-light);

  text-decoration:none;

  font-size:var(--body-text);

  transition:0.3s;

  position:relative;

  padding-bottom:6px;

  display:inline-block;

}

.nav-links a.active{
  color:var(--primary-red);
}

.nav-links a.active::after{
  width:100%;
}

.nav-links a:hover{
  color:var(--primary-red);
}
/* RED LINE */

.nav-links a::after{

  content:"";

  position:absolute;

  left:0;

  bottom:0;

  width:0%;

  height:3px;

  background:var(--primary-red);

  transition:0.3s ease;

}

/* SHOW LINE */

.nav-links a:hover::after{

  width:100%;

}
/* BUTTON */

.quote-btn{

  background:var(--primary-red);
  color:var(--bg-light);

  text-decoration:none;

  padding:16px 28px;

  font-weight:700;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.quote-btn:hover{

  background:var(--bg-light);

  color:var(--bg-black);


}
/* HAMBURGER */

    .hamburger{

    display:none;

    flex-direction:column;

    gap:6px;

    cursor:pointer;

    }

    .hamburger span{

    width:30px;

    height:3px;

    background:var(--bg-light);

    border-radius:10px;

    }

.navbar.scrolled{

  background:rgba(0,0,0,0.95);

  backdrop-filter:blur(10px);

  box-shadow:0 5px 20px rgba(0,0,0,0.4);

}

.navbar.hide{

  transform:translateY(-120%);

}
/* DROPDOWN */

.dropdown{

  position:relative;

}

/* PROJECTS LINK */

.dropdown-link{

  display:flex;

  align-items:center;

  gap:8px;

}

/* DROPDOWN MENU */

.dropdown-menu{

  position:absolute;

  top:140%;

  left:0;

  background:var(--bg-black);

  min-width:240px;

  padding:15px 0;

  border:1px solid rgba(255,255,255,0.1);

  opacity:0;

  visibility:hidden;

  transform:translateY(10px);

  transition:0.3s ease;

  z-index:999;

}

/* DROPDOWN LINKS */

.dropdown-menu a{

  display:block;

  padding:14px 22px;

  color:var(--text-light);

  text-decoration:none;

  font-size:16px;

  transition:0.3s ease;

}

/* HOVER EFFECT */

.dropdown-menu a:hover{

  background:var(--primary-red);

  color:var(--text-light);

}

/* SHOW MENU */

.dropdown:hover .dropdown-menu{

  opacity:1;

  visibility:visible;

  transform:translateY(0);

}

/* HERO CONTENT */

.projects-hero-content{

 width:100%;

  min-height:100vh;

  display:flex;

  align-items:center;

  padding:140px 90px 80px;


}

/* LEFT SIDE */

.projects-left{

  max-width:80%;
  margin-left: -10px;

}

/* SMALL TITLE */

.projects-small-title{

  color:var(--primary-red);

  font-size:28px;

  font-weight:800;

  margin-bottom:30px;
 margin-top: 55px;
}

/* BIG TITLE */

.projects-title{

  color:var(--text-light);

  font-size:var(--hero-title);

  line-height:1.05;

  font-weight:900;

  font-style:italic;

  margin-bottom:35px;

}

/* RED TEXT */

.projects-title span{

  color:var(--primary-red);

}

/* DESCRIPTION */

.projects-description{

  color:#e0e0e0;

  font-size:var(--body-large);

  line-height:1.6;

  max-width:700px;
   margin-bottom:60px;

}
.contact-divider{
  width:100%;
  max-width:700px;
  height:1px;
  background:rgba(255,255,255,0.15);
  margin:35px 0;
  margin-top: 60px;
}
/* PROJECT HIGHLIGHTS */

.project-highlights{

  display:flex;
  flex-wrap:wrap;
  gap:25px;

  margin-top:20px;


}
.projects-buttons{

  display:flex;

  gap:20px;

  margin-top:-15px;

  flex-wrap:wrap;

}

.project-btn-primary{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  background:var(--primary-red);

  color:var(--text-light);

  text-decoration:none;

  padding:18px 36px;

  font-weight:700;

  transition:.3s ease;

}

.project-btn-primary:hover{

  background:var(--bg-light);

  color:var(--bg-black);

}

.project-btn-secondary{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  border:2px solid var(--bg-light);

  color:var(--text-light);

  text-decoration:none;

  padding:18px 36px;

  font-weight:700;

  transition:.3s ease;

}

.project-btn-secondary:hover{

  background:var(--bg-light);

  color:var(--bg-black);

}


.highlight-item{

  display:flex;
  align-items:center;
  gap:12px;

  color:var(--bg-light);

  font-size:20px;
  font-weight:600;
   padding-right:24px;

  position:relative;

}

.highlight-item:not(:last-child)::after{

  content:"";

  position:absolute;

  right:1px;
  top:50%;

  transform:translateY(-50%);

  width:1px;
  height:35px;

  background:rgba(255,255,255,0.25);

}

.highlight-item i{

  color:var(--primary-red);

  font-size:22px;

}
/* SECTION */

.projects-section{

  background:var(--bg-black);

  padding:100px 90px;

}

/* CONTAINER */

.projects-container{

  max-width:1400px;

  margin:auto;

}

/* RED TITLE */

.project-category-title{

  color:var(--primary-red);

  font-size:50px;

  font-weight:800;

  margin-bottom:50px;
  margin-top: 50px;

}

/* GRID */

.projects-grid{

  display:grid;

  grid-template-columns:
  repeat(3, 1fr);

  gap:60px;

}

/* CARD */

.project-card{

  position:relative;

  overflow:hidden;

  cursor:pointer;

}

/* IMAGE */

.project-card img{

  width:100%;

  height:420px;

  object-fit:cover;

  display:block;

  transition:0.4s ease;

}

/* DARK OVERLAY */

.project-overlay{

  position:absolute;

  bottom:0;

  left:0;

  width:100%;

  padding:18px;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.92),
    rgba(0,0,0,0.2)
  );

}

/* TITLE */

.project-overlay h3{

  color:var(--text-light);

  font-size:var(--body-text);

  font-weight:800;

  margin-bottom:8px;

}

/* DESCRIPTION */

.project-overlay p{

  color:#d0d0d0;

  font-size:13px;

  line-height:1.5;

}

/* HOVER EFFECT */

.project-card:hover img{

  transform:scale(1.08);

}

/* CTA SECTION */

.cta-section{

  background-image:

  linear-gradient(
  rgba(0,0,0,0.60),
      rgba(0,0,0,0.60)

  ),

  url("images/cta-bg3.svg ");

  background-size:600px;

  background-position: 90% center;

  background-repeat:no-repeat;

  padding:100px 90px;
  background-color: var(--bg-black);

}

/* CONTENT */

.cta-content{

  max-width:750px;

  display:flex;

  align-items:flex-start;

  gap:35px;

}

/* ICON */

.cta-icon i{

  color:var(--primary-red);

  font-size:90px;

}

/* TITLE */

.cta-text h2{

  color:var(--text-light);

  font-size:var(--section-title);

  font-weight:900;

  line-height:1.1;

  margin-bottom:35px;

}

/* DESCRIPTION */

.cta-text p span{

  color:var(--primary-red);

 font-size:28px;

  line-height:1.7;

  margin-bottom:40px;

}

.cta-text p{

  color:#e0e0e0;

 font-size:var(--body-large);

  line-height:1.7;

  margin-bottom:40px;

}
/* SMALL RED LABEL */

.cta-label{

  color:var(--primary-red);

  font-size:18px;

  font-weight:700;

  letter-spacing:1px;

  text-transform:uppercase;

  margin-bottom:20px;

  position:relative;

  display:inline-block;

}

.cta-label::after{

  content:"";

  display:block;

  width:120px;

  height:2px;

  background:var(--primary-red);

  margin-top:12px;

}

/* HIGHLIGHTS */

.cta-highlights{

  display:flex;

  flex-wrap:wrap;

  gap:35px;

  margin-bottom:45px;

}

.cta-highlight{

  display:flex;

  align-items:center;

  gap:10px;

  color:var(--text-light);

  font-size:18px;

}

.cta-highlight i{

  color:var(--primary-red);

  font-size:22px;

}

.cta-highlight strong{

  color:var(--bg-light);

}

/* BUTTONS */

.cta-buttons{

  display:flex;

  gap:25px;

}

/* RED BUTTON */

.cta-btn-red{

  background:var(--primary-red);

  color:var(--text-light);

  text-decoration:none;

  padding:18px 38px;

  font-weight:700;

  transition:0.3s ease;

}

/* OUTLINE BUTTON */

.cta-btn-outline{

  border:2px solid var(--bg-light);

  color:var(--text-light);

  text-decoration:none;

  padding:18px 38px;

  font-weight:700;

  transition:0.3s ease;

}

/* HOVER */

.cta-btn-red:hover{

  background:var(--bg-light);

  color:var(--bg-black);

}

.cta-btn-outline:hover{

  background:var(--bg-light);

  color:var(--bg-black);

}


/* ========================= */
/* LIVE MAP SECTION */
/* ========================= */

.map-section{

  background:#f2f2f2;

  padding:80px 70px;

}

/* MAP BOX */

.map-container{

  width:100%;

  height:650px;

  overflow:hidden;

}

/* IFRAME */

.map-container iframe{

  width:100%;

  height:100%;

  display:block;

}

/* ========================= */
/* FOOTER CONTACT SECTION */
/* ========================= */

.footer-contact{

  background:var(--bg-black);

  padding:80px 70px 20px;

}

/* CONTAINER */

.footer-container{

  display:grid;

  grid-template-columns:
  1fr 1fr;

  gap:80px;

}

/* SMALL TITLE */

.footer-small-title{

  color:var(--primary-red);

  font-size:34px;

  font-weight:900;

  margin-bottom:40px;

}

/* BIG TITLE */

.footer-title{

  color:var(--text-light);

  font-size:var(--hero-title);

  line-height:1.15;

  font-weight:900;

  margin-bottom:20px;

}
.footer-title span{
  color:var(--primary-red);
}

/* LOGO */

.footer-logo{

  width:260px;

  margin-bottom:0px;

}
/* DESCRIPTION */

.footer-description{

  color:#dddddd;

  font-size:var(--body-large);

  line-height:1.7;

  max-width:700px;
  margin-top:40px;

}
.footer-left{

  display:flex;

  flex-direction:column;

  justify-content:flex-start;

  align-self:start;

}

/* RIGHT TEXT */

.footer-text{

  color:var(--text-light);

  font-size:var(--body-large);

  margin-bottom:40px;

}

/* MESSENGER BUTTON */

.messenger-btn{

  display:inline-flex;

  align-items:center;

  gap:15px;

  background:var(--primary-red);

  color:var(--text-light);

  text-decoration:none;

  padding:22px 32px;

  font-size:22px;

  font-weight:700;

  margin-bottom:50px;

  transition:0.3s;

}

.messenger-btn:hover{

  background:var(--bg-light);

  color:var(--bg-black);

}

/* CONTACT LIST */

.footer-contact-list{

  display:flex;

  flex-direction:column;

  gap:35px;

}

/* ITEM */

.footer-contact-item{

  display:flex;

  align-items:center;

  gap:25px;

}

/* ICON CIRCLE */

.footer-icon-circle{

  width:85px;

  height:85px;

  min-width:85px;

  border-radius:50%;

  background:var(--primary-red);

  display:flex;

  justify-content:center;

  align-items:center;

}

/* ICON */

.footer-icon-circle i{

  color:var(--text-light);

  font-size:38px;

}

/* TEXT */

.footer-contact-item p{

  color:var(--text-light);

  font-size:22px;

  line-height:1.5;

}

/* COPYRIGHT */

.footer-bottom{

  text-align:center;

  color:#bbbbbb;

  font-size:16px;

  margin-top:80px;

}
/* ========================= */
/* FADE IN ANIMATION */
/* ========================= */

.fade-in{

  opacity:0;

  transform:translateY(40px);

  transition:
  opacity 0.9s ease,
  transform 0.9s ease;

}

/* ACTIVE */

.fade-in.show{

  opacity:1;

  transform:translateY(0);

}

/* FLOATING WHATSAPP */

.floating-whatsapp{

  position:fixed;

  bottom:30px;
  right:30px;

  width:70px;
  height:70px;

  border-radius:50%;

  background:#25D366;

  display:flex;
  justify-content:center;
  align-items:center;

  text-decoration:none;

  z-index:9999;

  box-shadow:
  0 10px 25px rgba(0,0,0,.3);

  transition:.3s ease;

    animation:
  whatsappPulse 2s infinite;

}

.floating-whatsapp i{

  color:white;

  font-size:38px;

}

.floating-whatsapp:hover{

  transform:translateY(-4px) scale(1.05);

}

.wa-tooltip{

  position:absolute;

  right:85px;

  background:#fff;

  color:#000;

  padding:10px 14px;

  border-radius:8px;

  white-space:nowrap;

  font-size:14px;

  font-weight:700;

  opacity:0;

  transition:.3s;

}

.floating-whatsapp:hover .wa-tooltip{

  opacity:1;

}

@keyframes whatsappPulse{

  0%{

    box-shadow:
    0 0 0 0 rgba(37,211,102,.7);

  }

  70%{

    box-shadow:
    0 0 0 20px rgba(37,211,102,0);

  }

  100%{

    box-shadow:
    0 0 0 0 rgba(37,211,102,0);

  }

}
/* ===================================
   GLOBAL TABLET RESPONSIVE
=================================== */

@media(max-width:1200px){

  .navbar{

    padding:18px 40px;

  }

  .nav-links{

    gap:25px;

  }

  .nav-links a{

    font-size:16px;

  }

  .quote-btn{

    padding:14px 22px;

    font-size:14px;

  }

  .logo img{

    width:110px;

  }

}

@media(max-width:1024px){

  /* GLOBAL */

  body{
    overflow-x:hidden;
  }

  section{
    overflow:hidden;
  }

  /* NAVBAR */

  .navbar{

    padding:18px 40px;
  }

  .logo img{

    width:120px;
  }

  .nav-links{

    gap:22px;
  }

  .nav-links a{

    font-size:15px;
  }

  /* HERO SECTION */

  .projects-hero{

    min-height:650px;

    background-position:center;
  }

  .projects-hero-content{

    min-height:650px;

    padding:
    140px 45px
    90px;
  }

  .projects-left{

    max-width:760px;
  }

  .projects-small-title{

    font-size:24px;

    margin-bottom:24px;
  }

  .projects-title{

    font-size:62px;

    line-height:1.02;

    margin-bottom:28px;
  }

  .projects-description{

    font-size:20px;

    max-width:620px;

    line-height:1.6;
  }

  .project-highlights{

    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:25px;

    margin-top:50px;

}

.highlight-item{

    padding:0;

}

.highlight-item::after{

    display:none;

}

  /* PROJECT SECTION */

  .projects-section{

    padding:85px 40px;
  }

  .project-category-title{

    font-size:35px;

    margin-top:40px;

    margin-bottom:35px;
  }

  .projects-grid{

    grid-template-columns:
    repeat(2, 1fr);

    gap:35px;
  }

  .project-card img{

    height:320px;
  }

  .project-overlay{

    padding:18px;
  }

  .project-overlay h3{

    font-size:var(--body-text);
  }

  .project-overlay p{

    font-size:13px;
  }

  /* CTA SECTION */

  .cta-section{

    padding:90px 40px;

    background-size:cover;

    background-position:center;
  }

  .cta-content{

    max-width:900px;

    gap:28px;
  }

  .cta-icon i{

    font-size:70px;
  }

  .cta-text h2{

    font-size:54px;

    line-height:1.05;

    margin-bottom:25px;
  }

  .cta-text p{

    font-size:22px;

    line-height:1.7;

    margin-bottom:35px;
  }
 .cta-highlights{

    gap:25px;

  }

  .cta-highlight{

    padding:0;

}

.cta-highlight::after{

    display:none;

}
  .cta-buttons{

    gap:18px;
  }

  .cta-btn-red,
  .cta-btn-outline{

    padding:18px 28px;

    font-size:16px;
  }

  /* MAP */

  .map-section{

    padding:60px 40px;
  }

  .map-container{

    height:500px;
  }

  /* FOOTER */

  .footer-contact{

    padding:80px 40px 25px;
  }

  .footer-container{

    grid-template-columns:1fr;

    gap:60px;
  }

  .footer-small-title{

    font-size:24px;
  }

  .footer-title{

    font-size:62px;

    line-height:1.05;
  }

  .footer-logo{

    width:220px;
  }

  .footer-description{

    font-size:20px;

    max-width:700px;
  }

  .footer-text{

    font-size:20px;
  }

  .messenger-btn{

    font-size:var(--body-text);

    padding:20px 28px;
  }

  .footer-contact-list{

    gap:28px;
  }

  .footer-contact-item{

    gap:20px;
  }

  .footer-icon-circle{

    width:75px;
    height:75px;
    min-width:75px;
  }

  .footer-icon-circle i{

    font-size:30px;
  }

  .footer-contact-item p{

    font-size:var(--body-text);
  }

  .footer-bottom{

    margin-top:60px;

    font-size:15px;
  }

}

/* ===================================
   GLOBAL MOBILE RESPONSIVE
=================================== */

@media(max-width:900px){

  .nav-links{

    position:absolute;

    top:100px;

    right:0;

    background:var(--bg-black);

    width:100%;

    flex-direction:column;

    align-items:center;

    padding:40px 0;

    gap:30px;

    display:none;

  }

  .nav-links.active{

    display:flex;

  }

  .hamburger{

    display:flex;

  }

  .quote-btn{

    display:none;

  }

}

@media(max-width:768px){

  /* GLOBAL */

  body{

    overflow-x:hidden;

  }

  section{

    overflow:hidden;

  }

  /* NAVBAR */

  .navbar{

    padding:18px 22px;

  }

  .logo img{

    width:110px;

  }

  /* HERO */

  .projects-hero{

    min-height:auto;
    background-position:center;

  }

  .projects-hero-content{

   margin-left:0;
    margin-top:-40px;

  }

  .projects-small-title{

    font-size:20px;

    margin-bottom:20px;

  }

  .projects-title{

    font-size:46px;

    line-height:1.02;

    word-break:break-word;

    margin-bottom:25px;

  }

  .projects-description{

    font-size:var(--body-text);

    line-height:1.7;

  }
  .project-highlights{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:20px;

    margin-top:40px;

}
.projects-buttons{

  flex-direction:column;

  width:100%;

  margin-top:35px;

}

.project-btn-primary,
.project-btn-secondary{

  width:auto;

  min-width:260px;

  max-width:320px;

  text-align:center;

}
.highlight-item i{

    font-size:20px;

}

.highlight-item{

    width:100%;

    padding:0;
    
   font-size:var(--body-text);

}

.highlight-item::after{

    display:none;

}

  /* PROJECT SECTION */

  .projects-section{

    padding:70px 20px;

  }

  .project-category-title{

    font-size:30px;

    margin-top:30px;

    margin-bottom:25px;

    text-align:center;

  }

  .projects-grid{

    grid-template-columns:1fr;

    gap:25px;

  }

  /* PROJECT CARDS */

  .project-card{

    border-radius:0;

  }

  .project-card img{

    height:250px;

    object-fit:cover;

    object-position:center;

  }

  .project-overlay{

    padding:16px;

  }

  .project-overlay h3{

    font-size:17px;

  }

  .project-overlay p{

    font-size:13px;

    line-height:1.5;

  }

  /* CTA SECTION */

  .cta-section{

    padding:70px 22px;

    background-position:center;

    background-size:cover;

  }

  .cta-content{

    flex-direction:column;

    gap:25px;
     max-width:100%;

  }

  .cta-icon i{

    font-size:58px;

  }

  .cta-text h2{

    font-size:42px;

    line-height:1.05;

  }

  .cta-text p{

    font-size:var(--body-text);

    line-height:1.7;

  }

  .cta-buttons{

    flex-direction:column;

    width:100%;

    gap:18px;

  }
  .contact-divider{
    margin:30px 0;
  }
  .cta-highlights{

    flex-direction:column;

    align-items:flex-start;

    gap:18px;

    margin-bottom:35px;

  }
  .cta-highlight i{

    font-size:20px;

}

.cta-highlight{

    width:100%;

    padding:0;
    
   font-size:var(--body-text);

}

.cta-highlight::after{

    display:none;

}

  .cta-btn-red,
  .cta-btn-outline{

    width:auto;
    min-width:260px;
     max-width:320px;

    text-align:center;

    padding:18px;

  }

  /* MAP */

  .map-section{

    padding:25px 15px;

  }

  .map-container{

    height:320px;

  }

  /* FOOTER */

  .footer-contact{

    padding:60px 22px 25px;

  }

  .footer-container{

    grid-template-columns:1fr;

    gap:55px;

  }

  .footer-small-title{

    font-size:24px;

    margin-bottom:25px;

  }

  .footer-title{

    font-size:52px;

    line-height:1.05;

  }

  .footer-logo{

    width:180px;

  }

  .footer-description{

    font-size:var(--body-text);

    line-height:1.7;

  }

  .footer-text{

    font-size:var(--body-text);

    line-height:1.6;

  }

  .messenger-btn{

   width:auto;
    min-width:260px;
     max-width:320px;
    justify-content:center;

    text-align:center;

    font-size:16px;

    padding:18px;

  }

  /* CONTACT ITEMS */

  .footer-contact-item{

    align-items:flex-start;

    gap:18px;

  }

  .footer-icon-circle{

    width:65px;

    height:65px;

    min-width:65px;

  }

  .footer-icon-circle i{

    font-size:28px;

  }

  .footer-contact-item p{

    font-size:17px;

    line-height:1.6;

    word-break:break-word;

  }

  /* COPYRIGHT */

  .footer-bottom{

    margin-top:50px;

    font-size:14px;

    line-height:1.6;

  }

   .floating-whatsapp{

    width:60px;
    height:60px;

    right:20px;
    bottom:20px;

  }

  .floating-whatsapp i{

    font-size:32px;

  }

   .wa-tooltip{
    display:none;
  }

}