/* ================= GLOBAL RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  background:#f4f6f9;
  color:#222;
  width: 100%;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header styles moved to header.css */


/* ================= HERO ================= */

.hero{
  position:relative;   /* IMPORTANT */
  height:100vh;
  overflow:hidden;
}

.hero video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.72);   /* stronger contrast */
}


.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:white;
  width:90%;
}

.hero-content h1{
  font-size:20px;
  line-height:1.4;
  letter-spacing:1px;
}

.hero-content p{
  margin:18px 0 35px;
  font-size:20px;
  color:#ffffff;
  text-shadow:0 2px 10px rgba(0,0,0,0.8);
}

.hero-buttons a{
  margin:0 10px;
}

.btn-primary{
  background:#ff9f1a;
  padding:12px 32px;
  border-radius:30px;
  color:#08142a;
  font-weight:600;
  text-decoration:none;
}

.btn-outline{
  border:2px solid #fff;
  padding:12px 32px;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
}


/* ================================================= */
/* ✅ HERO SECTION - FULL RESPONSIVE */
/* ================================================= */

.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.hero video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
  width:85%;
  max-width:1100px;
}

.hero-content h1{
  font-weight:700;
  letter-spacing:2px;
  text-shadow:0 4px 20px rgba(0,0,0,0.8);
}

.hero-content p{
  margin:20px 0 35px;
  text-shadow:0 2px 10px rgba(0,0,0,0.8);
}

.hero-buttons a{
  margin:0 12px;
  display:inline-block;
}

.btn-primary{
  background:#ff9f1a;
  padding:14px 34px;
  border-radius:30px;
  color:#08142a;
  font-weight:600;
  text-decoration:none;
}

.btn-outline{
  border:2px solid #fff;
  padding:14px 34px;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
}

/* ================================================= */
/* 📱 MOBILE (max 576px) */
/* ================================================= */

@media (max-width:576px){

  /* Keep hero full-screen on small screens so content overlays the video/image */
  .hero{
    position:relative;
    height:100vh;
    overflow:hidden;
  }

  .hero video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

  .hero-overlay{
    display:block; /* ensure overlay is visible for contrast */
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
  }

  .hero-content{
    position:absolute;
    /* nudge down so content visually sits beneath the header/logo on phones */
    top:64%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    width:90%;
    max-width:900px;
    padding:0 12px;
  }

  .hero-content h1{
    font-size:18px; /* smaller headline on phones */
    letter-spacing:0.5px;
    line-height:0.5px;
    font-weight:600;
  }

  .hero-content p{
    font-size:10px;
    margin:10px 0 16px;
  }

  .hero-buttons a{
    display:inline-block;
    margin:6px 8px;
    min-width:140px;
  }

  .btn-primary,
  .btn-outline{
    padding:9px 18px;
    font-size:13px;
  }
}

/* ================================================= */
/* 📱 TABLET (577px – 992px) */
/* ================================================= */

@media (min-width:577px) and (max-width:992px){

  .hero-content h1{
    font-size:38px;
  }

  .hero-content p{
    font-size:17px;
  }

  .btn-primary,
  .btn-outline{
    padding:12px 28px;
  }
}

/* ================================================= */
/* 💻 SMALL LAPTOP (993px – 1200px) */
/* ================================================= */

@media (min-width:993px) and (max-width:1200px){

  .hero-content h1{
    font-size:46px;
  }

  .hero-content p{
    font-size:19px;
  }
}

/* ================================================= */
/* 🖥 LARGE SCREENS (1200px+) */
/* ================================================= */

@media (min-width:1200px){

  .hero-content h1{
    font-size:60px;
  }

  .hero-content p{
    font-size:22px;
  }
}



/* ================= HIGHLIGHTS ================= */
.highlights{
  padding:80px 60px;
   background:
    radial-gradient(circle at 20% 20%, rgba(255,165,0,0.12), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(0,150,136,0.12), transparent 60%),
    linear-gradient(
      180deg,
      #2b5068,   /* lighter top */
      #224359,   /* mid steel */
      #142a38    /* softer dark bottom */
    );
background-size:200% 200%;
  animation: moltenFlow 18s ease-in-out infinite;
  z-index:-1;
}
 


