* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2e7d32;
  --secondary: #66bb6a;
  --dark: #081c15;
  --light: #f4fff6;
  --text: #444;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

img {
  width: 100%;
  display: block;
}

section {
  padding: 100px 0;
}

.section-heading.center {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-heading h2,
.about-content h2 {
  font-size: 44px;
  color: #111;
  margin: 15px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.main-img {
  border-radius: 24px;
}

.floating-img {
  width: 260px;
  position: absolute;
  bottom: -50px;
  right: -50px;
  border: 8px solid #fff;
  border-radius: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 35px;
}

.about-features div {
  background: #f4fff6;
  padding: 16px;
  border-radius: 14px;
}


.terrace-grid,
.process-grid,
.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.terrace-box,
.process-card,
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.terrace-content,
.process-card,
.testimonial-card {
  padding: 30px;
}

.process-card span {
  font-size: 44px;
  color: #4caf50;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item img {
  height: 280px;
  object-fit: cover;
  border-radius: 22px;
}

.tall img {
  height: 580px;
}

.testimonial-section {
  background: #f4fff6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-box {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}

.contact-box i {
  font-size: 22px;
  color: #4caf50;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 18px;
  border-radius: 14px;
  border: 1px solid #ddd;
}

.contact-form textarea {
  height: 140px;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  border: none;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: #fff;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
}



  .hero-stats {
    flex-direction: column;
  }

  .hero {
    height: auto;
    padding: 180px 0 100px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .floating-img {
    display: none;
  }


.projects-heading {
  text-align: center;
  max-width: 950px;
  margin: auto;
  margin-bottom: 90px;
  position: relative;
  z-index: 2;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #f4fbf4;
  border-radius: 50px;
  color: #2e7d32;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.project-badge span {
  width: 10px;
  height: 10px;
  background: #43a047;
  border-radius: 50%;
}

.projects-heading h2 {
  font-size: 68px;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 28px;
  font-weight: 700;
}

.projects-heading h2 span {
  color: #2e7d32;
}

.projects-heading p {
  font-size: 20px;
  line-height: 2;
  color: #6b7280;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.project-card {
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.5s ease;
  border: 1px solid #edf2ed;
}

.project-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 60px rgba(46, 125, 50, 0.18);
}

.project-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-content {
  padding: 38px;
}

.project-category {
  display: inline-block;
  padding: 10px 18px;
  background: #f1f8f1;
  color: #2e7d32;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-content h3 {
  font-size: 34px;
  color: #111827;
  margin-bottom: 18px;
  line-height: 1.3;
}

.project-content p {
  color: #6b7280;
  line-height: 2;
  font-size: 17px;
  margin-bottom: 30px;
}


.project-location {
  color: #2e7d32;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f1f8f1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  text-decoration: none;
  font-size: 18px;
  transition: 0.4s;
}

.project-btn::before {
  content: "→";
}

.project-card:hover .project-btn {
  background: #2e7d32;
  color: #fff;
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .projects-heading h2 {
    font-size: 42px;
  }

  .projects-heading p {
    font-size: 17px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-content h3 {
    font-size: 28px;
  }
}



/* ================= FEATURED ================= */

.featured-section {
  padding: 120px 8%;
  background: #f7f8f5;
}

.featured-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.featured-image {
  width: 100%;
  height: 520px;
  border-radius: 40px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-content span {
  color: #32b44a;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 18px;
}

.featured-content h2 {
  font-size: 72px;
  line-height: 1.05;
  color: #07122f;
  margin: 25px 0;
  font-weight: 900;
}

.featured-content p {
  font-size: 24px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.read-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #31b44b;
  color: #fff !important;
  padding: 22px 42px;
  border-radius: 60px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 20px;
  transition: 0.3s;
}

.read-btn:hover {
  transform: translateY(-5px);
}


/* ================= MOBILE HERO FINAL FIX ================= */

@media screen and (max-width: 768px) {
  .hero {
    min-height: auto !important;
    height: auto !important;
    padding: 140px 22px 80px !important;
    display: flex;
    align-items: flex-start;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-tag {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 14px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .hero h1 {
    font-size: 64px !important;
    line-height: 0.95 !important;
    margin-bottom: 25px;
    word-break: break-word;
    letter-spacing: -2px;
  }

  .hero h1 br {
    display: none;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.7;
    width: 100%;
    margin-top: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 30px;
  }

  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }
}

/* SMALL MOBILE */

@media screen and (max-width: 480px) {
  .hero {
    padding: 130px 18px 70px !important;
  }

  .hero h1 {
    font-size: 52px !important;
    line-height: 0.92 !important;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-tag {
    font-size: 13px;
  }
}






@media (max-width: 480px) {
  .hero h1 {
    font-size: 48px !important;
  }

  .logo img {
    width: 130px !important;
  }
}


/* ================= FEATURED SECTION ================= */

.featured-section {
  padding: 120px 8%;
  background: #f7f7f7;
}

.featured-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.featured-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 30px;
}

.featured-content span {
  color: #39d353;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-content h2 {
  font-size: 70px;
  line-height: 1.05;
  margin: 25px 0;
  color: #071133;
}

.featured-content p {
  font-size: 24px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

.read-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: #39d353;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}

.read-btn:hover {
  transform: translateY(-5px);
}

/* ================= SINGLE BLOG PAGE ================= */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 180px 8% 120px;

  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/hero.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-badge {
  display: inline-block;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 92px;
  line-height: 0.95;
  color: #fff;
  font-weight: 900;
  margin-bottom: 30px;
}

.hero p {
  font-size: 24px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

/* ================= ARTICLE SECTION ================= */
/* ARTICLE CONTENT */

.article-content{
    font-size:22px;
    line-height:2;
    color:#5b5b5b;
    font-weight:400;
}

.article-content p{
    margin-bottom:32px;
}

.article-content h2{
    font-size:38px;
    line-height:1.3;
    color:#111;
    margin:60px 0 25px;
}

.article-content h3{
    font-size:30px;
    line-height:1.4;
    color:#111;
    margin:50px 0 20px;
}

.article-content img{
    width:100%;
    height:auto;
    display:block;
    border-radius:16px;
    margin:40px 0;
}

.article-content ul,
.article-content ol{
    padding-left:30px;
    margin:30px 0;
}

.article-content li{
    margin-bottom:15px;
}

.article-content strong{
    color:#222;
    font-weight:700;
}

/* LAYOUT */

.blog-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 380px;
    gap:60px;
    align-items:start;
}

.sidebar{
    position:sticky;
    top:100px;
}

/* TABLET */

@media (max-width:1024px){

    .blog-layout{
        grid-template-columns:1fr;
        gap:40px;
    }

    .sidebar{
        position:static;
    }

    .article-content{
        font-size:20px;
    }

}

/* MOBILE */

@media (max-width:768px){

    .container{
        padding-left:20px;
        padding-right:20px;
    }

    .article{
        width:100%;
    }

    .article-content{
        font-size:17px;
        line-height:1.9;
    }

    .article-content p{
        margin-bottom:24px;
    }

    .article-content h2{
        font-size:28px;
        margin:40px 0 20px;
    }

    .article-content h3{
        font-size:24px;
        margin:35px 0 15px;
    }

    .article-content img{
        border-radius:12px;
        margin:25px 0;
    }

    .article-meta{
        flex-wrap:wrap;
        gap:10px;
        font-size:14px;
    }

    .latest-post{
        gap:12px;
    }

    .latest-post img{
        width:75px;
        height:75px;
    }

}

/* SMALL MOBILE */

@media (max-width:480px){

    .article-content{
        font-size:16px;
        line-height:1.8;
    }

    .article-content h2{
        font-size:24px;
    }

    .article-content h3{
        font-size:20px;
    }

}
/* PAGE BACKGROUND */

.container{
    background:#eef2ef;
    padding:80px 30px;
}

/* SIDEBAR */

.sidebar{
    display:flex;
    flex-direction:column;
    gap:35px;
}

/* SIDEBAR BOX */

.sidebar-box{
    background:#fff;
    border-radius:40px;
    padding:45px;
    box-shadow:0 20px 60px rgba(0,0,0,.06);
}

/* TITLE */

.sidebar-title{
    font-size:60px;
    font-weight:800;
    line-height:1.1;
    color:#000;
    margin-bottom:30px;
    position:relative;
}

.sidebar-title::after{
    content:"";
    width:90px;
    height:6px;
    border-radius:50px;
    background:#34c84a;
    display:block;
    margin-top:20px;
}

/* LATEST BLOGS */

.latest-post{
    display:block;
    text-decoration:none;
    padding:25px 0;
    border-bottom:1px solid #ececec;
}

.latest-post:last-child{
    border-bottom:none;
}

.latest-post-content h4{
    font-size:28px;
    line-height:1.4;
    color:#000;
    font-weight:700;
    margin-bottom:15px;
}

.latest-post-content span{
    font-size:20px;
    color:#777;
}

/* WITH IMAGE */

.latest-post img{
    width:140px;
    height:140px;
    border-radius:25px;
    object-fit:cover;
    margin-bottom:20px;
}

/* VIDEO */

.youtube-box iframe{
    border-radius:30px;
    overflow:hidden;
}

/* SOCIAL */

.social-links{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.social-links a{
    width:70px;
    height:70px;
    background:#f8f8f8;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    color:#000;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    transform:translateY(-5px);
}

/* BACK BUTTON */

.back-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#05070c;
    color:#fff;
    padding:18px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    margin-top:40px;
}

/* TABLET */

@media(max-width:1024px){

    .sidebar-title{
        font-size:42px;
    }

    .latest-post-content h4{
        font-size:22px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .container{
        padding:30px 15px;
    }

    .sidebar-box{
        padding:28px;
        border-radius:28px;
    }

    .sidebar-title{
        font-size:32px;
        margin-bottom:20px;
    }

    .sidebar-title::after{
        width:70px;
        height:5px;
        margin-top:15px;
    }

    .latest-post{
        padding:18px 0;
    }

    .latest-post-content h4{
        font-size:18px;
        line-height:1.5;
    }

    .latest-post-content span{
        font-size:14px;
    }

    .latest-post img{
        width:90px;
        height:90px;
        border-radius:15px;
    }

    .social-links{
        justify-content:flex-start;
        gap:15px;
    }

    .social-links a{
        width:55px;
        height:55px;
        font-size:20px;
    }

    .youtube-box iframe{
        height:220px;
        border-radius:20px;
    }

    .back-btn{
        width:100%;
        justify-content:center;
    }

}

/* =====================================================
   HERO SECTION
===================================================== */

.hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  padding: 170px 7% 100px;

  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/hero.jpg");

  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 32px;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 60px;

  backdrop-filter: blur(12px);

  color: #fff;

  font-size: 14px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 28px;
}

.hero h1 {
  font-size: 88px;
  line-height: 0.92;
  font-weight: 900;
  color: #fff;
  margin-bottom: 28px;
}

.hero p {
  font-size: 22px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
}


/* =====================================================
   SERVICES SECTION
===================================================== */




/* =========================================================
   GLOBAL PROFESSIONAL TYPOGRAPHY
========================================================= */

/* BODY */

body {
  font-family: "Poppins", sans-serif;

  color: #222;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
}

/* =========================================================
   GLOBAL TEXT FIX
========================================================= */

p {
  font-size: 18px;
  line-height: 1.9;
  color: #5e5e5e;

  text-align: justify;
}

/* =========================================================
   HEADINGS
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #08132b;

  font-weight: 800;

  letter-spacing: -1px;

  line-height: 1.2;
}

/* =========================================================
   HERO TEXT
========================================================= */

.hero p,
.blog-hero p {
  max-width: 750px;

  text-align: justify;
}

/* =========================================================
   BLOG CARD
========================================================= */

.blog-card p {
  text-align: justify;

  line-height: 1.8;
}

/* =========================================================
   FEATURED CONTENT
========================================================= */

.featured-content p {
  text-align: justify;

  line-height: 1.9;
}





/* =========================================================
   SERVICE CARD
========================================================= */

.service-card p {
  text-align: justify;

  line-height: 1.9;
}


/* =========================================================
   BUTTONS
========================================================= */

a,
button {
  transition: 0.35s ease;
}

/* =========================================================
   IMAGE FIX
========================================================= */

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   SECTION SPACING
========================================================= */

section {
  position: relative;
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 768px) {
  /* GLOBAL */

  p {
    font-size: 16px;

    line-height: 1.9;

    text-align: left;
  }

  /* HERO */

  .hero p,
  .blog-hero p {
    text-align: left;
  }



  

 
  
  /* SERVICE */

  .service-card p {
    text-align: left;
  }



/* ================= HOME HERO ================= */

.hero,
.hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/tatla-Luxury-Green-Spaces.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ================= BLOG HERO ================= */

.blog-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/tatla-Luxury-Green-Spaces.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ================= SINGLE BLOG HERO ================= */

.single-blog-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/tatla-Luxury-Green-Spaces.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ================= SERVICES HERO ================= */


}
/* =========================
   SERVICES HERO
========================= */

.services-hero{
    min-height:100vh;
    background:#eef2ed;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    padding:140px 7%;
}


.services-hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
}

.hero-tag{
    display:inline-block;
    color:#2ecc40;
    font-size:15px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:25px;
}

.services-hero h1{
    font-size:90px;
    line-height:1;
     color:#fff;
    margin-bottom:30px;
    font-weight:800;
}

.services-hero p{
    max-width:700px;
    font-size:22px;
    line-height:1.9;
    color:rgba(255,255,255,.9);
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:45px;
}

.primary-btn,
.secondary-btn{
    padding:18px 35px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.primary-btn{
    background:#2ecc40;
    color:#fff;
}

.secondary-btn{
    background:#fff;
    color:#08132b;
}

/* =========================
   SERVICES SECTION
========================= */

.services-section{
    padding:120px 7%;
    background:#f5f7f4;
}

.section-top{
    max-width:900px;
    margin:0 auto 80px;
    text-align:center;
}

.section-top span{
    color:#2ecc40;
    font-size:15px;
    font-weight:800;
    letter-spacing:2px;
}

.section-top h2{
    font-size:76px;
    line-height:1.05;
    color:#08132b;
    margin:20px 0;
}

.section-top p{
    font-size:21px;
    color:#667085;
    line-height:1.8;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:35px;
    padding:45px 40px;
    position:relative;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-number{
    position:absolute;
    top:25px;
    right:25px;
    font-size:70px;
    font-weight:900;
    color:rgba(0,0,0,.05);
}

.service-icon{
    width:95px;
    height:95px;
    border-radius:25px;
    background:#eef7ee;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
}

.service-icon i{
    font-size:42px;
    color:#2ecc40;
}

.service-card h3{
    font-size:32px;
    line-height:1.2;
    margin-bottom:18px;
    color:#08132b;
}

.service-card p{
    font-size:18px;
    line-height:1.9;
    color:#667085;
    margin-bottom:25px;
}

.service-card a{
    text-decoration:none;
    color:#2ecc40;
    font-weight:700;
}
.services-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.55)),
    url("../images/tatla-Luxury-Green-Spaces.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================
   WHY CHOOSE US
========================= */

.why-choose{
    padding:120px 7%;
    background:#eef2ed;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.why-left span{
    color:#2ecc40;
    font-size:15px;
    font-weight:800;
    letter-spacing:2px;
}

.why-left h2{
    font-size:72px;
    line-height:1.05;
    margin:25px 0;
    color:#08132b;
}

.why-left > p{
    font-size:20px;
    line-height:1.9;
    color:#667085;
    margin-bottom:40px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.why-box{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.why-box i{
    color:#2ecc40;
    font-size:22px;
    margin-top:5px;
}

.why-box h4{
    margin-bottom:8px;
    color:#08132b;
}

.why-box p{
    color:#667085;
    line-height:1.7;
}

.why-right img{
    width:100%;
    border-radius:40px;
    display:block;
}

/* =========================
   TABLET
========================= */

@media(max-width:1024px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-choose{
        grid-template-columns:1fr;
    }

    .services-hero h1{
        font-size:70px;
    }

    .section-top h2,
    .why-left h2{
        font-size:56px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .services-hero{
        min-height:auto;
        padding:130px 20px 80px;
    }

    .services-hero h1{
        font-size:48px;
        line-height:1.05;
    }

    .services-hero p{
        font-size:16px;
        line-height:1.9;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .primary-btn,
    .secondary-btn{
        justify-content:center;
        width:100%;
    }

    .section-top h2{
        font-size:38px;
    }

    .why-left h2{
        font-size:38px;
    }

    .section-top p,
    .why-left > p{
        font-size:16px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:30px;
    }

    .service-card h3{
        font-size:24px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-choose{
        gap:50px;
        padding:80px 20px;
    }

    .services-section{
        padding:80px 20px;
    }
}
/*=============BLOG PAGE =================*/

/* ================= HERO ================= */

.blog-hero{
    min-height:100vh;
    display:flex;
    align-items:center;

    padding:160px 8%;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../images/tatla-Luxury-Green-Spaces.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-content{
    max-width:850px;
}

.hero-tag{
    display:inline-block;

    padding:14px 30px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    color:#fff;

    font-size:14px;
    font-weight:700;

    letter-spacing:2px;

    margin-bottom:30px;
}

.blog-hero h1{
    font-size:90px;
    line-height:.95;

    color:#fff;

    font-weight:900;

    margin-bottom:30px;
}

.blog-hero p{
    color:#e5e5e5;

    font-size:22px;

    line-height:1.9;

    max-width:700px;
}

/* ================= FEATURED ================= */

.featured-section{
    padding:120px 8%;

    background:#f5f8f5;
}

.featured-container{
    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1.1fr 1fr;

    gap:60px;

    align-items:center;
}

.featured-image img{
    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:40px;

    display:block;
}

.featured-content span{
    color:#35c94a;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;
}

.featured-content h2{
    font-size:64px;

    line-height:1.1;

    color:#07122f;

    margin:25px 0;
}

.featured-content p{
    font-size:20px;

    line-height:1.9;

    color:#666;

    margin-bottom:35px;
}

.read-btn{
    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 35px;

    border-radius:50px;

    background:#07122f;

    color:#fff;

    text-decoration:none;

    font-weight:700;
}

/* ================= BLOG GRID ================= */

.blog-grid-section{
    padding:120px 8%;

    background:#fff;
}

.grid-header{
    max-width:900px;

    margin:auto;

    text-align:center;

    margin-bottom:80px;
}

.grid-header h2{
    font-size:70px;

    color:#07122f;

    margin-bottom:25px;

    font-weight:900;
}

.grid-header p{
    font-size:22px;

    color:#666;

    line-height:1.9;
}

.blog-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}

.blog-card{
    background:#fff;

    border-radius:35px;

    overflow:hidden;

    text-decoration:none;

    box-shadow:0 20px 50px rgba(0,0,0,.07);

    transition:.4s;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-card-image{
    height:300px;

    overflow:hidden;
}

.blog-card-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;
}

.blog-card:hover .blog-card-image img{
    transform:scale(1.08);
}

.blog-card-content{
    padding:35px;
}

.blog-category{
    color:#35c94a;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:15px;
}

.blog-card-content h3{
    font-size:32px;

    line-height:1.3;

    color:#07122f;

    margin-bottom:18px;

    font-weight:800;
}

.blog-card-content p{
    color:#666;

    font-size:17px;

    line-height:1.9;

    margin-bottom:25px;
}

.blog-bottom{
    display:flex;

    justify-content:space-between;

    align-items:center;
}

.read-more{
    display:flex;

    align-items:center;

    gap:8px;

    color:#35c94a;

    font-weight:700;
}

.blog-bottom span{
    color:#999;

    font-size:14px;
}
/* ================= BLOG SECTION ================= */

.home-blog-section{
    padding:120px 0;
    background:#f8f8f8;
}

.section-title{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.section-title span{
    display:block;
    color:#35c94a;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-title h2{
    font-size:56px;
    line-height:1.1;
    color:#08122e;
    margin-bottom:20px;
}

.section-title p{
    font-size:20px;
    line-height:1.8;
    color:#667085;
}

/* GRID */

.blog-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* CARD */

.blog-card{
    display:block;
    background:#fff;
    border-radius:35px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.4s ease;
}

.blog-card:hover{
    transform:translateY(-10px);
}

/* IMAGE */

.blog-image{
    height:280px;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

/* CONTENT */

.blog-content{
    padding:30px;
}

.blog-tag{
    color:#35c94a;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.blog-content h3{
    font-size:32px;
    line-height:1.3;
    color:#08122e;
    margin-bottom:18px;
}

.blog-content p{
    color:#667085;
    font-size:18px;
    line-height:1.8;
    margin-bottom:25px;
}

.read-more{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#35c94a;
    font-weight:700;
    font-size:17px;
}

/* TABLET */

@media(max-width:991px){

    .blog-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:42px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .home-blog-section{
        padding:80px 20px;
    }

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:16px;
    }

    .blog-image{
        height:220px;
    }

    .blog-content{
        padding:24px;
    }

    .blog-content h3{
        font-size:24px;
    }

    .blog-content p{
        font-size:16px;
    }
}
/* ================= MOBILE ================= */

@media(max-width:1024px){

    .featured-container{
        grid-template-columns:1fr;
    }

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .blog-hero h1{
        font-size:65px;
    }

    .featured-content h2{
        font-size:50px;
    }

    .grid-header h2{
        font-size:50px;
    }
}

@media(max-width:768px){

    .blog-hero{
        min-height:auto;

        padding:140px 20px 90px;
    }

    .blog-hero h1{
        font-size:46px;
    }

    .blog-hero p{
        font-size:16px;
    }

    .hero-tag{
        width:100%;
        text-align:center;
    }

    .featured-section,
    .blog-grid-section{
        padding:80px 20px;
    }

    .featured-image img{
        height:300px;
    }

    .featured-content h2{
        font-size:34px;
    }

    .featured-content p{
        font-size:16px;
    }

    .grid-header h2{
        font-size:34px;
    }

    .grid-header p{
        font-size:16px;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-card-content{
        padding:25px;
    }

    .blog-card-content h3{
        font-size:24px;
    }

    .blog-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }
}
/* ================= header ================= */
/* =========================
   HEADER
========================= */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:99999;
    background:#fff;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.header-container{
    max-width:1400px;
    margin:auto;
    padding:18px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:180px;
    height:auto;
    display:block;
}

/* NAVBAR */

.navbar{
    display:flex;
    align-items:center;
    gap:40px;
}

.navbar a{
    text-decoration:none;
    color:#111;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.navbar a:hover{
    color:#35c94a;
}

/* HAMBURGER */

.hamburger{
    display:none;
    cursor:pointer;
}

.hamburger span{
    display:block;
    width:28px;
    height:3px;
    background:#111;
    margin:5px 0;
    border-radius:20px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .header-container{
        padding:15px 20px;
    }

    /* LEFT LOGO */

    .logo{
        order:1;
    }

    .logo img{
        width:150px;
    }

    /* RIGHT HAMBURGER */

    .hamburger{
        display:block;
        order:3;
        margin-left:auto;
        z-index:999999;
    }

    /* MOBILE MENU */

    .navbar{
        position:fixed;
        top:80px;
        right:-100%;
        width:280px;
        height:calc(100vh - 80px);
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        gap:25px;
        padding:30px;
        transition:.4s ease;
        box-shadow:-10px 0 30px rgba(0,0,0,.1);
        z-index:9999;
    }

    .navbar.active{
        right:0;
    }

    .navbar a{
        width:100%;
        font-size:18px;
        padding:10px 0;
        border-bottom:1px solid #eee;
    }
}

/* SMALL MOBILE */

@media(max-width:480px){

    .header-container{
        padding:12px 16px;
    }

    .logo img{
        width:130px;
    }

    .navbar{
        width:250px;
    }
}
/* ==========================================
   PREMIUM WHITE FOOTER
========================================== */

.premium-footer{
    position:relative;
    background:#ffffff;
    padding:100px 20px 30px;
    overflow:hidden;
    margin-top:100px;
    border-top:1px solid #ececec;
}

.footer-overlay{
    position:absolute;
    top:-150px;
    right:-150px;
    width:400px;
    height:400px;
    background:rgba(53,201,74,.08);
    border-radius:50%;
    filter:blur(80px);
}

.footer-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:50px;
    padding-bottom:70px;
    border-bottom:1px solid #e8e8e8;
    position:relative;
    z-index:2;
}

/* LOGO */

.footer-logo img{
    width:220px;
    height:auto;
    display:block;
}

/* ABOUT */

.footer-about p{
    color:#666;
    line-height:2;
    margin-top:25px;
    max-width:400px;
}

/* SOCIAL */

.footer-social{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.footer-social a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#f5f5f5;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    text-decoration:none;
    font-size:18px;
    transition:.3s ease;
}

.footer-social a:hover{
    background:#35c94a;
    color:#fff;
    transform:translateY(-5px);
}

/* TITLES */

.footer-links h3,
.footer-contact h3{
    color:#111;
    font-size:24px;
    margin-bottom:25px;
}

/* LINKS */

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:#555;
    text-decoration:none;
    margin-bottom:16px;
    transition:.3s;
    font-size:15px;
}

.footer-links a:hover{
    color:#35c94a;
    padding-left:8px;
}

/* CONTACT */

.contact-item{
    display:flex;
    gap:15px;
    margin-bottom:22px;
    align-items:flex-start;
}

.contact-item i{
    color:#35c94a;
    font-size:18px;
    margin-top:5px;
}

.contact-item p{
    color:#555;
    line-height:1.8;
    margin:0;
}

/* BOTTOM */

.footer-bottom{
    max-width:1300px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    padding-top:25px;
}

.footer-bottom p{
    color:#777;
    margin:0;
}

.footer-bottom-links{
    display:flex;
    gap:25px;
}

.footer-bottom-links a{
    color:#777;
    text-decoration:none;
    transition:.3s;
}

.footer-bottom-links a:hover{
    color:#35c94a;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

}

@media(max-width:768px){

    .premium-footer{
        padding:80px 20px 25px;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
        gap:35px;
    }

    .footer-logo{
        display:flex;
        justify-content:center;
    }

    .footer-logo img{
        width:180px;
    }

    .footer-about p{
        max-width:100%;
    }

    .footer-social{
        justify-content:center;
    }

    .contact-item{
        justify-content:center;
        text-align:left;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom-links{
        justify-content:center;
        flex-wrap:wrap;
    }
}
/* ================= PREMIUM HERO ================= */

.premium-hero{
    position:relative;
    text-align:center;
    padding:120px 20px 100px;
    overflow:hidden;
    background:#eef2ed;
}

/* BACKGROUND CIRCLE */

.premium-hero::before{
    content:"";
    position:absolute;
    top:-250px;
    right:-180px;

    width:650px;
    height:650px;

    background:#e4ebe3;
    border-radius:50%;

    z-index:0;
}

.premium-hero *{
    position:relative;
    z-index:2;
}

/* BADGE */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;

    background:#fff;

    padding:16px 30px;

    border-radius:60px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    font-size:15px;
    font-weight:700;

    color:#35c94a;

    margin-bottom:35px;
}

.hero-badge .dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#35c94a;
}

/* HEADING */

.premium-hero h1{
    max-width:1200px;
    margin:auto auto 30px;

    font-size:82px;
    line-height:1.05;
    font-weight:900;

    color:#08122e;
}

.premium-hero h1 span{
    color:#35c94a;
}

/* TEXT */

.premium-hero p{
    max-width:1000px;
    margin:auto;

    font-size:22px;
    line-height:1.9;

    color:#667085;
}

/* TABLET */

@media(max-width:991px){

    .premium-hero{
        padding:90px 20px 70px;
    }

    .premium-hero h1{
        font-size:58px;
    }

    .premium-hero p{
        font-size:18px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .premium-hero{
        padding:80px 20px 60px;
    }

    .premium-hero::before{
        width:320px;
        height:320px;
        top:-120px;
        right:-120px;
    }

    .hero-badge{
        font-size:12px;
        padding:12px 20px;
    }

    .premium-hero h1{
        font-size:38px;
        line-height:1.15;
    }

    .premium-hero p{
        font-size:16px;
    }
}
/* ==================================
   GLOBAL MOBILE FIX
================================== */

@media (max-width:768px){

    /* TERRACE */

    .terrace-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:25px;
    }

    .terrace-box{
        width:100%;
    }

    /* PROCESS */

    .process-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:25px;
    }

    .process-card{
        width:100%;
    }

    /* TESTIMONIAL */

    .testimonial-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:25px;
    }

    .testimonial-card{
        width:100%;
    }

    /* PROJECTS */

    .projects-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:25px;
    }

    /* SERVICES */

    .services-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:25px;
    }

    /* BLOG */

    .blog-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:25px;
    }

    /* ABOUT FEATURES */

    .about-features{
        display:grid;
        grid-template-columns:1fr;
        gap:15px;
    }

    .about-features div{
        width:100%;
    }

    /* HEADINGS */

    h1{
        font-size:42px;
        line-height:1.15;
    }

    h2{
        font-size:34px;
        line-height:1.2;
    }

    h3{
        font-size:24px;
    }

    p{
        font-size:16px;
        line-height:1.8;
    }

}
@media (max-width:768px){

    .about-section{
        padding:70px 20px !important;
    }

    .about-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:40px !important;
    }

    .about-images{
        order:1;
    }

    .about-content{
        order:2;
    }

    .about-content h2{
        font-size:42px !important;
        line-height:1.15 !important;
        margin-bottom:20px !important;
    }

    .about-content p{
        font-size:17px !important;
        line-height:1.8 !important;
    }

    .section-tag{
        font-size:13px !important;
        letter-spacing:2px;
    }

    .about-features{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:15px !important;
        margin-top:25px;
    }

    .about-features div{
        padding:18px !important;
        font-size:15px !important;
        border-radius:20px;
    }

    .main-img,
    .floating-img{
        width:100% !important;
        height:auto !important;
    }

    .floating-img{
        position:relative !important;
        top:auto !important;
        right:auto !important;
        margin-top:20px;
    }
}
/* =========================
   BLOG CONTENT JUSTIFY
========================= */

.article-content p,
.blog-content p,
.single-post p,
.entry-content p,
.post-content p{
    text-align: justify;
    text-justify: inter-word;
}

/* LISTS */

.article-content li,
.entry-content li,
.post-content li{
    text-align: justify;
}

/* HEADINGS CENTER/LEFT HI RAHENGE */

.article-content h2,
.article-content h3,
.article-content h4,
.entry-content h2,
.entry-content h3,
.entry-content h4{
    text-align: left;
}
@media(max-width:768px){

    .article-content p,
    .blog-content p,
    .entry-content p{
        text-align:left;
    }

}
.article-content p{
    font-size:20px;
    line-height:2;
    color:#5b5b5b;
    text-align:justify;
    text-justify:inter-word;
    margin-bottom:32px;
}
/* =====================
   BLOG SINGLE PAGE
===================== */

body{
    background:#f5f7f4;
}

/* HERO */

.hero{
    position:relative;
    min-height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px;
    color:#fff;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
}

.hero-badge{
    display:inline-block;
    background:#32c852;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:20px;
    color:#fff;
}

.hero p{
    font-size:20px;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}

/* CONTAINER */

.container{
    max-width:1400px;
    margin:auto;
    padding:80px 20px;
}

.blog-layout{
    display:grid;
    grid-template-columns:2fr 380px;
    gap:50px;
    align-items:start;
}

/* ARTICLE */

.article{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.article-image{
    width:100%;
    height:auto;
    display:block;
}

.article-meta{
    display:flex;
    gap:25px;
    padding:25px 40px;
    border-bottom:1px solid #eee;
    color:#777;
    font-size:15px;
}

.article-content{
    padding:40px;
}

.article-content h2{
    font-size:38px;
    margin:35px 0 20px;
}

.article-content h3{
    font-size:30px;
    margin:30px 0 15px;
}

.article-content p{
    line-height:1.9;
    color:#555;
    font-size:18px;
    margin-bottom:20px;
    text-align:justify;
}

.article-content img{
    width:100%;
    border-radius:20px;
    margin:25px 0;
}

/* BACK BUTTON */

.back-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin:0 40px 40px;
    background:#32c852;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

/* SIDEBAR */

.sidebar{
    position:sticky;
    top:30px;
}

.sidebar-box{
    background:#fff;
    padding:35px;
    border-radius:30px;
    margin-bottom:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.sidebar-title{
    font-size:42px;
    font-weight:800;
    margin-bottom:30px;
    position:relative;
}

.sidebar-title::after{
    content:'';
    width:90px;
    height:5px;
    background:#32c852;
    position:absolute;
    left:0;
    bottom:-12px;
    border-radius:20px;
}

/* LATEST POSTS */

.latest-post{
    display:flex;
    gap:15px;
    text-decoration:none;
    color:#111;
    margin-bottom:25px;
    padding-bottom:25px;
    border-bottom:1px solid #eee;
}

.latest-post:last-child{
    border:none;
    margin-bottom:0;
}

.latest-post img{
    width:90px;
    height:90px;
    border-radius:15px;
    object-fit:cover;
}

.latest-post-content h4{
    font-size:18px;
    line-height:1.5;
    margin-bottom:8px;
}

.latest-post-content span{
    font-size:14px;
    color:#888;
}

/* YOUTUBE */

.youtube-box iframe{
    border-radius:20px;
}

/* SOCIAL */

.social-links{
    display:flex;
    gap:15px;
}

.social-links a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#32c852;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:20px;
    transition:.3s;
}

.social-links a:hover{
    transform:translateY(-5px);
}

/* MOBILE */

@media(max-width:991px){

.blog-layout{
    grid-template-columns:1fr;
}

.sidebar{
    position:static;
}

.hero h1{
    font-size:42px;
}

.sidebar-title{
    font-size:32px;
}

}

@media(max-width:768px){

.hero{
    min-height:400px;
}

.hero h1{
    font-size:32px;
}

.hero p{
    font-size:16px;
}

.article-content{
    padding:25px;
}

.article-meta{
    flex-direction:column;
    gap:10px;
    padding:20px 25px;
}

.sidebar-box{
    padding:25px;
}

}
.hero{
    position:relative;
    height:600px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    background-size:cover;
    background-position:center;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    padding:0 20px;
}

.hero h1{
    font-size:72px;
    color:#fff;
    margin:20px 0;
    font-weight:800;
}

.hero p{
    color:#fff;
    font-size:20px;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}

.hero-badge{
    display:inline-block;
    background:#32c852;
    color:#fff;
    padding:10px 25px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}
/* CONTAINER */

.container{
    max-width:1700px;
    margin:auto;
    padding:60px 30px;
}

/* LAYOUT */

.blog-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 420px;
    gap:50px;
    align-items:start;
}

/* ARTICLE */

.article{
    background:#fff;
    border-radius:20px;
    padding:0;
    overflow:hidden;
}

/* CONTENT */

.article-content{
    width:100%;
    padding:40px 50px;
    text-align:left !important;
}

/* PARAGRAPH */

.article-content p{
    font-size:22px;
    line-height:2;
    color:#555;
    margin-bottom:30px;
    text-align:left !important;
}

/* HEADINGS */

.article-content h2{
    font-size:48px;
    line-height:1.2;
    color:#111;
    margin:50px 0 25px;
    font-weight:700;
}

.article-content h3{
    font-size:38px;
    line-height:1.3;
    color:#111;
    margin:40px 0 20px;
    font-weight:700;
}

/* LISTS */

.article-content ul,
.article-content ol{
    padding-left:35px;
    margin:25px 0;
}

.article-content li{
    font-size:20px;
    line-height:2;
    color:#555;
}

/* IMAGES */

.article-content img{
    width:100%;
    height:auto;
    border-radius:15px;
    margin:40px 0;
}

/* BLOCKQUOTE */

.article-content blockquote{
    border-left:5px solid #32c852;
    padding-left:25px;
    margin:35px 0;
    font-size:24px;
    color:#555;
    font-style:italic;
}

/* SIDEBAR */

.sidebar{
    width:100%;
}

/* MOBILE */

@media(max-width:991px){

.blog-layout{
    grid-template-columns:1fr;
}

.article-content{
    padding:30px 25px;
}

.article-content p{
    font-size:18px;
}

.article-content h2{
    font-size:34px;
}

.article-content h3{
    font-size:28px;
}

}
/* ARTICLE BOX REMOVE */

.article{
    background:transparent !important;
    box-shadow:none !important;
    border-radius:0 !important;
    padding:0 !important;
    margin:0 !important;
}

/* CONTENT FULL WIDTH */

.article-content{
    width:100%;
    max-width:none;
    padding:0 20px;
    background:none;
}

/* TEXT */

.article-content p{
    font-size:20px;
    line-height:2;
    text-align:justify;
    color:#444;
    margin-bottom:25px;
}

/* IMAGES */

.article-content img{
    width:100%;
    height:auto;
    border-radius:10px;
    margin:30px 0;
}
.blog-layout{
    display:block;
}

.sidebar{
    margin-top:50px;
}
```css
/* ================= HERO ================= */

.blog-hero{
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('../images/blog-banner.jpg');
    background-size:cover;
    background-position:center;
    min-height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:100px 20px;
}

.hero-content{
    max-width:900px;
}

.hero-tag{
    display:inline-block;
    background:#32c852;
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.blog-hero h1{
    color:#fff;
    font-size:clamp(45px,6vw,80px);
    line-height:1.1;
    margin:25px 0;
    font-weight:800;
}

.blog-hero p{
    color:#fff;
    font-size:20px;
    line-height:1.8;
}

/* ================= FEATURED ================= */

.featured-section{
    padding:100px 0;
    background:#f7f9f8;
}

.featured-container{
    max-width:1500px;
    margin:auto;
    padding:0 30px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.featured-image img{
    width:100%;
    border-radius:20px;
    display:block;
}

.featured-content span{
    color:#32c852;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.featured-content h2{
    font-size:52px;
    line-height:1.2;
    margin:20px 0;
    color:#111;
}

.featured-content p{
    font-size:20px;
    line-height:1.9;
    color:#666;
}

.read-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:25px;
    padding:14px 28px;
    background:#32c852;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
}

/* ================= GRID ================= */

.blog-grid-section{
    padding:100px 0;
}

.grid-header{
    text-align:center;
    max-width:800px;
    margin:auto auto 60px;
}

.grid-header h2{
    font-size:55px;
    margin-bottom:15px;
}

.grid-header p{
    font-size:20px;
    color:#666;
    line-height:1.8;
}

.blog-grid{
    max-width:1600px;
    margin:auto;
    padding:0 30px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* ================= CARD ================= */

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-card-image{
    height:280px;
    overflow:hidden;
}

.blog-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.blog-card-content{
    padding:25px;
}

.blog-category{
    color:#32c852;
    font-size:14px;
    font-weight:700;
    margin-bottom:12px;
    text-transform:uppercase;
}

.blog-card-content h3{
    font-size:28px;
    line-height:1.3;
    color:#111;
    margin-bottom:15px;
}

.blog-card-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.blog-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
}

.read-more{
    color:#32c852;
    font-weight:700;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

.blog-grid{
    grid-template-columns:repeat(2,1fr);
}

.featured-container{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.blog-grid{
    grid-template-columns:1fr;
}

.blog-hero h1{
    font-size:40px;
}

.grid-header h2{
    font-size:35px;
}

.featured-content h2{
    font-size:35px;
}

.featured-content p,
.blog-hero p{
    font-size:17px;
}

}
```css
/* SINGLE BLOG LAYOUT */

.blog-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 380px;
    gap:60px;
    align-items:start;
    max-width:1700px;
    margin:auto;
}

/* ARTICLE */

.article{
    width:100%;
}

/* SIDEBAR */

.sidebar{
    width:380px;
    position:sticky;
    top:30px;
    margin-left:auto;
}

/* SIDEBAR BOX */

.sidebar-box{
    background:#fff;
    border-radius:20px;
    padding:30px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.sidebar-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
    color:#111;
}

/* LATEST ARTICLES */

.latest-post{
    display:flex;
    gap:15px;
    text-decoration:none;
    margin-bottom:20px;
    padding-bottom:20px;
    border-bottom:1px solid #eee;
}

.latest-post:last-child{
    border-bottom:none;
    margin-bottom:0;
}

.latest-post img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:12px;
    flex-shrink:0;
}

.latest-post-content h4{
    font-size:16px;
    line-height:1.4;
    color:#111;
    margin-bottom:8px;
}

.latest-post-content span{
    font-size:13px;
    color:#777;
}

/* MOBILE */

@media(max-width:991px){

.blog-layout{
    grid-template-columns:1fr;
}

.sidebar{
    width:100%;
    position:relative;
    top:0;
}

}
.blog-layout{
    display:grid;
    grid-template-columns: calc(100% - 360px) 320px;
    gap:30px;
    align-items:start;
}

.article{
    width:100%;
    min-width:0;
}

.sidebar{
    width:320px;
    position:sticky;
    top:30px;
}
@media (max-width: 991px){

.blog-layout{
    display:flex;
    flex-direction:column;
}

.article{
    order:1;
}

.sidebar{
    order:2;
    width:100%;
    margin-top:40px;
    position:relative;
    top:0;
}

}       
@media (max-width: 991px){

.blog-layout{
    grid-template-columns:1fr;
}

.article{
    order:1;
}

.sidebar{
    order:2;
}

}
/* ARTICLE CONTENT */

.article-content{
    width:100%;
    max-width:100%;
    padding:20px;
}

/* HEADINGS */

.article-content h1{
    font-size:60px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}

.article-content h2{
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    margin:40px 0 20px;
}

.article-content h3{
    font-size:34px;
    line-height:1.3;
    font-weight:700;
    margin:35px 0 15px;
}

/* PARAGRAPHS */

.article-content p{
    font-size:22px;
    line-height:2;
    color:#444;
    text-align:justify;
    margin-bottom:25px;
}

/* LISTS */

.article-content li{
    font-size:20px;
    line-height:1.9;
}

/* IMAGES */

.article-content img{
    width:100%;
    height:auto;
    margin:30px 0;
    border-radius:15px;
}

/* MOBILE */

@media(max-width:768px){

.article-content{
    padding:15px;
}

.article-content h1{
    font-size:38px;
}

.article-content h2{
    font-size:30px;
}

.article-content h3{
    font-size:26px;
}

.article-content p{
    font-size:18px;
    line-height:1.9;
    text-align:justify;
}

.article-content li{
    font-size:18px;
}

}
.article,
.article-content,
.article-content p,
.article-content h1,
.article-content h2,
.article-content h3{
    text-align:left;
}

.article-content p{
    text-align:justify !important;
}
.container{
    max-width:95%;
    margin:auto;
}

.blog-layout{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:30px;
}
@media (max-width: 991px){

.blog-layout{
    display:flex;
    flex-direction:column;
}

.article{
    order:1;
    width:100%;
}

.sidebar{
    order:2;
    width:100%;
    margin-top:30px;
    position:relative;
    top:0;
}

}
.mobile-sticky-buttons{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    display:flex;
    z-index:9999;
}

.mobile-sticky-buttons a{
    flex:1;
    text-align:center;
    padding:15px 10px;
    color:#fff;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
}

.mobile-sticky-buttons .call-btn{
    background:#222;
}

.mobile-sticky-buttons .whatsapp-btn{
    background:#25D366;
}

.mobile-sticky-buttons i{
    margin-right:8px;
}



/* Mobile bottom spacing */
@media(max-width:767px){
    body{
        padding-bottom:60px;
    }
}
.mobile-sticky-buttons{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    display:flex;
    z-index:999999;
}

.mobile-sticky-buttons a{
    flex:1;
    text-align:center;
    padding:15px;
    color:#fff;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
}

.call-btn{
    background:#222;
}

.whatsapp-btn{
    background:#25D366;
}
.article-content{
    width:100%;
    max-width:100%;
    font-size:18px;
    line-height:1.9;
    text-align:justify;
}

.article-content p{
    margin-bottom:20px;
    text-align:justify;
    text-justify:auto;
    word-spacing:normal;
    letter-spacing:normal;
}

.article-content h2,
.article-content h3,
.article-content h4{
    text-align:left;
    margin-top:30px;
    margin-bottom:15px;
}

@media(max-width:768px){

    .article{
        width:100%;
        padding:0;
    }

    .article-content{
        width:100%;
        font-size:18px;
        line-height:1.8;
        padding:0 15px;
        text-align:left; /* Mobile me justify mat rakho */
    }

    .article-content p{
        text-align:left;
    }
}
.article-image{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:25px;
}
@media(max-width:768px){

    .article-image{
        height:180px;
        border-radius:10px;
    }

}
.about-page{
    padding:60px 0;
    background:#fff;
}

.about-page .container{
    max-width:1300px;
    margin:auto;
    padding:0 25px;
}

/* Hero */

.about-header{
    text-align:center;
    padding:80px 40px;
    border-radius:25px;
    background:linear-gradient(135deg,#1b5e20,#43a047);
    color:#fff;
    margin-bottom:70px;
}

.about-header span{
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;
}

.about-header h1{
    font-size:60px;
    margin:20px 0;
    line-height:1.2;
    color:#fff;
}

.about-header p{
    max-width:800px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#f5f5f5;
}

/* Intro */

.about-intro{
    max-width:1000px;
    margin:auto;
    text-align:center;
    margin-bottom:80px;
}

.about-intro h2{
    font-size:48px;
    margin-bottom:25px;
}

.about-intro p{
    font-size:19px;
    line-height:2;
    color:#555;
}

/* Mission Vision */

.mission-vision{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-bottom:90px;
}

.info-card{
    background:#fff;
    padding:45px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-top:5px solid #43a047;
}

.info-card h3{
    font-size:30px;
    margin-bottom:20px;
}

.info-card p{
    font-size:18px;
    line-height:1.9;
}

/* Section Title */

.services-section h2,
.why-us h2,
.values-section h2{
    text-align:center;
    font-size:48px;
    margin-bottom:50px;
}

/* Services */

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:90px;
}

.service-box{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    font-size:20px;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.service-box:hover{
    transform:translateY(-10px);
    background:#2e7d32;
    color:#fff;
}

/* Why Choose Us */

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:90px;
}

.why-grid div{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    font-weight:600;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

/* Values */

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.value-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-10px);
}

