:root {
  /* Brand Colors */
  --primary-color: #ed2f38;     /* Red (e.g., for buttons) */
  --secondary-color: #5880c0;   /* Bootstrap blue */
  --dark-color: #000000;        /* Text / Headings */
  --light-color: #ffffff;
  --primary: #ed2f38;
  --secondary: #d4a017;
  --light: #f8f9fa;
  --dark: #212529;
  /* Optional Branding Colors */
  --success-color: #198754;     /* WhatsApp green */
  --text-muted: #6c757d;
  --facebook-blue: #1877f2;
  --twitter-blue: #1da1f2;
  --instagram-purple: #e1306c;
  --linkedin-blue: #0077b5;
  /* UI Colors */
  --bg-light: #fef5e9;          /* Background used in about section */
  --card-shadow: rgba(0, 0, 0, 0.05);

  /* Font Weights */
  --font-bold: 700;
  --font-regular: 400;
  --font-family-body:'Roboto', sans-serif;
  --font-family-heading:'Montserrat', sans-serif;
}
 body {
    font-family: var(--font-family-body) !important;
    font-size: 1rem !important;
    overflow-x: hidden;
  }
  
  h1 {
    font-family: var(--font-family-heading);
    color: var(--primary);
  }
   h2 {
    font-family: var(--font-family-heading);
    color: var(--primary);
  }
  h3, h4 {
    font-family: var(--font-family-heading);
    color: var(dark);
  }
   h1 {
   font-size: calc(1.3rem + 0.8vw); /* ~28px-34px */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  h2 {
    font-size: calc(1.2rem + 0.5vw); /* ~28px-34px */
    font-weight: 700;
  }
  h3 {
    font-size: calc(1.05rem + 0.3vw); /* ~22px-26px */
    font-weight: 700;
  }
  .navabr{
    padding: 0 0;
  }
.about-company-section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-light);
  color: var(--dark-color);
}

.about-company-section::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'><path fill='%23fef5e9' fill-opacity='1' d='M0,160L40,165.3C80,171,160,181,240,176C320,171,400,149,480,144C560,139,640,149,720,170.7C800,192,880,224,960,213.3C1040,203,1120,149,1200,133.3C1280,117,1360,139,1400,149.3L1440,160L1440,320L1400,320C1360,320,1280,320,1200,320C1120,320,1040,320,960,320C880,320,800,320,720,320C640,320,560,320,480,320C400,320,320,320,240,320C160,320,80,320,40,320L0,320Z'/></svg>") no-repeat;
  background-size: cover;
}

.nav-link {
  color: var(--dark-color);
  border-radius: 4px;
  margin: 0 5px;
  padding: 8px 20px;
  font-weight: var(--font-regular);
  transition: all 0.3s ease;
  line-height: 1.25;
  text-transform: uppercase;
  font-size: 0.9rem !important;
}

.nav-link.active {
  background: var(--dark-color);
  color: var(--light-color);
}

.card-title {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--dark-color);
  font-weight: var(--font-bold);
  padding:10px 15px;
  border-bottom: 1px solid #DDD;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: var(--font-regular);
}
/* Swiper Arrow Styling */
.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent dark bg */
  color: #fff !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  font-size: 16px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important; /* smaller icon */
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary-color); /* Use your red theme color */
}
/* Section Title Styles */
.what-we-do small {
  letter-spacing: 1px;
  font-size: 13px;
}

/* Main Feature Cards */
.feature-card {
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.feature-card i {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--primary-color, #dc3545); /* fallback to red if no root defined */
}

.feature-card h6 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 0;
}
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa') no-repeat center center;
    background-size: cover;
    min-height: 80vh;
    color: white;
}

.service-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
}

.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
}

.feature-badge {
    background-color: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.profile-banner {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('./../images/sliders/1.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    position: relative;
    margin-bottom: 100px;
}

.profile-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.profile-nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link.active {
    background: var(--primary);
    color: white;
    font-weight: 600;
    border-bottom: 3px solid var(--secondary-color);
}

.about-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(42, 92, 21, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--primary);
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--secondary);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid var(--secondary);
}

.team-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.team-img {
    height: 250px;
    object-fit: cover;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--dark);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
    text-decoration: none;
}

.award-badge {
    display: inline-block;
    background-color: var(--light);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #eee;
}
.blog-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./../images/sliders/1.jpg') no-repeat center center;
    background-size: cover;
    min-height: 50vh;
    color: white;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.category-badge {
    background-color: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.author-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 25px;
}

.author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.related-post-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

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

.comment-card {
    border-left: 3px solid var(--secondary);
    background-color: var(--light);
    border-radius: 0 8px 8px 0;
}

.comment-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.tag-badge {
    display: inline-block;
    background-color: white;
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 30px;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background-color: var(--primary);
    color: white;
    text-decoration: none;
}

