/* ===== HEADER ===== */
.header{
  background:#0b5ed7;
  position:sticky;
  top:0;
  z-index:1000;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Logo */
.logo{
  font-size:22px;
  font-weight:bold;
  color:#fff;
}
.logo span{
  color:#ffdd57;
}

/* Navigation */
.navbar{
  flex:1;
  text-align:center;
}
.nav-links{
  list-style:none;
}
.nav-links li{
  display:inline-block;
  margin:0 12px;
}
.nav-links a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:500;
}
.nav-links a:hover{
  text-decoration:underline;
}

/* Buttons */
.header-btns{
  display:flex;
  gap:8px;
}
.call-btn{
  background:#198754;
  color:#fff;
  padding:8px 14px;
  text-decoration:none;
  border-radius:4px;
  font-size:14px;
}
.whatsapp-btn{
  background:#25d366;
  color:#fff;
  padding:8px 14px;
  text-decoration:none;
  border-radius:4px;
  font-size:14px;
}

/* Mobile Menu */
.menu-toggle{
  display:none;
  font-size:24px;
  color:#fff;
  cursor:pointer;
}

/* Responsive */
@media(max-width:768px){
  .navbar{
    display:none;
    position:absolute;
    top:60px;
    left:0;
    width:100%;
    background:#0b5ed7;
  }
  .nav-links li{
    display:block;
    margin:12px 0;
  }
  .menu-toggle{
    display:block;
  }
}


/* ===== HERO SECTION ===== */
.hero{
  background:linear-gradient(to right, #e9f2ff, #f7fbff);
  padding:60px 16px;
}

.hero-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

/* Content */
.hero-content{
  flex:1;
}

.hero-content h1{
  font-size:38px;
  color:#0b5ed7;
  line-height:1.3;
  margin-bottom:16px;
}
.hero-content h1 span{
  color:#198754;
}

.hero-content p{
  font-size:16px;
  color:#444;
  max-width:520px;
  margin-bottom:22px;
}

/* Buttons */
.hero-buttons{
  display:flex;
  gap:12px;
  margin-bottom:20px;
}
.btn-primary{
  background:#0b5ed7;
  color:#fff;
  padding:12px 22px;
  border-radius:5px;
  text-decoration:none;
  font-size:15px;
}
.btn-secondary{
  background:#25d366;
  color:#fff;
  padding:12px 22px;
  border-radius:5px;
  text-decoration:none;
  font-size:15px;
}

/* Features */
.hero-features span{
  display:inline-block;
  margin-right:14px;
  font-size:14px;
  color:#333;
}

/* Image */
.hero-image{
  flex:1;
  text-align:center;
}
.hero-image img{
  max-width:100%;
  border-radius:12px;
}

/* Responsive */
@media(max-width:768px){
  .hero-container{
    flex-direction:column;
    text-align:center;
  }
  .hero-content h1{
    font-size:30px;
  }
  .hero-buttons{
    justify-content:center;
  }
}

/* ===== SERVICES SECTION ===== */
.services{
  padding:60px 16px;
  background:#f4f7fb;
}

.services-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.services h2{
  font-size:32px;
  color:#0b5ed7;
  margin-bottom:8px;
}

.services-subtitle{
  font-size:15px;
  color:#555;
  margin-bottom:40px;
}

/* Grid */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

/* Service Box */
.service-box{
  background:#fff;
  padding:26px;
  border-radius:10px;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
  transition:0.3s;
}
.service-box:hover{
  transform:translateY(-5px);
}

.service-box h3{
  color:#198754;
  margin-bottom:10px;
  font-size:18px;
}
.service-box p{
  font-size:14px;
  color:#444;
  line-height:1.6;
}

/* Button */
.services-btn{
  margin-top:40px;
}
.services-btn a{
  background:#0b5ed7;
  color:#fff;
  padding:12px 26px;
  text-decoration:none;
  border-radius:6px;
  font-size:15px;
}

/* Responsive */
@media(max-width:992px){
  .services-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .services-grid{
    grid-template-columns:1fr;
  }
}

/* ===== STATISTICS SECTION ===== */
.stats{
  background:#0b5ed7;
  padding:60px 16px;
}

.stats-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  text-align:center;
}

.stat-box{
  background:rgba(255,255,255,0.1);
  padding:30px 20px;
  border-radius:12px;
}

.stat-box h3{
  font-size:40px;
  color:#ffdd57;
  margin-bottom:6px;
}

.stat-box p{
  font-size:15px;
  color:#ffffff;
}

/* Responsive */
@media(max-width:768px){
  .stats-container{
    grid-template-columns:repeat(2,1fr);
  }
}


/* ===== ABOUT US SHORT INTRO ===== */
.about-short{
  background:#f4f7fb;
  padding:60px 16px;
}

.about-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:30px;
}

/* Content */
.about-content{
  flex:1;
}

.about-content h2{
  font-size:32px;
  color:#0b5ed7;
  margin-bottom:16px;
}

.about-content p{
  font-size:15px;
  color:#444;
  line-height:1.7;
  margin-bottom:14px;
}

/* Button */
.about-btn{
  display:inline-block;
  margin-top:12px;
  background:#198754;
  color:#fff;
  padding:12px 26px;
  border-radius:6px;
  text-decoration:none;
  font-size:15px;
}

/* Image */
.about-image{
  flex:1;
  text-align:center;
}
.about-image img{
  max-width:100%;
  border-radius:12px;
}