.value-card h4{
    font-size:26px;
    margin-bottom:15px;
}

.value-card p{
    color:#666;
    line-height:1.8;
}

/* Mobile */

@media(max-width:991px){

    .services-grid,
    .why-grid,
    .values-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .mission-vision{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

    .about-header{
        padding:50px 20px;
    }

    .about-header h1{
        font-size:34px;
    }

    .about-intro h2,
    .services-section h2,
    .why-us h2,
    .values-section h2{
        font-size:30px;
    }

    .services-grid,
    .why-grid,
    .values-grid{
        grid-template-columns:1fr;
    }

}
.about-header{
    position:relative;
    padding:140px 50px;
    border-radius:30px;
    overflow:hidden;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('../images/tatla-Luxury-Green-Spaces.jpg');
    background-size:cover;
    background-position:center;
    text-align:center;
}

.about-header h1{
    font-size:72px;
    color:#fff;
    font-weight:800;
    margin-bottom:20px;
}

.about-header p{
    color:#fff;
    font-size:22px;
    max-width:850px;
    margin:auto;
}
.service-box{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.4s;
    border:1px solid #edf1ed;
}

.service-box:hover{
    transform:translateY(-12px);
    box-shadow:
    0 25px 50px rgba(0,0,0,.12);

    border-color:#2e7d32;
}
.info-card{
    position:relative;
    background:#fff;
    padding:60px;
    border-radius:30px;
    overflow:hidden;

    box-shadow:
    0 15px 50px rgba(0,0,0,.08);
}

.info-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(
    90deg,
    #2e7d32,
    #66bb6a
    );
}
.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-grid div{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;

    font-weight:600;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.3s;
}