@keyframes highlightsGradient{
  0%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
  100%{ background-position:0% 50%; }
}


.highlights::before{
  content:"";
  position:absolute;
  top:-120px;
  left:0;
  width:100%;
  height:120px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0)
  );
  pointer-events:none;
}


.highlights::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(
    circle at top center,
    rgba(255,255,255,0.12),
    transparent 60%
  );
  pointer-events:none;
}


.highlights h2{
  text-align:center;
  font-size:34px;
  margin-bottom:50px;
  color:whitesmoke;
  font-weight:700;
  letter-spacing:0.6px;
}

.highlights h2::after{
  content:"";
  display:block;
  width:70px;
  height:4px;
  background:#ff9f1a;
  margin:14px auto 0;
  border-radius:4px;
}


.highlight-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}


.highlight-card{
  position:relative;
  /* background: linear-gradient(
    180deg,
    rgba(255,255,255,0.94),
    rgba(240,246,250,0.96)
  ); */
  background-color: white;

  padding:15px;
  border-radius:14px;
  border-left:5px solid #ff9f1a;
  box-shadow:0 18px 45px rgba(0,0,0,0.35);
  transition:all 0.45s ease;
  cursor:pointer;
  overflow:hidden;
}


.highlight-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,159,26,0.25),
    transparent
  );
  opacity:0;
  transition:0.45s;
}

.highlight-card:hover::before{
  opacity:1;
}

.highlight-card:hover{
  transform:translateY(-14px);
  box-shadow:0 30px 70px rgba(255,159,26,0.45);
}

.img-box{
  height:260px;
  overflow:hidden;
  border-radius:10px;
}

.img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

.highlight-card:hover img{
  transform:scale(1.12);
}


.highlight-card h3,
.highlight-card p{
  position:relative;
  z-index:1;
}

.highlight-card h3{
  color:#0f2a44;
  margin-top:12px;
}

.highlight-card p{
  color:#475569;
}
/* about css========================================== */
.about-section{
  padding:100px 60px;
   background:#e6f2f8;   /* light blue instead of grey */
}


.about-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
}

/* IMAGE */
.about-image{
  position:relative;
  flex:1;
}

.about-image img{
  width:100%;
  border-radius:24px;
  box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

/* EXPERIENCE CARD */
.experience-box{
  position:absolute;
  bottom:-40px;
  right:-40px;
  background:#173a34;
  color:#fff;
  padding:40px 35px;
  border-radius:22px;
  text-align:center;
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.experience-box h2{
  font-size:48px;
  margin:0;
}

.experience-box p{
  margin-top:10px;
  font-size:16px;
  line-height:1.4;
}

/* CONTENT */
.about-content{
  flex:1;
}

.about-content .tag{
  font-size:14px;
  font-weight:600;
  color:#4b7f6a;
  letter-spacing:2px;
}

.about-content h2{
  font-size:42px;
  margin:15px 0 20px;
  color:#173a34;
}

.about-content p{
  font-size:17px;
  color:#555;
  line-height:1.7;
}

.about-content ul{
  margin:25px 0;
  padding:0;
  list-style:none;
}

.about-content ul li{
  margin-bottom:12px;
  padding-left:28px;
  position:relative;
  color:#173a34;
  font-weight:500;
}

.about-content ul li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#f4b400;
}

/* BUTTON */
.btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 28px;
  border:2px solid #173a34;
  border-radius:30px;
  color:#173a34;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn:hover{
  background:#173a34;
  color:#fff;
}

/* ========================================= */
/*        COMPLETE RESPONSIVE CSS            */
/* ========================================= */

/* 📱 MOBILE DEVICES (max 576px) */
@media (max-width: 576px){

  /* ===== Highlights Section ===== */
  .highlights{
    padding:60px 20px;
  }

  .highlights h2{
    font-size:24px;
    margin-bottom:30px;
  }

  .highlight-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .img-box{
    height:200px;
  }

  /* ===== About Section ===== */
  .about-section{
    padding:60px 20px;
  }

  .about-container{
    flex-direction:column;
    gap:40px;
  }

  .about-content h2{
    font-size:28px;
  }

  .about-content p{
    font-size:15px;
  }

  .experience-box{
    position:relative;
    bottom:0;
    right:0;
    margin-top:20px;
    padding:25px;
  }

  .experience-box h2{
    font-size:32px;
  }
}


