/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

body{
    background:#ffffff;
     
   
}

/* BASE */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom{
    opacity:0;
    transition:all 0.8s ease;
}

/* DEFAULT (BOTTOM TO TOP) */
.reveal{
    transform:translateY(60px);
}

/* LEFT */
.reveal-left{
    transform:translateX(-80px);
}

/* RIGHT */
.reveal-right{
    transform:translateX(80px);
}

/* ZOOM */
.reveal-zoom{
    transform:scale(0.8);
}

/* ACTIVE (WHEN VISIBLE) */
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active{
    opacity:1;
    transform:translate(0,0) scale(1);
}

/* ===== COLORS ===== */
:root{
    --gold1:#c9a227;
    --gold2:#f5d76e;
    --gold3:#fff3b0;
    --red1:#f31818;
    --red2:#fe3a3af3;
    --red3:#f15454df;

    --dark:#1a1a1a; /* dark text color */
    --secondary:#555555; /* secondary text */
    --section-bg:#fffdf0; /* light cream background */
}



/* ===== NAVBAR ===== */
.navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1px 60px;

    background: rgba(255, 255, 255, 0.6);

    /* Blur effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index:1000;
}

/* ===== LOGO ===== */
.logo img{
    height:100px;
    width: 150px;
    transition:0.3s ease;
}

.logo img:hover{
    transform:scale(1.08);
    /* filter:drop-shadow(0 0 10px var(--gold2)); */
}

/* ===== NAV LINKS ===== */
.nav-links{
    display:flex;
    gap:50px;
}

/* NAV ITEM */
.nav-item{
    position:relative;
    text-decoration:none;
    color:#000000;
    font-size:17px;
    font-weight:600;
    transition:0.3s;
}

/* UNDERLINE */
.nav-item::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:linear-gradient(90deg,var(--red1),var(--red2),var(--red1));
    transition:width 0.4s ease;
}

/* HOVER */
.nav-item:hover{
    color:var(--red2);
}

.nav-item:hover::after{
    width:100%;
}

/* ACTIVE */
.nav-item.active{
    color:var(--red2);
}

.nav-item.active::after{
    width:100%;
}

/* ===== CTA BUTTON ===== */
.cta-btn{
    text-decoration:none;
    padding:10px 26px;
    border-radius:30px;
    color:var(--red2);
    border:2px solid var(--red2);
    position:relative;
    overflow:hidden;
    transition:0.4s;
    font-weight:600;
}

/* FILL EFFECT */
.cta-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
  background:linear-gradient(90deg,var(--red1),var(--red2));;
    transition:0.4s ease;
    z-index:-1;
}

.cta-btn:hover::before{
    left:0;
}

.cta-btn:hover{
    color:#fff;
    box-shadow:0 0 18px rgba(254,58,58,0.5);
}

/* ===== HAMBURGER ===== */
.menu-toggle{
    display:none;
    font-size:26px;
    color:#fff;
    cursor:pointer;
}

/* ===== CLOSE BUTTON ===== */
.close-btn{
    display:none;
    font-size:28px;
    color:#000000;
    text-align:right;
    cursor:pointer;
    margin-bottom:20px;
}

/* MOBILE CTA */
.cta-mobile{
    display:none;
    text-decoration:none;
    padding:10px 20px;
    border-radius:30px;
    color:#ffffff;
    background:linear-gradient(90deg,var(--red1),var(--red2));
    text-align:center;
    margin-top:20px;
    font-weight:600;
}

/* ================= MOBILE ================= */
@media (max-width: 992px){

    .navbar{
        padding:1px 20px;
    }

    /* SHOW HAMBURGER */
    .menu-toggle{
        display:block;
    }

    /* NAV MENU STYLE */
    .nav-links{
        position:fixed;
        top:0;
        left:-100%;
        width:270px;
        height:100vh;
        background:#ffffff;
        flex-direction:column;
        padding:30px;
        gap:25px;
        transition:0.4s ease;
        z-index:2000;
    }

    /* OPEN MENU */
    .nav-links.active{
        left:0;
    }

    /* SHOW CLOSE */
    .close-btn{
        display:block;
    }

    /* NAV ITEMS */
    .nav-item{
        font-size:18px;
    }

    /* HIDE DESKTOP CTA */
    .cta-btn{
        display:none;
    }

    /* SHOW MOBILE CTA */
    .cta-mobile{
        display:block;
    }
}

/* SMALL MOBILE */
@media (max-width: 600px){
    .logo img{
        height:80px;
        width: 150px;
    }

    .nav-links{
        width:230px;
    }
}