.why-grid div:hover{
    transform:translateY(-8px);
}
.value-card{
    text-align:left;
    padding:40px;
    border-radius:25px;
    background:#fff;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);
}

.value-card h4{
    font-size:28px;
    margin-bottom:15px;
}

.value-card p{
    line-height:1.9;
}
.about-page{
    background:#f8faf8;
}

.about-page section{
    margin-bottom:120px;
}
/* =========================
   MOBILE DESIGN
========================= */

@media(max-width:768px){

    .about-page{
        padding:30px 0;
    }

    .about-page .container{
        padding:0 15px;
    }

    /* Hero */

    .about-header{
        padding:60px 20px;
        border-radius:20px;
        margin-bottom:40px;
    }

    .about-header span{
        font-size:12px;
        letter-spacing:2px;
    }

    .about-header h1{
        font-size:32px;
        line-height:1.3;
        margin:15px 0;
    }

    .about-header p{
        font-size:15px;
        line-height:1.8;
    }

    /* Intro */

    .about-intro{
        margin-bottom:40px;
        text-align:left;
    }

    .about-intro h2{
        font-size:28px;
        margin-bottom:15px;
    }

    .about-intro p{
        font-size:16px;
        line-height:1.9;
        text-align:left;
    }

    /* Mission Vision */

    .mission-vision{
        grid-template-columns:1fr;
        gap:20px;
        margin-bottom:40px;
    }

    .info-card{
        padding:25px;
        border-radius:20px;
    }

    .info-card h3{
        font-size:22px;
    }

    .info-card p{
        font-size:15px;
        line-height:1.8;
    }

    /* Section Titles */

    .services-section h2,
    .why-us h2,
    .values-section h2{
        font-size:30px;
        margin-bottom:25px;
    }

    /* Services */

    .services-grid{
        grid-template-columns:1fr;
        gap:15px;
        margin-bottom:40px;
    }

    .service-box{
        min-height:auto;
        padding:22px 18px;
        font-size:17px;
        border-radius:16px;
    }

    /* Why Choose Us */

    .why-grid{
        grid-template-columns:1fr;
        gap:15px;
        margin-bottom:40px;
    }

    .why-grid div{
        padding:18px;
        font-size:15px;
        border-radius:15px;
    }

    /* Values */

    .values-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .value-card{
        padding:22px;
        border-radius:18px;
        text-align:left;
    }

    .value-card h4{
        font-size:20px;
    }

    .value-card p{
        font-size:15px;
        line-height:1.8;
    }

    /* Stats */

    .stats-section{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
        margin-top:-25px;
        margin-bottom:40px;
    }

    .stat{
        padding:20px 10px;
        border-radius:15px;
    }

    .stat h2{
        font-size:28px;
    }

    .stat p{
        font-size:13px;
    }

}

