/* GLOBAL */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}
html{scroll-behavior:smooth}

.container{
  width:100%;
  max-width:1200px;
  padding:0 15px;
  margin:auto;
}


html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* TOP BAR */
.topbar{
  background:linear-gradient(90deg,#0a4c8b,#0d6efd);
  color:#fff;
  font-size:14px;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0;
}
.topbar a{color:#fff;margin-left:10px}

/* HEADER */
header{
  position:sticky;
  top:0;
  background:#fff;
  z-index:999;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
}
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
}
.logo{height:55px}
nav a{
  margin:0 18px;
  color:#0a4c8b;
  text-decoration:none;
  font-weight:600;
  position:relative;
}
nav a::after{
  content:'';
  position:absolute;
  bottom:-6px;
  left:0;
  width:0;
  height:3px;
  background:#0d6efd;
  transition:.3s;
}
nav a:hover::after{width:100%}

/* SLIDER */
.slider{
  height:90vh;
  position:relative;
  overflow:hidden;
}
.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.2s ease;
}
.slide.active{opacity:1}
.slide::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.slider,
.slide {
  width:100%;
  overflow:hidden;
}

.caption{
  position:absolute;
  top:45%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
  animation:fadeUp 1.2s ease;
}
.caption h1{
  font-size:46px;
  margin-bottom:10px;
}
.caption p{
  font-size:18px;
  letter-spacing:1px;
}

@keyframes fadeUp{
  from{opacity:0;transform:translate(-50%,-30%)}
  to{opacity:1;transform:translate(-50%,-50%)}
}

/* SECTIONS */
.section{padding:80px 0}
.gray{background:#f4f7fb}
.center{text-align:center}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}
.grid img{
  width:100%;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* PRODUCTS TABLE */
.table-responsive{overflow-x:auto}
table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
}
th{
  background:#0a4c8b;
  color:#fff;
}
th,td{
  padding:14px;
  border-bottom:1px solid #eee;
}
tr:hover{background:#f0f8ff}

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}
.gallery img{
  width:100%;
  border-radius:15px;
  transition:.4s;
}
.gallery img:hover{
  transform:scale(1.05);
}

/* CONTACT FORM */
form{
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(10px);
  padding:35px;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}
form h2{margin-bottom:20px}
form input,form textarea{
  width:100%;
  padding:14px;
  margin-bottom:15px;
  border-radius:10px;
  border:1px solid #ccc;
  outline:none;
}
form input:focus,form textarea:focus{
  border-color:#0d6efd;
}
form button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:linear-gradient(135deg,#0a4c8b,#0d6efd);
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:.4s;
}
form button:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(13,110,253,.4);
}

/* FOOTER */
footer{
  background:#0a4c8b;
  color:#fff;
  padding:18px 0;
}
.footer{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}

/* FLOATING BUTTONS */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  color:#fff;
  padding:16px;
  border-radius:50%;
  font-size:26px;
  z-index:999;
  box-shadow:0 10px 25px rgba(0,0,0,.3);
}
.enquiry{
  position:fixed;
  bottom:90px;
  right:20px;
  background:#0d6efd;
  color:#fff;
  padding:12px 18px;
  border-radius:30px;
  font-weight:600;
}

/* MOBILE FOOTER */
.mobile-footer{display:none}

@media(max-width:768px){
  .grid{grid-template-columns:1fr}
  nav{display:none}
  .caption h1{font-size:28px}

  .mobile-footer{
    display:flex;
    position:fixed;
    bottom:0;
    width:100%;
    background:#0a4c8b;
    justify-content:space-around;
    padding:12px;
    z-index:999;
  }
  .mobile-footer a{
    color:#fff;
    font-size:22px;
  }
}

.table-responsive{
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}

table{
  min-width:700px;
}

