/* Google Fonts */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* common container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 15px;
}

/* images mobile-ku */
img {
  max-width: 100%;
  height: auto;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #1C1C1C;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header h1,
header h3{
    color: #012C22;   /* dark green */
}
header {
    background: #FFFFFF;
    padding: 20px 0;
}

/* Hero Section */
.hero {
    background: #012C22;
    color: white;
    text-align: center;
    padding: 100px 20px;
}
.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
}
.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}
.hero .btn {
    background: #4D0218;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}
.hero .btn:hover {
    background: #012C22;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    text-align: center;
}
.services-preview h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 40px;
    background: #012C22;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.services-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.card {
    background-color: #012C22;
    padding: 30px;
    margin: 10px;
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-10px);
}
.card h3 {
    background: #B9F8CF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}
.emoji{
    -webkit-text-fill-color: initial;
    color: initial;
    font-size: 1.3em;
}
.card p {
    color: white;
    font-size: 14px;
}


/* Footer */
footer {
    background: #012C22;
    text-align: center;
    padding: 20px 0;
    color: white;
    margin-top: 50px;
}
/* ===== SERVICES PAGE TEXT COLOR FIX ===== */

/* service card kulla irukka ella text white */
/* ===== SERVICES LIST FULL DARK GREEN BACKGROUND ===== */
/* ===== OUR SERVICES HEADING ===== */

.services-title {
    text-align: center;
    color: #ffffff;
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 50px;
    letter-spacing: 1px;
}


.services-page {
    background-color: #012C22;   /* full page dark green */
}

/* service section wrapper */
.services {
    background-color: #012C22;
    padding: 60px 0;
}

/* individual service cards */
.service-card {
    background-color: #04332B;   /* slightly different dark green */
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

/* text inside services */
.service-card h2,
.service-card h3,
.service-card p,
.service-card ul li {
    color: #ffffff;   /* white text */
}

.navbar {
    background-color: #ffffff;   /* white header */
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    display: flex;
    justify-content: space-between; /* logo left, links right */
    align-items: center;
}

/* ===== NAV LINKS FIX ===== */
/* ===== FINAL HEADER / NAVBAR ===== */

.navbar {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE : logo + headings */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo img {
    width: 60px;
}

/* Headings */
.header-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin: 0;
    color: #012C22;
}

.header-title h3 {
    font-size: 14px;
    margin-top: 4px;
    color: #444;
}

/* RIGHT SIDE : nav links */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #012C22;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.nav-links a:hover {
    color: #4D0218;
}
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;              /* 👈 images naduvila gap */
    padding: 20px 0;
}
section img {
    margin: 0 60px;   /* images naduvila gap */
}
.whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}
.certificates {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;
    gap: 40px;                 /* image gap */
    flex-wrap: wrap;           /* small screen-la keela pogum */
    margin: 40px auto;
}

.certificates img {
    width: 220px;              /* size adjust panna lam */
    height: auto;
}
@media (max-width: 768px) {
  .row,
  .services,
  .cards,
  .flex {
    flex-direction: column;
  }

  h1 {
    font-size: 24px;
  }

  p {
    font-size: 14px;
  }
}
/* HEADER */
.header {
  background: #111;
  color: #fff;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

/* NAV LINKS */
.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: #fff;
  text-decoration: none;
}

/* MOBILE TOGGLE */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
  }

  .nav a {
    padding: 12px 0;
    border-top: 1px solid #333;
  }

  .nav.active {
    display: flex;
  }
}
.header {
  position: relative;
  z-index: 1000;
}

.nav {
  z-index: 1001;
}
.nav {
  background: #111;   /* dark color */
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111;
  z-index: 1000;
}

.nav {
  background: #111;
  z-index: 1001;
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  header {
    padding: 10px 15px;
  }

  .brand h1 {
    font-size: 24px;
  }

  .brand p {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  section {
    padding: 40px 15px;
  }
}
/* Stop horizontal scroll on mobile */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
/* Gallery heading mobile fix */
@media (max-width: 600px) {
  .gallery h1,
  .gallery-title,
  .gallery-heading {
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
  }
}
/* ==== FORCE STOP HORIZONTAL SCROLL (FINAL) ==== */
html, body {
  width: 100%;
  overflow-x: hidden !important;
}

/* Gallery page container fix */
.gallery,
.gallery-section,
section {
  max-width: 100%;
  overflow-x: hidden;
}

/* Fix big headings cutting on mobile */
@media (max-width: 600px) {

  h2 {
    font-size: 34px !important;
    line-height: 1.2;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .gallery h2,
  .gallery-title,
  .gallery-heading {
    font-size: 34px !important;
    white-space: normal !important;
  }
}
/* ===== HERO SECTION MOBILE FIX ===== */
.hero {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero .container {
  max-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Fix heading cut & swipe issue */
@media (max-width: 600px) {
  .hero h2 {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero p {
    font-size: 15px;
    text-align: center;
  }
}

/* Absolute final horizontal scroll killer */
html, body {
  overflow-x: hidden !important;
}
/* ===== FINAL MOBILE HERO FIX (GUARANTEED) ===== */

/* Override container on mobile */
@media (max-width: 768px) {

  .hero {
    width: 100%;
    overflow-x: hidden;
  }

  .hero .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
  }

  .hero h2 {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero p {
    font-size: 15px;
    text-align: center;
  }
}

/* Kill horizontal scroll completely */
html, body {
  overflow-x: hidden !important;
}
/* ===== FORCE MOBILE FIX ===== */

* {
  max-width: 100vw !important;
}

html, body {
  width: 100%;
  overflow-x: hidden !important;
}

/* HERO FULL WIDTH */
.hero {
  width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #012C22 !important;
}

/* REMOVE CONTAINER LIMIT */
.hero .container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 60px 16px !important;
  box-sizing: border-box !important;
}

/* TEXT FIX */
.hero h2 {
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  text-align: center;
}