/* Small Mobile */

@media(max-width:480px){

    .about-header h1{
        font-size:28px;
    }

    .stats-section{
        grid-template-columns:1fr 1fr;
    }

    .service-box{
        font-size:16px;
    }

}
/* =========================
   CONTACT HERO
========================= */

.contact-hero{
    background:linear-gradient(135deg,#1B5E20,#43A047);
    padding:140px 20px;
    text-align:center;
    position:relative;
    overflow:hidden;
}



.contact-hero .container{
    position:relative;
    z-index:2;
}

.contact-hero span{
    color:#C8E6C9;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.contact-hero h1{
    color:#fff !important;
    font-size:78px;
    font-weight:800;
    line-height:1.1;
    margin:20px auto;
    max-width:1000px;
}

.contact-hero p{
    color:#fff !important;
    font-size:22px;
    line-height:1.8;
    max-width:850px;
    margin:auto;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-main{
    padding:100px 0;
    background:#f8faf8;
}

.contact-main .container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

.contact-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:35px;
}

/* =========================
   LEFT SIDE
========================= */

.contact-info h2{
    font-size:42px;
    margin-bottom:25px;
}

.contact-card{
    background:#fff;
    padding:30px;
    border-radius:24px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-5px);
}

.contact-card h4{
    font-size:24px;
    margin-bottom:15px;
    color:#1B5E20;
}