/* 📱 TABLET DEVICES (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px){

  .highlights{
    padding:70px 40px;
  }

  .highlight-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }

  .img-box{
    height:220px;
  }

  .about-section{
    padding:80px 40px;
  }

  .about-container{
    flex-direction:column;
    gap:50px;
  }

  .about-content h2{
    font-size:34px;
  }

  .experience-box{
    bottom:-20px;
    right:-20px;
    padding:30px;
  }
}


/* 💻 SMALL LAPTOP (993px – 1200px) */
@media (min-width: 993px) and (max-width: 1200px){

  .highlights{
    padding:80px 50px;
  }

  .highlight-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .img-box{
    height:240px;
  }

  .about-section{
    padding:90px 50px;
  }

  .about-content h2{
    font-size:38px;
  }
}


/* 🖥 LARGE SCREENS (1200px+) */
@media (min-width: 1200px){

  .highlight-grid{
    gap:35px;
  }

  .img-box{
    height:280px;
  }

  .about-container{
    max-width:1300px;
  }

  .about-content h2{
    font-size:46px;
  }
}


/* ================= PRODUCTS =================--------------------------- */
 /* UNIQUE INDUSTRIAL PRODUCTS SECTION */

.products-neo{
  position:relative;
  padding:120px 8%;
  overflow:hidden;
  text-align:center;
  color:#fff;
}

.neo-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,165,0,0.12), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(0,150,136,0.12), transparent 60%),
    linear-gradient(
      180deg,
      #2b5068,   /* lighter top */
      #224359,   /* mid steel */
      #142a38    /* softer dark bottom */
    );
  background-size:200% 200%;
  animation: moltenFlow 18s ease-in-out infinite;
  z-index:-1;
}