header,
.header {
  width:100%;
  overflow:hidden;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* =======================
   MOBILE & DESKTOP FIXES
======================= */

/* Hide mobile toggle on desktop */
.menu-toggle{display:none}

/* Desktop menu visible only on desktop */
.desktop-menu{display:flex}

/* FIX WhatsApp & Enquiry Desktop */
.whatsapp{
  bottom:30px;
  right:25px;
}
.enquiry{
  bottom:100px;
  right:20px;
  border-radius:30px;
  padding:12px 22px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* ---------------- MOBILE ---------------- */
@media(max-width:768px){

  /* Hide topbar on mobile */
  .topbar{display:none}

  /* Hide logo inline feel (centered header) */
  .header{
    justify-content:space-between;
  }

  /* Hide desktop menu */
  .desktop-menu{display:none}

  /* Show hamburger */
  .menu-toggle{
    display:block;
    font-size:26px;
    color:#0a4c8b;
    cursor:pointer;
  }

  /* HIDE FLOATING BUTTONS ON MOBILE */
  .whatsapp,
  .enquiry{
    display:none;
  }
}

/* =======================
   MOBILE SIDEBAR MENU
======================= */
.mobile-menu{
  position:fixed;
  top:0;
  right:0;
  transform:translateX(100%);
  width:80%;
  max-width:320px;
  height:100vh;
  background:linear-gradient(135deg,#0a4c8b,#0d6efd);
  padding:40px 25px;
  z-index:2000;
  transition:transform .45s ease;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.mobile-menu.active{
  transform:translateX(0);
}


/* Menu Links */
.mobile-menu a{
  color:#fff;
  font-size:20px;
  text-decoration:none;
  font-weight:600;
  animation:slideFade .5s ease forwards;
}

/* Close Button */
.close-btn{
  font-size:36px;
  color:#fff;
  align-self:flex-end;
  cursor:pointer;
}

/* Animation */
@keyframes slideFade{
  from{opacity:0;transform:translateX(40px)}
  to{opacity:1;transform:translateX(0)}
}

/* =======================
   CONTACT INFO CARD
======================= */

.contact-info-card{
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(12px);
  padding:35px;
  border-radius:22px;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
  transition:.4s;
}

.contact-info-card h3{
  margin-bottom:25px;
  font-size:24px;
  color:#0a4c8b;
}

.info-item{
  display:flex;
  align-items:flex-start;
  gap:15px;
  margin-bottom:22px;
}

.info-item:last-child{
  margin-bottom:0;
}

.info-item .icon{
  width:48px;
  height:48px;
  border-radius:50%;
  background:linear-gradient(135deg,#0a4c8b,#0d6efd);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  flex-shrink:0;
  box-shadow:0 8px 20px rgba(13,110,253,.4);
}

.info-item strong{
  display:block;
  font-size:15px;
  margin-bottom:4px;
  color:#333;
}

.info-item p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

.info-item a{
  color:#0d6efd;
  text-decoration:none;
  font-weight:500;
}

.info-item a:hover{
  text-decoration:underline;
}

/* Hover Effect */
.contact-info-card:hover{
  transform:translateY(-4px);
  box-shadow:0 35px 70px rgba(0,0,0,.2);
}

/* MOBILE */
@media(max-width:768px){
  .contact-info-card{
    padding:25px;
  }
}

/* =======================
   ABOUT SECTION (MODERN)
======================= */

.about-section{
  position:relative;
}

.about-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
}

/* About Card */
.about-card{
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(12px);
  padding:40px;
  border-radius:24px;
  box-shadow:0 30px 70px rgba(0,0,0,.15);
  transition:.4s;
}

.about-card:hover{
  transform:translateY(-6px);
  box-shadow:0 40px 90px rgba(0,0,0,.2);
}

.about-tag{
  display:inline-block;
  padding:6px 14px;
  background:linear-gradient(135deg,#0a4c8b,#0d6efd);
  color:#fff;
  border-radius:20px;
  font-size:13px;
  margin-bottom:15px;
}

.about-card h2{
  font-size:32px;
  color:#0a4c8b;
  margin-bottom:15px;
}

.about-card p{
  font-size:15px;
  color:#555;
  line-height:1.8;
  margin-bottom:30px;
}

/* Features */
.about-features{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

.feature{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 18px;
  border-radius:14px;
  background:#f4f7fb;
  font-size:14px;
  font-weight:500;
  color:#333;
  transition:.3s;
}

.feature i{
  font-size:18px;
  color:#0d6efd;
}

.feature:hover{
  background:#eaf1ff;
  transform:translateX(5px);
}

/* Image */
.about-image img{
  width:100%;
  border-radius:24px;
  box-shadow:0 25px 60px rgba(0,0,0,.18);
}

/* MOBILE */
@media(max-width:768px){
  .about-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-card{
    padding:30px;
  }

  .about-card h2{
    font-size:26px;
  }
}

/* =======================
   FLOATING ACTION BUTTONS
======================= */

.floating-btn{
  position:fixed;
  right:22px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 20px;
  border-radius:50px;
  font-size:15px;
  font-weight:600;
  color:#fff;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  z-index:999;
  transition:.4s ease;
}

/* WhatsApp */
.whatsapp-btn{
  bottom:30px;
  background:linear-gradient(135deg,#25d366,#1ebe5d);
}

.whatsapp-btn i{
  font-size:20px;
}

/* Enquiry */
.enquiry-btn{
  bottom:95px;
  background:linear-gradient(135deg,#0a4c8b,#0d6efd);
}

.enquiry-btn i{
  font-size:18px;
}

/* Hover Animation */
.floating-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

/* Icon Pulse (Subtle) */
.whatsapp-btn i{
  animation:pulse 2s infinite;
}

@keyframes pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.15)}
  100%{transform:scale(1)}
}

/* MOBILE – keep hidden */
@media(max-width:768px){
  .floating-btn{
    display:none !important;
  }
}