/* Responsive */
@media(max-width:768px){
  .about-container{
    flex-direction:column;
    text-align:center;
  }
}

/* ===== GALLERY SECTION ===== */
.gallery{
  padding:60px 16px;
  background:#f4f7fb;
}

.gallery-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.gallery h2{
  font-size:32px;
  color:#0b5ed7;
  margin-bottom:8px;
}

.gallery-subtitle{
  font-size:15px;
  color:#555;
  margin-bottom:40px;
}

/* Grid */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* Item */
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:12px;
}

.gallery-item img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:0.4s;
}

.gallery-item:hover img{
  transform:scale(1.1);
}

.gallery-item span{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  background:rgba(0,0,0,0.6);
  color:#fff;
  padding:10px;
  font-size:14px;
}

/* Responsive */
@media(max-width:992px){
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .gallery-grid{
    grid-template-columns:1fr;
  }
}


/* ===== TESTIMONIALS ===== */
.testimonials{
  padding:60px 16px;
  background:#ffffff;
}

.testimonials-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.testimonials h2{
  font-size:32px;
  color:#0b5ed7;
  margin-bottom:8px;
}

.testimonials-subtitle{
  font-size:15px;
  color:#555;
  margin-bottom:40px;
}

/* Grid */
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* Box */
.testimonial-box{
  background:#f7faff;
  padding:28px;
  border-radius:12px;
  text-align:left;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.testimonial-box p{
  font-size:14px;
  color:#444;
  line-height:1.6;
  margin-bottom:14px;
  font-style:italic;
}

.testimonial-box h4{
  color:#198754;
  font-size:16px;
}

.testimonial-box span{
  font-size:13px;
  color:#777;
}

/* Responsive */
@media(max-width:992px){
  .testimonials-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .testimonials-grid{
    grid-template-columns:1fr;
  }
}


/* ===== CONTACT / ENQUIRY FORM ===== */
.contact{
  background:#f4f7fb;
  padding:60px 16px;
}

.contact-container{
  max-width:500px;
  margin:auto;
  text-align:center;
  background:#ffffff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

.contact h2{
  font-size:28px;
  color:#0b5ed7;
  margin-bottom:6px;
}

.contact-subtitle{
  font-size:14px;
  color:#555;
  margin-bottom:24px;
}

/* Form */
.enquiry-form .form-group{
  margin-bottom:16px;
}

.enquiry-form input,
.enquiry-form select{
  width:100%;
  padding:12px;
  font-size:14px;
  border:1px solid #ccc;
  border-radius:6px;
}

.enquiry-form input:focus,
.enquiry-form select:focus{
  outline:none;
  border-color:#0b5ed7;
}

/* Button */
.submit-btn{
  width:100%;
  background:#198754;
  color:#fff;
  padding:12px;
  border:none;
  border-radius:6px;
  font-size:15px;
  cursor:pointer;
}

.submit-btn:hover{
  background:#157347;
}

/* ===== CONTACT FORM ===== */
.contact{
  background:#f4f7fb;
  padding:60px 16px;
}

.contact-container{
  max-width:700px;
  margin:auto;
  background:#ffffff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  text-align:center;
}

.contact h2{
  font-size:32px;
  color:#0b5ed7;
  margin-bottom:6px;
}

.contact-subtitle{
  font-size:15px;
  color:#555;
  margin-bottom:30px;
}

.contact-form{
  text-align:left;
}

.form-group{
  margin-bottom:18px;
}

.form-group label{
  display:block;
  font-size:14px;
  margin-bottom:6px;
  color:#333;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:12px;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:14px;
}

.submit-btn{
  width:100%;
  background:#198754;
  color:#fff;
  padding:14px;
  border:none;
  border-radius:6px;
  font-size:16px;
  cursor:pointer;
}

.submit-btn:hover{
  background:#157347;
}

/* Responsive */
@media(max-width:600px){
  .contact-container{
    padding:26px;
  }
}


/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 10px rgba(0,0,0,0.3);
  z-index:1000;
}

.whatsapp-float img{
  width:34px;
  height:34px;
}


/* ===== FOOTER ===== */
.footer{
  background:#0b5ed7;
  color:#ffffff;
  padding:50px 16px 0;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.footer-box h3,
.footer-box h4{
  margin-bottom:12px;
  color:#ffdd57;
}

.footer-box p,
.footer-box a{
  font-size:14px;
  color:#ffffff;
  line-height:1.6;
  text-decoration:none;
}

.footer-box a:hover{
  text-decoration:underline;
}

/* Social */
.social-links a{
  display:inline-block;
  margin-bottom:8px;
}

/* Bottom */
.footer-bottom{
  text-align:center;
  padding:14px;
  background:#084298;
  margin-top:30px;
  font-size:14px;
}

/* Responsive */
@media(max-width:992px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .footer-container{
    grid-template-columns:1fr;
  }
}


/* ===== MOBILE NAV ===== */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #0b5ed7;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .menu-toggle {
    display: block;
  }

  .header-btns {
    display: none;
  }
}


.why-choose {
  background: #f4f7fb;
  padding: 60px 20px;
  text-align: center;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.choose-box {
  background: #fff;
  padding: 15px;
  border-left: 4px solid #0b5ed7;
  font-weight: 600;
}


/* ===== GALLERY SECTION ===== */
.gallery {
  padding: 60px 16px;
  background: #f4f7fb;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.gallery h1 {
  font-size: 32px;
  color: #0b5ed7;
  margin-bottom: 8px;
}

.gallery-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