/* ====================== HERO ====================== */
.hero{
    height:100vh;
    position:relative;
    overflow:hidden;  
}


/* SLIDES */
.slide{
    position:absolute;
    width:100%;
    height:100%;
    z-index:0; /* lowest layer */
    
    opacity:0;
    transition:opacity 1s ease-in-out;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}


.slide.active{
    opacity:1;
    z-index:1;
}

/* OVERLAY */
/* OVERLAY (MIDDLE) */
.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    z-index:1; /* above image */

    background:linear-gradient(
        to top,
        #050505 0%,
        rgba(0,0,0,0.95) 10%,
        rgba(0,0,0,0.85) 20%,
        rgba(0, 0, 0, 0.821) 30%,
        rgba(0,0,0,0.6) 45%,
        rgba(0,0,0,0.3) 65%,
        rgba(0,0,0,0.1) 80%,
        transparent 100%
    );
}

/* CONTENT */
.hero-content{
    position:absolute;
    top:45%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index:2; /* highest layer */
    color:#fff;
    text-align:center;
    max-width:700px;
    
}

/* HEADING */
.hero-content h1{
    font-size:55px;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.2;
}
.hero-content h1 span {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;

    /* GRADIENT TEXT */
    background: linear-gradient(90deg, #f40d0d, #ffffff, #ff1c1c); /* gold-white theme */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* PARAGRAPH */
.hero-content p{
    font-size:18px;
    margin-bottom:25px;
    line-height:1.6;
}

/* BUTTONS */
.hero-btns{
    display:flex;
    gap:15px;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;

}

/* BUTTON BASE */
.btn{
    padding:12px 28px;
    text-decoration:none;
    border-radius:30px;
    transition:0.4s;
    font-weight:600;
}

/* PRIMARY */
/* .btn.primary{
    background:linear-gradient(90deg,var(--red1),var(--red2));
    color:#000;
}

.btn.primary:hover{
    box-shadow:0 0 15px rgba(245,215,110,0.6);
    transform:translateY(-3px);
} */

/* SECONDARY */
.btn.secondary{
    background:linear-gradient(90deg,var(--red1),var(--red2));
    color:#ffffff;
}

.btn.secondary:hover{
    background:linear-gradient(90deg,var(--red1),var(--red2));
    color:#ffffff;
}

/* DOT NAV */
.slider-nav{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
     z-index:5; 
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#ccc;
    cursor:pointer;
    margin-top: -100px;
    transition:0.3s;
}

.dot.active{
    background:var(--red2);
    box-shadow:0 0 8px var(--red2);
}


/* ===== SOCIAL ICONS ===== */
.social-icons{
    position:absolute;
    bottom:120px;
    right:40px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:10;

    animation:socialFade 1.5s ease forwards;
}

/* ICON BASE */
.social-icons .icon{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
   
    color:#fff;
    font-size:18px;
    text-decoration:none;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(8px);
    border:3px solid var(--red2);

    transition:all 0.4s ease;
}

/* HOVER EFFECT */
.social-icons .icon:hover{
    transform:translateY(-6px) scale(1.1);
    box-shadow:0 0 15px var(--gold2);
}

/* BRAND COLORS */
.social-icons .facebook:hover{
    background:#1877f2;
}

.social-icons .instagram:hover{
    background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}


/* ANIMATION */
@keyframes socialFade{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes pulse{
    0%{
        transform:scale(1);
        opacity:1;
    }
    70%{
        transform:scale(1.6);
        opacity:0;
    }
    100%{
        opacity:0;
    }
}

@media (max-width:600px) {

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;  
}


/* SLIDES */
.slide{
    position:absolute;
    width:100%;
    height:100%;
    z-index:0; /* lowest layer */   
}
.hero-content{
    top:40%
}

/* HEADING */
.hero-content h1{
    font-size:50px;
    margin-bottom:15px;
    margin-top: 10px;
    line-height:1.2;
}
.hero-content h1 span {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* PARAGRAPH */
.hero-content p{
    font-size:18px;
    line-height:1.6;
}

/* BUTTONS */
.hero-btns{
    display:flex;
    gap:15px;
    margin-top: 30px;
}
.btn{
    padding:12px 28px;
    font-weight:600;
}
.slider-nav{
    bottom:60px;
    left:50%;
 
}
   
.dot{
    width:20px;
    height:20px;
    top: 90px;
    transition:0.3s;
}

  .social-icons{
    position:absolute;
    bottom:80px;
    left:80%;              /* move to center */
    transform:translateX(-50%);  /* pull back half width */

    display:flex;
    flex-direction:column;
    gap:12px;

    justify-content:center;
    align-items:center;
}
    .social-icons .icon{
        width: 50px;
        height: 50px;
        font-size: 15px;
    }
}



/* ===================== ABOUT PREMIUM ===================== */
.about{
    padding:120px 80px;
    /* background:var(--section-bg); */
    background: #ffffff;
    position:relative;
    overflow:hidden;
}

/* SUBTLE GOLD GLOW BACKGROUND */
.about::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(245,215,110,0.08), transparent);
    top:-100px;
    left:-100px;
}

/* CONTAINER */
.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    position:relative;
    z-index:1;
    margin-left: 50px;
}