.contact-card p{
    font-size:17px;
    line-height:1.9;
    color:#555;
}

/* =========================
   FORM
========================= */

.contact-form-box{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form-box h2{
    font-size:58px;
    margin-bottom:30px;
}

.wpcf7-form input,
.wpcf7-form textarea{
    width:100%;
    padding:18px 22px;
    border:1px solid #e5e5e5;
    border-radius:15px;
    margin-bottom:15px;
    font-size:16px;
}

.wpcf7-form textarea{
    height:180px;
}

.wpcf7-submit{
    width:100%;
    background:#2E7D32 !important;
    color:#fff !important;
    border:none !important;
    padding:18px !important;
    border-radius:15px !important;
    font-size:18px !important;
    font-weight:700 !important;
    cursor:pointer;
}

.wpcf7-submit:hover{
    background:#1B5E20 !important;
}

/* =========================
   MAP
========================= */

.map-section{
    padding:0;
}

.map-section iframe{
    width:100%;
    height:550px;
    display:block;
    border:none;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .contact-hero{
        padding:80px 20px;
    }

    .contact-hero h1{
        font-size:40px;
    }

    .contact-hero p{
        font-size:16px;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-info h2{
        font-size:32px;
    }

    .contact-form-box{
        padding:25px;
    }

    .contact-form-box h2{
        font-size:34px;
    }

    .map-section iframe{
        height:350px;
    }

}
.contact-page-title{
    text-align:center;
    margin-bottom:60px;
}

.contact-page-title span{
    color:#2E7D32;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
}

.contact-page-title h1{
    font-size:58px;
    margin:15px 0;
    color:#111;
}

.contact-page-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}


.contact-grid{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
    margin-top:50px;
}

.map-section{
    margin-top:80px;
}

.map-section iframe{
    width:100%;
    height:500px;
    display:block;
    border:none;
}

@media(max-width:768px){

.contact-grid{
    grid-template-columns:1fr;
}

.map-section iframe{
    height:350px;
}

}
.contact-page-title h1{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:15px;
}

.contact-page-title p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    color:#666;
}
.contact-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    margin-bottom:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-left:6px solid #2E7D32;
    transition:.3s ease;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}