blockquote {
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
    font-style: italic;
    margin: 30px 0;
    color: #555;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--dark);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.share-buttons a:hover {
    color: white;
    text-decoration: none;
}

.facebook:hover { background-color: #3b5998; color: white; }
.twitter:hover { background-color: #1da1f2; color: white; }
.linkedin:hover { background-color: #0077b5; color: white; }
.whatsapp:hover { background-color: #25d366; color: white; }

.project-hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./../images/sliders/1.jpg') no-repeat center center;
  background-size: cover;
  min-height: 40vh;
  color: white;
}

.project-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

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

.status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-ongoing {
  background-color: #ffc107;
  color: #000;
}

.status-completed {
  background-color: #28a745;
  color: #fff;
}

.status-upcoming {
  background-color: #17a2b8;
  color: #fff;
}

/* Grid View Specific Styles */
.grid-view .project-card {
  display: block;
}

.grid-view .project-card .card-body {
  padding: 20px;
}

/* List View Specific Styles */
.list-view .project-card {
  display: flex;
  flex-direction: row;
}

.list-view .project-card .img-wrapper {
  width: 35%;
  min-height: 250px;
}

.list-view .project-card .card-body {
  width: 65%;
  padding: 30px;
}

.list-view .project-card .project-card-img {
  height: 100%;
}

.view-options {
  cursor: pointer;
}

.view-options.active {
  color: var(--primary);
  font-weight: bold;
}

.feature-icon {
  color: var(--secondary);
  margin-right: 5px;
}

.filter-card {
  background-color: var(--light);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .list-view .project-card {
      flex-direction: column;
  }
  
  .list-view .project-card .img-wrapper,
  .list-view .project-card .card-body {
      width: 100%;
  }
}
.social-post {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border: 1px solid #DDD;
}

.post-header {
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
}

.post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.post-user {
    font-weight: 600;
    margin-bottom: 0;
}

.post-time {
    font-size: 0.8rem;
    color: #65676b;
}
.social-post-img{
    padding: 0;
}
.post-content {
    padding: 12px 16px;
}

.post-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.post-actions {
    padding: 8px 16px;
    border-top: 1px solid #ddd;
}

.action-btn {
    color: #65676b;
    font-weight: 600;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s;
}

.action-btn:hover {
    background-color: #f0f2f5;
    text-decoration: none;
}

.action-btn i {
    margin-right: 5px;
}

.like-btn:hover {
    color: var(--facebook-blue);
}

.comment-btn:hover {
    color: var(--secondary);
}

.share-btn:hover {
    color: var(--primary);
}

.post-comments {
    padding: 12px 16px;
    background-color: #f0f2f5;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.comment-box {
    background-color: white;
    border-radius: 20px;
    padding: 8px 12px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.social-sidebar {
    position: sticky;
    top: 70px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    font-size: 1.2rem;
}

.facebook-bg {
    background-color: var(--facebook-blue);
}

.twitter-bg {
    background-color: var(--twitter-blue);
}

.instagram-bg {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.linkedin-bg {
    background-color: var(--linkedin-blue);
}

.social-stats {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: #65676b;
}
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./../images/sliders/1.jpg') no-repeat center center;
    background-size: cover;
    min-height: 40vh;
    color: white;
}

.nav-pills .nav-link.active {
    background-color: var(--primary);
    color: white;
}

.nav-pills .nav-link {
    color: var(--primary);
    font-weight: 600;
    margin: 0 5px;
}

.location-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.location-img {
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(42, 92, 21, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-form {
    background-color: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control, .form-select {
    padding: 5px 10px;
    border-radius: 8px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}
/**** Details ***/
.hero-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)) no-repeat center center;
    background-size: cover;
    min-height: 60vh;
    color: white;
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.amenities-badge {
    background-color: var(--light);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
    border: 1px solid #eee;
}

.enquiry-form {
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
}

.location-card {
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gallery-img {
    border-radius: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.highlight-box {
  background: #eaf7ec;
  border-left: 4px solid #28a745;
  padding: 15px;
  margin-bottom: 20px;
}
.feature-icon {
  font-size: 24px;
  margin-right: 10px;
  color: #28a745;
}
.enquiry-form {
  position: sticky;
  top: 100px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.gallery img {
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
}
.cta-buttons .btn {
  margin-right: 10px;
}
.project-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.green-text {
  color: #28a745;
}
.gold-bg {
  background-color: #f3e5ab;
}
.blog-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./../images/sliders/1.jpg') no-repeat center center;
    background-size: cover;
    min-height: 40vh;
    color: white;
}

.blog-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

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

.blog-card.list-view {
    display: flex;
    flex-direction: row;
}

.blog-card.list-view .img-wrapper {
    width: 40%;
    min-height: 250px;
}

.blog-card.list-view .card-body {
    width: 60%;
}

.blog-card.list-view .blog-card-img {
    height: 100%;
}

.category-badge {
    background-color: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}
.category-badge a{
    color: #FFF;
    text-decoration: none;
}
.view-options {
    cursor: pointer;
}

.view-options.active {
    color: var(--primary);
    font-weight: bold;
}

.sidebar-widget {
    background-color: var(--light);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.tag-badge {
    display: inline-block;
    background-color: white;
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 30px;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background-color: var(--primary);
    color: white;
}

.recent-post {
    display: flex;
    margin-bottom: 15px;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

@media (max-width: 768px) {
    .blog-card.list-view {
        flex-direction: column;
    }
    
    .blog-card.list-view .img-wrapper,
    .blog-card.list-view .card-body {
        width: 100%;
    }
}

.privacy-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 30px;
}
.privacy-content {
    padding: 20px 0;
}
.terms-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 30px;
}
.terms-content {
    padding: 20px 0;
}
.gallery-header {
    background-color: #fff;
    padding: 60px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}
.gallery-post {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
}
.post-image-container {
    position: relative;
    overflow: hidden;
}
.post-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
}
.post-image:hover {
    transform: scale(1.02);
}
.post-meta {
    padding: 15px;
}
.post-meta h5 {
    margin-bottom: 5px;
    font-weight: 600;
}
.post-meta p {
    color: #666;
    margin-bottom: 10px;
}
.post-actions {
    display: flex;
    padding: 10px 15px;
    border-top: 1px solid #e0e0e0;
}
.post-actions a {
    color: #666;
    margin-right: 15px;
    text-decoration: none;
}
.post-actions a:hover {
    color: #0a66c2;
}
/* Lightbox Styles */
.lightbox-modal .modal-dialog {
    max-width: 90%;
    max-height: 90vh;
}
.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 1;
}
.lightbox-nav-btn {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-nav-btn:hover {
    background: rgba(0,0,0,0.8);
}
.lightbox-caption {
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
}

/* Stylish Tick List for WYSIWYG Content */
.tick-list ul, .tick-list ol {
  list-style: none;
  padding-left: 0;
}

.tick-list ul li, .tick-list ol li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.tick-list ul li::before, .tick-list ol li::before{
  content: "\2714"; /* Unicode tick mark */
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745; /* Green color */
  font-weight: bold;
  font-size: 18px;
}
.kanther-project {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.kanther-project h1, 
.kanther-project h2, 
.kanther-project h3 {
    color: #2a5885;
}

.kanther-project h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.kanther-project h2 {
    font-size: 24px;
    margin: 25px 0 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.kanther-project h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #3a7ca5;
}

.kanther-project ul {
    padding-left: 20px;
}

.kanther-project li {
    margin-bottom: 8px;
}

.kanther-project .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.kanther-project .cta-button {
    background: #2a5885;
    color: white !important;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.kanther-project .cta-button:hover {
    background: #1e3f6f;
}

.kanther-project .seo-tags {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.kanther-project .final-cta {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f0f7ff;
    border-radius: 8px;
}

.kanther-project .final-cta {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: #f0f7ff;
    border-radius: 10px;
}

.kanther-project .final-cta h2 {
    color: #2a5885;
    margin-bottom: 20px;
    font-size: 24px;
}

.kanther-project .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.kanther-project .cta-button {
    background: #2a5885;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.kanther-project .cta-button:hover {
    background: #1e3f6f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.kanther-project .cta-icon {
    font-size: 18px;
}

@media (max-width: 600px) {
    .kanther-project .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .kanther-project .cta-button {
        width: 100%;
        justify-content: center;
    }
}
.parasa-project {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.parasa-project h1, 
.parasa-project h2, 
.parasa-project h3 {
    color: #2a5885;
}

.parasa-project h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.parasa-project h2 {
    font-size: 24px;
    margin: 25px 0 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.parasa-project h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #3a7ca5;
}

.parasa-project ul {
    padding-left: 20px;
}

.parasa-project li {
    margin-bottom: 8px;
}

.parasa-project .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.parasa-project .cta-button {
    background: #2a5885;
    color: white !important;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.parasa-project .cta-button:hover {
    background: #1e3f6f;
}

.parasa-project .seo-tags {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.parasa-project .final-cta {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f0f7ff;
    border-radius: 8px;
}

.parasa-project .final-cta h2 {
    color: #2a5885;
    margin-bottom: 20px;
    font-size: 24px;
}

.parasa-project .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.parasa-project .cta-button {
    background: #2a5885;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.parasa-project .cta-button:hover {
    background: #1e3f6f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.parasa-project .cta-icon {
    font-size: 18px;
}

@media (max-width: 600px) {
    .parasa-project .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .parasa-project .cta-button {
        width: 100%;
        justify-content: center;
    }
}
.chevapadu-project {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.chevapadu-project h1, 
.chevapadu-project h2, 
.chevapadu-project h3 {
    color: #2a5885;
}

.chevapadu-project h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.chevapadu-project h2 {
    font-size: 24px;
    margin: 25px 0 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.chevapadu-project h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #3a7ca5;
}

.chevapadu-project ul {
    padding-left: 20px;
}

.chevapadu-project li {
    margin-bottom: 8px;
}

.chevapadu-project .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.chevapadu-project .cta-button {
    background: #2a5885;
    color: white !important;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.chevapadu-project .cta-button:hover {
    background: #1e3f6f;
}

.chevapadu-project .seo-tags {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.chevapadu-project .final-cta {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f0f7ff;
    border-radius: 8px;
}

.chevapadu-project .final-cta h2 {
    color: #2a5885;
    margin-bottom: 20px;
    font-size: 24px;
}

.chevapadu-project .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.chevapadu-project .cta-button {
    background: #2a5885;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.chevapadu-project .cta-button:hover {
    background: #1e3f6f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.chevapadu-project .cta-icon {
    font-size: 18px;
}

@media (max-width: 600px) {
    .chevapadu-project .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .chevapadu-project .cta-button {
        width: 100%;
        justify-content: center;
    }
}

.savithru-township {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.savithru-township h1, 
.savithru-township h2, 
.savithru-township h3 {
    color: #2a5885;
}

.savithru-township h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.savithru-township h2 {
    font-size: 24px;
    margin: 25px 0 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.savithru-township h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #3a7ca5;
}

.savithru-township ul {
    padding-left: 20px;
}

.savithru-township li {
    margin-bottom: 8px;
}

.savithru-township .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.savithru-township .cta-button {
    background: #2a5885;
    color: white !important;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.savithru-township .cta-button:hover {
    background: #1e3f6f;
}

.savithru-township .seo-tags {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.savithru-township .final-cta {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f0f7ff;
    border-radius: 8px;
}

.savithru-township .final-cta h2 {
    color: #2a5885;
    margin-bottom: 20px;
    font-size: 24px;
}

.savithru-township .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.savithru-township .cta-button {
    background: #2a5885;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.savithru-township .cta-button:hover {
    background: #1e3f6f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.savithru-township .cta-icon {
    font-size: 18px;
}

@media (max-width: 600px) {
    .savithru-township .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .savithru-township .cta-button {
        width: 100%;
        justify-content: center;
    }
}

.savithru-balusupadu {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.savithru-balusupadu h1, 
.savithru-balusupadu h2, 
.savithru-balusupadu h3 {
    color: #2a5885;
}

.savithru-balusupadu h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.savithru-balusupadu h2 {
    font-size: 24px;
    margin: 25px 0 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.savithru-balusupadu h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #3a7ca5;
}

.savithru-balusupadu ul {
    padding-left: 20px;
}

.savithru-balusupadu li {
    margin-bottom: 8px;
}

.savithru-balusupadu .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.savithru-balusupadu .cta-button {
    background: #2a5885;
    color: white !important;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.savithru-balusupadu .cta-button:hover {
    background: #1e3f6f;
}

.savithru-balusupadu .seo-tags {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.savithru-balusupadu .final-cta {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f0f7ff;
    border-radius: 8px;
}

.savithru-balusupadu .final-cta h2 {
    color: #2a5885;
    margin-bottom: 20px;
    font-size: 24px;
}

.savithru-balusupadu .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.savithru-balusupadu .cta-button {
    background: #2a5885;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.savithru-balusupadu .cta-button:hover {
    background: #1e3f6f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.savithru-balusupadu .cta-icon {
    font-size: 18px;
}

@media (max-width: 600px) {
    .savithru-balusupadu .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .savithru-balusupadu .cta-button {
        width: 100%;
        justify-content: center;
    }
}

.wpcf7-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.wpcf7-form-control {
  border-radius: 8px;
  border: 1px solid #ced4da;
  padding: 10px 14px;
  transition: border-color 0.3s ease;
}

.wpcf7-form-control:focus {
  border-color: #0d6efd;
  box-shadow: none;
}

.wpcf7-submit {
  transition: all 0.3s ease;
}
.wpcf7-submit:hover {
  background-color: #0b5ed7;
}

.wpcard {
  border-radius: 12px;
  background: #f9f9f9;
}

.wpcard h4 {
  font-size: 1.5rem;
  color: #212529;
}

.wpcf7-form .form-label {
  font-weight: 600;
  margin-bottom: 4px;
}

.wpcf7-form-control {
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #ccc;
}

.wpcf7-submit.btn-danger {
  background-color: #eb1d27;
  border-color: #eb1d27;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.wpcf7-submit.btn-danger:hover {
  background-color: #c2181f;
}