/* ================= IMAGE ================= */
.about-image{
    position: relative;
    width: 45%;
    display: inline-block;
}

/* GOLD BORDER FRAME */
.img-border{
      position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--red2);
    z-index: 1;
    transition: all 0.5s ease;
}

/* IMAGE */
.about-image img{
    width: 100%;
    display: block;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}


/* IMAGE HOVER EFFECT */
.about-image:hover img{
    transform: scale(0.92); /* shrink */
}

/* BORDER EXPANDS OUTSIDE */
.about-image:hover .img-border{
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
}

/* ================= CONTENT ================= */
.about-content{
    width:50%;
    color:var(--dark);
}


/* TAG STYLE */
.tag-box{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.tag-box .line{
    width:40px;
    height:2px;
    background:var(--gold1);
}

.tag{
    color:var(--dark);
    font-size:14px;
    letter-spacing:2px;
}

/* HEADING */
.about-content h2{
    font-size:42px;
    line-height:1.3;
    margin-bottom:20px;
}

.about-content h2 span{
    background:linear-gradient(45deg,var(--red1),var(--red2));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TEXT */
.about-content p{
    font-size:16px;
    color:#3d3c3c;
    margin-bottom:15px;
    line-height:1.7;
}

/* ACTION AREA */
.about-actions{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:25px;
}

/* BUTTON */
.about-btn{
    padding:12px 30px;
    border-radius:30px;
    text-decoration:none;
    background:linear-gradient(90deg,var(--red1),var(--red2));
    color:#ffffff;
    font-weight:600;
    transition:0.4s;
}

.about-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 15px rgba(62, 55, 27, 0.668);
}

/* EXPERIENCE BADGE */
.experience{
    font-size:14px;
    color:var(--gold2);
    border-left:2px solid var(--gold2);
    padding-left:15px;
}

/* ================= ANIMATION ================= */
.about{
    opacity:0;
    transform:translateY(80px);
    transition:1s ease;
}

.about.show{
    opacity:1;
    transform:translateY(0);
}

/* ================= MOBILE (600px) ================= */
@media (max-width: 600px){

    .about{
        padding: 60px 20px; /* equal spacing all sides */
        text-align: center;
    }

    .about-container{
        flex-direction: column; /* stack */
        gap: 40px;
        margin-left: 0; /* remove extra shift */
        align-items: center;
        justify-content: center;
    }

    /* IMAGE */
    .about-image{
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .img-border{
        color: var(--gold1); /* cleaner on mobile */
    }

    /* CONTENT */
    .about-content{
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    /* TAG CENTER */
    .tag-box{
        justify-content: center;
    }

    .tag-box .line{
        display: none; /* optional cleaner look */
    }

    /* HEADING */
    .about-content h2{
        font-size: 28px;
    }

    /* TEXT */
    .about-content p{
        font-size: 14px;
    }

    /* ACTIONS */
    .about-actions{
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .about-btn{
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .experience{
        border-left: none;
        padding-left: 0;
        text-align: center;
    }

}

/* ===================== SERVICES SECTION ===================== */
.services {
  padding: 10px 8% 50px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* subtle gold glow like other sections */
.services::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle, rgba(245,215,110,0.08), transparent);
  top:-100px;
  right:-100px;
}

/* ================= HEADER ================= */
.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header .tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 12px;
  
}

/* GOLD HEADING */
.services-header h2 {
     font-size:42px;
    line-height:1.3;
    margin-bottom:20px;
    color: var(--dark);
}

.services-header h2 span {
     background:linear-gradient(45deg,var(--red1),var(--red2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-header p {
  font-size: 15px;
  color: #686868;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================= PANEL WRAPPER ================= */
.services-panel {
  display: flex;
  height: 500px;
  margin-top: 30px;

  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* subtle divider */
.panel {
  border-right: 1px solid rgba(255,255,255,0.08);
    flex:1;
    position:relative;
    overflow:hidden;
    cursor:pointer;

    display:block; /* remove flex alignment issue */
}

.panel:last-child {
  border-right: none;
}

.panel img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;          
    object-position:center;    /* center crop */
    z-index:0;
    transition:0.6s ease;
}


/* ================= PANEL OVERLAY ================= */
.panel::after {
  background: rgba(0,0,0,0.6);
      content:"";
    position:absolute;
    inset:0;
    z-index:1; /* between image and text */
}

/* ================= CONTENT ================= */
.content {
  position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%); /* 🔥 PERFECT CENTER */

    z-index:2;
    width:80%;
    text-align:center;
}

/* ICON */
.content i {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--red2);
  transition: 0.4s;
}

/* TITLE */
.content h2 {
  font-size: 22px;
  letter-spacing: 2px;
  color: #fff;
  transition: 0.3s;
}

/* DESCRIPTION */
.content p {
  color: #ddd;
  margin-top: 15px;
  font-size: 18px;
    opacity:0;
    transform:translateY(20px);
    transition:0.5s ease;
}

/* ================= HOVER ENHANCEMENTS ================= */

/* glow icon */
.panel:hover i {
  transform: scale(1.2);
  text-shadow: 0 0 12px rgba(251, 5, 1, 0.782);
}

/* gold highlight on title */
.panel:hover h2 {
  color: var(--red1);
}

/* richer overlay */
.panel:hover::after {
  background: rgba(0, 0, 0, 0.393);
}

/* ================= BUTTON ================= */
.services-btn {
  text-align: center;
  margin-top: 60px;
}

.services-btn .btn.primary {
  background: linear-gradient(90deg,var(--red1),var(--red2));
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(245,215,110,0.3);
}

.services-btn .btn.primary:hover {
  box-shadow: 0 12px 30px rgba(245,215,110,0.5);
}
/* ================= CORE BEHAVIOR ================= */

/* All shrink when hovering container */
.services:hover .panel {
  flex: 1;
}

/* Active panel grows */
.panel:hover {
  flex: 3;
}

/* ================= DIRECTION FEEL ================= */

/* LEFT CARD grows to RIGHT */
.panel:nth-child(1):hover {
  flex: 3;
}

/* MIDDLE grows BOTH sides (natural flex behavior) */
.panel:nth-child(2):hover {
  flex: 3;
}

/* RIGHT CARD grows to LEFT */
.panel:nth-child(3):hover {
  flex: 3;
}

/* ================= VISUAL EFFECTS ================= */

.panel:hover img {
  transform: scale(1.08);
  transition: 0.6s;
}

.panel:hover::after {
  background: rgba(0,0,0,0.65);
}

/* TEXT SHOW */
.panel:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* ================= MOBILE (600px) ================= */
@media (max-width: 600px){

  .services{
    padding: 60px 20px;
    text-align: center;
  }

  /* HEADER */
  .services-header{
    margin-bottom: 40px;
  }

  .services-header h2{
    font-size: 28px;
  }

  .services-header p{
    font-size: 14px;
  }

  /* STACK PANELS */
  .services-panel{
    flex-direction: column;
    height: auto;
    gap: 20px;
    box-shadow: none;
  }

  /* EACH CARD */
  .panel{
    flex: unset;
    height: 250px;
    border-right: none;
    border-radius: 12px;
    overflow: hidden;
  }

  /* REMOVE HOVER EXPANSION */
  .services:hover .panel,
  .panel:hover{
    flex: unset;
  }

  /* IMAGE */
  .panel img{
    position:absolute;
  }

  /* CONTENT */
  .content{
    width: 90%;
  }

  .content i{
    font-size: 30px;
    color: var(--red2);

  }

  .content h2{
    font-size: 18px;
  }

  .content p{
    font-size: 14px;

    /* ALWAYS VISIBLE (no hover on mobile) */
    opacity: 1;
    transform: translateY(0);
  }

  /* BUTTON */
  .services-btn{
    margin-top: 40px;
  }

}
/* ============================================================================================================= */
/* ================= WHY SECTION ================= */

.solutions{
display:flex;
align-items:center;
justify-content:space-between;
padding:80px 6%;
background:#f8fbff;
position:relative;
overflow:hidden;
}

.solutions-text{
width:40%;
}

.solutions-text h2{
font-size:42px;
color:var(--dark);
margin-bottom:20px;
}

.solutions-text h2 span {
     background:linear-gradient(45deg,var(--red1),var(--red2));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.solutions-text p{
color:var(--secondary);
font-size:17px;
line-height:1.7;
margin-bottom:30px;
max-width:450px;
}

/* ARROWS */

.arrows button{
width:42px;
height:42px;
border-radius:50%;
border:1px solid #ccc;
background:white;
margin-right:10px;
cursor:pointer;
font-size:18px;
transition:0.3s;
}

.arrows button:hover{
background:var(--gold1);
color:white;
border-color:var(--dark);
}

/* RIGHT BLUE BOX */

.solutions-slider{
width:60%;
background:linear-gradient(135deg,var(--red1),var(--red2));
border-radius:60px 0 0 60px;
padding:50px 0;
overflow:hidden;
}

/* SCROLL TRACK */

.slider-track{
display:flex;
gap:30px;
width:max-content;
animation:scrollSolutions 25s linear infinite;
}

/* CARD */

.solution-card{
width:280px;
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0, 0, 0, 0);
transition:0.3s;
}

.solution-card:hover{
transform:translateY(-8px);
}

/* IMAGE */

.solution-card img{
width:100%;
height:180px;
object-fit:cover;
}

/* CARD TEXT */

.card-content{
padding:20px;
z-index: 2;
}

.card-content h3{
color:var(--dark);
margin-bottom:8px;
}

.card-content p{
font-size:14px;
color:var(--secondary);
margin-bottom:12px;
}

.card-content a{
color:var(--gold1);
text-decoration:none;
font-weight:600;
}

/* MARQUEE ANIMATION */

@keyframes scrollSolutions{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* ================= MOBILE (600px) ================= */
@media (max-width: 600px){

  .solutions{
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
    gap: 40px;
  }

  /* TEXT */
  .solutions-text{
    width: 100%;
  }

  .solutions-text h2{
    font-size: 28px;
  }

  .solutions-text p{
    font-size: 14px;
    max-width: 100%;
    margin: 0 auto 25px;
  }

  /* ARROWS CENTER */
  .arrows{
    display: flex;
    justify-content: center;
  }

  /* SLIDER */
  .solutions-slider{
    width: 100%;
    border-radius: 20px; /* remove side cut */
    padding: 30px 0;
  }

  /* TRACK */
  .slider-track{
    gap: 15px;
    animation: scrollSolutions 18s linear infinite; /* faster for mobile */
  }

  /* CARD */
  .solution-card{
    width: 220px;
  }

  .solution-card img{
    height: 140px;
  }

  .card-content{
    padding: 15px;
  }

  .card-content h3{
    font-size: 16px;
  }

  .card-content p{
    font-size: 13px;
  }

}


/* ================= CONTACT SECTION ================= */
.contact-section {
    position: relative;
    min-height: 60vh;
    background: url("https://ucpowder.com/wp-content/uploads/2023/11/What-is-powder-coating.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* GOLDEN TRANSPARENT OVERLAY */
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(69, 68, 65, 0.641); /* golden transparent shade */
    z-index: 1;
}

/* CONTENT CENTERED */
.contact-content {
    position: relative;
    max-width: 700px;
    color: #ffffff; /* dark text for better contrast on golden overlay */
    z-index: 2;

    text-align: center; /* center text */
    padding: 40px;
}

/* HEADING */
.contact-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-content h2 span {
    background: rgb(255, 255, 255);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.contact-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #f7f7f7; /* slightly darker for readability */
}

/* BUTTONS */
.contact-btns {
    display: flex;
    gap: 20px;
    justify-content: center; /* center buttons */
}

.contact-btns .btn.primary {
    background: black;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.4s;
    border: 1px solid white;
}

.contact-btns .btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(245, 215, 110, 0.5);
}

.contact-btns .btn.secondary {
    border: 2px solid var(--red2);
    color: var(white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.4s;
}

.contact-btns .btn.secondary:hover {
    background: linear-gradient(90deg, var(--red1), var(--red2));
    color: #ffffff;
    transform: translateY(-3px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ================= MOBILE (600px) ================= */
@media (max-width: 600px){

    .contact-section{
        min-height: 50vh;
        padding: 40px 15px;
    }

    /* CONTENT */
    .contact-content{
        max-width: 100%;
        padding: 20px 10px;
    }

    /* HEADING */
    .contact-content h2{
        font-size: 26px;
        line-height: 1.4;
    }

    /* TEXT */
    .contact-content p{
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* BUTTONS STACK */
    .contact-btns{
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .contact-btns .btn{
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 10px 20px;
        font-size: 14px;
    }
}