@keyframes moltenFlow{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

.neo-header h2{
  font-size:42px;
  margin-bottom:10px;
  background:linear-gradient(90deg,#ffffff,#ffda79,#ffffff);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
  letter-spacing:1px;
}

.neo-header p{
  color:#ddd;
  margin-bottom:60px;
}

.neo-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.neo-card{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(10px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 25px rgba(0,245,255,0.15);
  transition:0.4s;
}

.neo-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  background:linear-gradient(120deg,#ff7a18,#00f5ff,#7b2cff);
  opacity:0;
  transition:0.4s;
}

.neo-card:hover::before{
  opacity:0.25;
}

.neo-card:hover{
  transform:translateY(-15px) scale(1.03);
}

.neo-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.neo-info{
  padding:18px;
}

.neo-info h3{
  font-size:20px;
}

.neo-info span{
  font-size:14px;
  color:#ffda79;
}

.explore-btn{
  display:inline-block;
  margin-top:60px;
  padding:14px 36px;
  border-radius:40px;
  background:linear-gradient(120deg,#d6a05f,#b87333);
  color:#ffffff;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  transition:0.3s;
}


.explore-btn:hover{
  transform:translateY(-4px);
}

/* rating ================================================== for home page*/
.testimonials{
  padding:100px 8%;
  text-align:center;
  background:#f8fafc;
}

.small-title{
  color:#0f766e;
  font-weight:600;
  letter-spacing:2px;
  font-size:13px;
}

.testimonials h2{
  font-size:42px;
  margin:20px 0 60px;
  color:#06302b;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.testimonial-card{
  background:#fff;
  padding:35px 28px;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  text-align:left;
  position:relative;
  transition:0.4s;
  display:flex;
  flex-direction:column;
  height:100%;
  min-height:420px;
}

.testimonial-card:hover{
  transform:translateY(-12px);
}

.testimonial-card p{
  flex-grow:1;
}

.stars{
  color:#fbbf24;
  font-size:18px;
}

.quote{
  position:absolute;
  top:20px;
  right:20px;
  font-size:70px;
  color:#0f766e;
  opacity:0.15;
}

.testimonial-card h3{
  margin:15px 0 10px;
  color:#06302b;
}

.testimonial-card p{
  color:#555;
  line-height:1.6;
  flex-grow:1;
  margin-bottom:15px;
}

.client{
  display:flex;
  align-items:center;
  margin-top:20px;
}

.client img{
  width:48px;
  height:48px;
  border-radius:50%;
  margin-right:12px;
}

.client span{
  font-weight:600;
  color:#06302b;
}
/* ========================================= */
/*        PRODUCTS + TESTIMONIALS RESPONSIVE */
/* ========================================= */

/* 📱 MOBILE (max 576px) */
@media (max-width: 576px){

  /* ===== Products Section ===== */
  .products-neo{
    padding:70px 20px;
  }

  .neo-header h2{
    font-size:26px;
  }

  .neo-header p{
    font-size:14px;
    margin-bottom:40px;
  }

  .neo-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .neo-card img{
    height:180px;
  }

  .explore-btn{
    margin-top:40px;
    padding:12px 24px;
    font-size:14px;
  }

  /* ===== Testimonials ===== */
  .testimonials{
    padding:70px 20px;
  }

  .testimonials h2{
    font-size:26px;
    margin:15px 0 40px;
  }

  .testimonial-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .testimonial-card{
    padding:25px 20px;
  }

  .quote{
    font-size:50px;
  }
}


/* 📱 TABLET (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px){

  .products-neo{
    padding:90px 40px;
  }

  .neo-header h2{
    font-size:34px;
  }

  .neo-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }

  .neo-card img{
    height:190px;
  }

  .explore-btn{
    margin-top:50px;
  }

  .testimonials{
    padding:90px 40px;
  }

  .testimonials h2{
    font-size:34px;
  }

  .testimonial-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }
}


/* 💻 SMALL LAPTOP (993px – 1200px) */
@media (min-width: 993px) and (max-width: 1200px){

  .products-neo{
    padding:110px 6%;
  }

  .neo-header h2{
    font-size:38px;
  }

  .neo-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .neo-card img{
    height:200px;
  }

  .testimonials{
    padding:100px 6%;
  }

  .testimonials h2{
    font-size:38px;
  }
}


/* 🖥 LARGE SCREENS (1200px+) */
@media (min-width: 1200px){

  .neo-grid{
    gap:35px;
  }

  .neo-card img{
    height:220px;
  }

  .neo-header h2{
    font-size:46px;
  }

  .testimonials h2{
    font-size:46px;
  }

  .testimonial-grid{
    gap:35px;
  }
}

/* ================= WHY US ================= */
.heros-like{
  position:relative;
  min-height:420px;
  background:url("images/hero.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
}

.heros-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,165,0,0.12), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(0,150,136,0.12), transparent 60%),
    linear-gradient(
      180deg,
      #2b5068,   /* lighter top */
      #224359,   /* mid steel */
      #142a38    /* softer dark bottom */
    );
}

.heros-inner{
  position:relative;
  z-index:1;
  width:100%;
  padding:0 8%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.heros-text{
  max-width:550px;
  color:#fff;
}

.heros-text h1{
  font-size:46px;
  line-height:1.2;
  margin-bottom:15px;
}

.heros-text p{
  font-size:16px;
  line-height:1.6;
  color:#e6f4f3;
}

.heros-btn{
  background:#c9ff4d;
  color:#1b3a3c;
  padding:16px 36px;
  border-radius:40px;
  font-weight:600;
  text-decoration:none;
  letter-spacing:1px;
  transition:0.3s;
}

.heros-btn:hover{
  transform:scale(1.05);
  background:#b6f53d;
}
/* ========================================= */
/*            HEROS RESPONSIVE CSS           */
/* ========================================= */

/* 📱 MOBILE (max 576px) */
@media (max-width: 576px){

  .heros-like{
    min-height:350px;
    text-align:center;
  }

  .heros-inner{
    flex-direction:column;
    justify-content:center;
    gap:25px;
    padding:0 20px;
  }

  .heros-text{
    max-width:100%;
  }

  .heros-text h1{
    font-size:26px;
  }

  .heros-text p{
    font-size:14px;
  }

  .heros-btn{
    padding:12px 26px;
    font-size:14px;
  }
}


/* 📱 TABLET (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px){

  .heros-like{
    min-height:380px;
  }

  .heros-inner{
    flex-direction:column;
    gap:30px;
    text-align:center;
  }

  .heros-text h1{
    font-size:34px;
  }

  .heros-text p{
    font-size:15px;
  }

  .heros-btn{
    padding:14px 30px;
  }
}


/* 💻 SMALL LAPTOP (993px – 1200px) */
@media (min-width: 993px) and (max-width: 1200px){

  .heros-text h1{
    font-size:40px;
  }

  .heros-text p{
    font-size:16px;
  }
}


/* 🖥 LARGE SCREENS (1200px+) */
@media (min-width: 1200px){

  .heros-text h1{
    font-size:52px;
  }

  .heros-text p{
    font-size:18px;
  }

  .heros-like{
    min-height:480px;
  }
}
/* ============================================
   FOOTER — Crystal Dealing Trading Est.
   ============================================ */

.footer {
  background: #1a3a56;
  color: #d0dce8;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.footer-wrapper {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  justify-items: start;
}

.footer-left-shift {
  padding-left: 0;
}

.footer-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo {
  width: 220px;
  max-width: 100%;
  display: block;
  height: auto;
  margin: 0 0 16px;
}

.footer-box p {
  margin: 0;
  color: #d7e1ea;
  line-height: 1.8;
}

.footer-box h3 {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffb540;
}

.footer-box a {
  color: #cfd8e3;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-box a:hover {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-links li {
  margin: 0;
}

.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links li a::before {
  content: '›';
  color: #ffb540;
  font-size: 14px;
  line-height: 1;
}

.footer-social {
  margin: 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer-social a:nth-child(1) { background: #0b5ed7; }
.footer-social a:nth-child(2) { background: #25d366; }
.footer-social a:nth-child(3) { background: #e1306c; }
.footer-social a:nth-child(4) { background: #6c757d; }

.footer-social a:hover {
  transform: scale(1.08);
  background: orange;
}

.footer-bottom {
  margin-top: 32px;
  padding: 18px 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  background: #071a30;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: #cfd8e3;
}

/* ── Inner grid ── */
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 5% 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

/* ── Column base ── */
.f-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Section label ── */
.f-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0a500;
  margin: 0 0 4px;
}

/* ────── COL 1: BRAND ────── */
.f-logo {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 4px;
}

.f-tagline {
  margin: 0;
  color: #9db5c8;
  font-size: 13.5px;
  line-height: 1.75;
}

.f-divider {
  width: 36px;
  height: 3px;
  background: #f0a500;
  border-radius: 2px;
  margin: 2px 0;
}

.f-addr {
  margin: 0;
  color: #9db5c8;
  font-size: 13px;
  line-height: 1.75;
}

.f-addr i {
  color: #f0a500;
  margin-right: 6px;
  font-size: 13px;
}

/* Social icons */
.f-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.f-soc {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.f-soc:hover {
  transform: translateY(-3px);
  opacity: 0.88;
}

.s-phone { background: #0d6efd; }
.s-wa    { background: #25d366; }
.s-ig    { background: #e1306c; }
.s-mail  { background: #5c6e80; }

/* ────── COL 2: CONTACT + LINKS ────── */
.f-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.f-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.f-contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #f0a500;
}

.f-contact-list a {
  color: #b8ccd9;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 13.5px;
}

.f-contact-list a:hover { color: #fff; }

.f-rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 6px 0;
}

/* Quick links */
.f-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.f-nav-list a {
  color: #b8ccd9;
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.f-nav-list a i {
  font-size: 10px;
  color: #f0a500;
}

.f-nav-list a:hover {
  color: #fff;
  padding-left: 4px;
}

/* ────── COL 3: MAP ────── */
.f-map-col {
  gap: 14px;
}

.f-map iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 14px;
  display: block;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

/* ────── BOTTOM BAR ────── */
.f-bottom {
  background: #0f2336;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  padding: 16px 20px;
}

.f-bottom p {
  margin: 0;
  font-size: 13px;
  color: #7a96aa;
}


/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet: 2-column, map full-width */
@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 48px 5% 40px;
  }

  .f-map-col {
    grid-column: 1 / -1;
  }

  .f-map iframe {
    height: 240px;
  }
}

/* Mobile: single column, centered */
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 6% 32px;
    text-align: center;
  }

  .f-col {
    align-items: center;
  }

  .f-logo {
    margin: 0 auto 4px;
  }

  .f-divider {
    margin: 2px auto;
  }

  .f-addr {
    text-align: center;
  }

  .f-socials {
    justify-content: center;
  }

  .f-contact-list li {
    justify-content: center;
  }

  .f-nav-list {
    align-items: center;
  }

  .f-nav-list a:hover {
    padding-left: 0;
  }

  .f-map-col {
    grid-column: unset;
  }

  .f-map iframe {
    height: 220px;
    border-radius: 10px;
  }

  .f-bottom {
    font-size: 12px;
    padding: 14px 16px;
  }
}

/* ===== ABOUT SECTION ===== */
body.dark .about-section{
  background:#08142a !important;
}

body.dark .about-content h2,
body.dark .about-content p,
body.dark .about-content ul li{
  color:#ffffff !important;
}

body.dark .about-content .tag{
  color:#59d1f9 !important;
}

body.dark .experience-box{
  background:#132b52 !important;
}

/* ===== HIGHLIGHTS ===== */
body.dark .highlight-card{
  background:#132b52 !important;
  color:#ffffff !important;
}

body.dark .highlight-card h3{
  color:#ffffff !important;
}

body.dark .highlight-card p{
  color:#cbd5e1 !important;
}

/* ===== PRODUCTS ===== */
body.dark .products-neo{
  background:#08142a !important;
}

body.dark .neo-card{
  background:#132b52 !important;
  color:#ffffff !important;
}

/* ===== TESTIMONIALS ===== */
body.dark .testimonials{
  background:#08142a !important;
}

body.dark .testimonial-card{
  background:#132b52 !important;
  color:#ffffff !important;
}

body.dark .testimonial-card h3,
body.dark .testimonial-card p,
body.dark .client span{
  color:#ffffff !important;
}

/* ===== FOOTER ===== */
body.dark .footer{
  background:#061426 !important;
}

body.dark .footer-bottom{
  background:#020c18 !important;
}
/* ===================================== */
/* EXTRA DARK MODE VISIBILITY FIXES */
/* ===================================== */

/* Fix section headings like: What Our Clients Say */
body.dark .testimonials h2{
  color:#ffffff !important;
}

/* Fix small section labels (About Us, Testimonials) */
body.dark .section-name{
  color:#59d1f9 !important;
}

/* Fix Learn More button */
body.dark .btn-outline{
  color:#ffffff !important;
  border:2px solid #59d1f9 !important;
}

body.dark .btn-outline:hover{
  background:#59d1f9 !important;
  color:#08142a !important;
}

/* Fix hero / general headings safety */
body.dark h1,
body.dark h2,
body.dark h3{
  color:#ffffff !important;
}

/* FIX ONLY LEARN MORE BUTTON IN DARK MODE */
body.dark .btn-outline,
body.dark .btn{
  color:#ffffff !important;
  border:2px solid #59d1f9 !important;
}

body.dark .btn-outline:hover,
body.dark .btn:hover{
  background:#59d1f9 !important;
  color:#08142a !important;
}

/* Hide theme button from header area only */
@media (max-width:768px){

  .nav-actions .theme-btn{
    display:none;
  }

  /* Show theme button inside hamburger menu */
  .menu .theme-btn{
    display:block;
    width:100%;
    padding:10px 0;
    border:none;
    border-top:1px solid rgba(255,255,255,0.2);
    background:transparent;
    color:#fff;
    font-size:15px;
  }

}

/* ================= CHATBOT STYLES ================= */

/* Chatbot Icon */
.chatbot-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background:#ff9f1a;
  align-items: center;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.chatbot-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Chatbot Window */
.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 400px;
  height: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.chatbot-window.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Chatbot Header */
.chatbot-header {
 background:
    radial-gradient(circle at 20% 20%, rgba(255,165,0,0.12), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(0,150,136,0.12), transparent 60%),
    linear-gradient(
      180deg,
      #2b5068,   /* lighter top */
      #224359,   /* mid steel */
      #142a38    /* softer dark bottom */
    );
  color: white;
  padding: 20px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.chatbot-close:hover {
  transform: scale(1.2);
}

/* Messages Container */
.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chatbot-message {
  animation: slideIn 0.4s ease;
  padding: 12px 16px;
  border-radius: 8px;
  word-wrap: break-word;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.5;
}

.chatbot-message.bot {
  background: #f0f0f0;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.chatbot-message.bot.clickable-whatsapp {
  background: linear-gradient(135deg, #25d366, #20ba5c);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.chatbot-message.bot.clickable-whatsapp:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  background: linear-gradient(135deg, #20ba5c, #1a9d50);
}

.chatbot-message.user {
  background: #ff9f1a;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Chatbot Action Button */
.chatbot-action {
  padding: 15px 20px;
  border-top: 1px solid #eee;
}

/* Chatbot Input Area */
.chatbot-input-area {
  display: flex;
  gap: 8px;
  padding: 12px 15px;
  border-top: 1px solid #eee;
  background: #f9f9f9;
  border-radius: 0 0 0 8px;
}

.chatbot-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

.chatbot-input:focus {
  border-color: #ff9f1a;
}

.chatbot-send-btn {
  padding: 10px 14px;
  background: linear-gradient(135deg, #ff9f1a, #ff7f1a);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 159, 26, 0.3);
}

.chatbot-send-btn:active {
  transform: translateY(0);
}


.chatbot-whatsapp-btn {
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.chatbot-whatsapp-btn:hover {
  background: #20ba5c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100% - 30px);
    height: 450px;
    bottom: 90px;
    right: 15px;
    max-height: 60vh;
  }

  .chatbot-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }

  .chatbot-header h3 {
    font-size: 16px;
  }

  .chatbot-messages {
    padding: 15px;
    gap: 10px;
  }

  .chatbot-message {
    font-size: 13px;
    padding: 10px 12px;
  }

  .chatbot-input-area {
    padding: 10px 12px;
    gap: 6px;
  }

  .chatbot-input {
    padding: 8px 10px;
    font-size: 12px;
  }

  .chatbot-send-btn {
    padding: 8px 10px;
    font-size: 12px;
  }
}

/* Tablet responsive */
@media (min-width: 481px) and (max-width: 768px) {
  .chatbot-window {
    width: 350px;
    height: 500px;
    bottom: 100px;
    right: 25px;
  }

  .chatbot-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
    bottom: 25px;
    right: 25px;
  }

  .chatbot-message {
    font-size: 13px;
  }
}

/* Laptop responsive */
@media (min-width: 769px) {
  .chatbot-window {
    bottom: 120px;
    right: 40px;
  }

  .chatbot-icon {
    bottom: 40px;
    right: 40px;
  }
}

/* Dark mode support */
body.dark .chatbot-window {
  background: #1e1e1e;
}

body.dark .chatbot-messages {
  background: #1e1e1e;
}

body.dark .chatbot-message.bot {
  background: #333;
  color: #fff;
}

body.dark .chatbot-message.bot.clickable-whatsapp {
  background: linear-gradient(135deg, #25d366, #20ba5c);
  color: white;
}

body.dark .chatbot-header {
  background: linear-gradient(135deg, #ff7f1a, #ff6f1a);
}

body.dark .chatbot-action {
  border-top-color: #333;
}

body.dark .chatbot-input-area {
  background: #2a2a2a;
  border-top-color: #333;
}

body.dark .chatbot-input {
  background: #333;
  color: #fff;
  border-color: #444;
}

body.dark .chatbot-input::placeholder {
  color: #999;
}