.contact-form-box{
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.contact-form-box h2{
    font-size:56px;
    margin-bottom:25px;
}
/* About Section */
.about-section{
    width:100%;
    padding:60px 0;
}

.about-section .container{
    width:calc(100% - 30px);   /* 15px gap each side */
    max-width:100%;
    margin:0 auto;
}

/* Image */
.about-image{
    width:100%;
}

.about-image img{
    width:100%;
    height:420px;              /* apne hisab se */
    object-fit:cover;
    display:block;
    border-radius:30px;
}

/* Content */
.about-content{
    width:100%;
    margin-top:35px;
}

.about-content h6{
    font-size:16px;
    letter-spacing:3px;
    color:#2c7a3d;
    margin-bottom:18px;
}

.about-content h2{
    font-size:60px;
    line-height:1.05;
    font-weight:800;
    margin:0;
}

.about-content p{
    font-size:18px;
    line-height:1.8;
    margin-top:25px;
}
/* Mobile View */
@media (max-width: 768px){

    .container{
        width:100%;
        max-width:100%;
        padding-left:15px;
        padding-right:15px;
    }

    .about-section{
        padding:50px 0;
    }

    .about-section .container{
        width:100%;
        max-width:100%;
        padding:0 15px;
    }

    .about-image{
        width:100%;
    }

    .about-image img{
        width:100%;
        height:320px;
        object-fit:cover;
        border-radius:25px;
    }

    .about-content{
        width:100%;
        margin-top:30px;
    }

    .about-content h2{
        font-size:52px;
        line-height:1.05;
    }

    .about-content p{
        font-size:17px;
        line-height:1.8;
    }

}
/* Professional Global Typography */
body{
    font-family: inherit;
    line-height: 1.8;
}

p,
li,
.entry-content,
.about-content p,
.service-content p,
.blog-content p,
.footer p{
    text-align: justify;
    text-justify: inter-word;
}
/* Professional Justify */
p,
li,
.entry-content,
.about-content p,
.service-content p,
.blog-content p {
    text-align: justify;
    text-justify: inter-word;
    word-spacing: normal;
    letter-spacing: normal;
    hyphens: auto;
    line-height: 1.8;
}
/* ================= HERO SECTION ================= */

.hero{
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero .container{
    position:relative;
    z-index:2;
    max-width:1200px;
    width:90%;
}

.hero-content{
    max-width:700px;
}

.hero-content h1{
    font-size:72px;
    line-height:1.05;
    font-weight:700;
    color:#fff;
    margin-bottom:30px;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
    color:#f2f2f2;
    max-width:620px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-buttons a{
    padding:18px 38px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
}
@media (max-width:768px){

.hero{
    min-height:100vh;
    padding:120px 0 80px;
}

.hero .container{
    width:92%;
}

.hero-content{
    max-width:100%;
}

.hero-content h1{
    font-size:48px;
    line-height:1.15;
}

.hero-content p{
    font-size:17px;
    line-height:1.7;
}

.hero-buttons{
    flex-direction:column;
}

.hero-buttons a{
    width:100%;
    text-align:center;
}

}
@media (max-width:768px){

    p,
    li{
        text-align:left;
    }

}