/* ============================================
   EVEREST ARCHITECT - MAIN STYLESHEET
   ============================================ */

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1e5f6b;
  --secondary: #2d7a84;
  --accent: #ff8c42;
  --dark: #1a1a1a;
  --light: #f5f5f5;
  --text: #333;
  --border: #e0e0e0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: white;
} */

/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
} */

/* ============================================
   NAVIGATION BAR
   ============================================ */
/* .navbar {
  background: var(--primary);
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

/* .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  color: var(--primary);
  font-size: 20px;
}

.logo-text h2 {
  font-size: 18px;
  font-weight: bold;
}

.logo-text p {
  font-size: 11px;
  opacity: 0.9;
} */

/* .nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  flex: 1;
  margin-left: 40px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
} */

/* .btn-primary {
  background: var(--accent);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #e67e2f;
} */

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--accent);
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* ============================================
   HERO SECTION
   ============================================ */
/* .hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 80px 20px;
  min-height: 600px;
} */

/* .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-tag {
  background: rgba(255, 140, 66, 0.2);
  display: inline-block;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--accent);
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero .accent {
  color: var(--accent);
} */
/* 
.hero-desc {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.price-box {
  background: rgba(255, 140, 66, 0.15);
  padding: 15px;
  border-left: 4px solid var(--accent);
  margin-bottom: 30px;
}

.price {
  color: var(--accent);
  font-weight: bold;
  font-size: 24px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 12px 30px !important;
  font-size: 16px !important;
}

.trusted-by {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 13px;
}

.trusted-by span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 15px;
  border-radius: 5px;
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
}

.hero-img-1 {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.1);
  padding: 120px 20px;
  border-radius: 8px;
  text-align: center;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}

.hero-img-2,
.hero-img-3 {
  background: rgba(255, 255, 255, 0.1);
  padding: 80px 20px;
  border-radius: 8px;
  text-align: center;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
} */

/* ============================================
   STATS BAR
   ============================================ */
/* .stats-bar {
  background: #1a1a1a;
  padding: 40px 20px;
  color: white;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 10px;
} */

.stat-item p {
  font-size: 13px;
  text-transform: uppercase;
  color: #aaa;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-tag {
  color: var(--accent);
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-desc {
  font-size: 15px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 80px 20px;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid var(--primary);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

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

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 18px;
}

.service-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.learn-more {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.learn-more:hover {
  color: #e67e2f;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 80px 20px;
  background: var(--primary);
  color: white;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.features-text .section-tag {
  color: var(--accent);
}

.features-text h2 {
  color: white;
}

.features-text > p {
  margin-bottom: 30px;
  opacity: 0.95;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* .feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 5px;
  border-left: 4px solid var(--accent);
  display: flex;
  gap: 15px;
} */

/* .feature-num {
  background: var(--accent);
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 3px;
  font-weight: bold;
  min-width: 35px;
  text-align: center;
} */

.feature-item h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 13px;
  opacity: 0.9;
}

.features-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-img {
  background: rgba(255, 255, 255, 0.1);
  padding: 100px 20px;
  border-radius: 8px;
  text-align: center;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   INTERIOR SECTION
   ============================================ */
.interior-section {
  padding: 80px 20px;
  background: white;
}

.tabs-container {
  background: white;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--border);
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-items {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.tab-item {
  border-left: 4px solid var(--accent);
  padding: 15px;
  margin-bottom: 15px;
  background: white;
  border-radius: 3px;
}

.tab-item h4 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 15px;
}

.tab-item p {
  color: #666;
  font-size: 13px;
}

.tab-images {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

.tab-img-large,
.tab-img-small {
  background: #e8e8e8;
  padding: 60px 20px;
  border-radius: 8px;
  text-align: center;
  color: #999;
}

.residential-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.res-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.res-btn:hover {
  background: var(--secondary);
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-section {
  padding: 80px 20px;
  background: white;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.brand-card {
  background: var(--primary);
  color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}

.brand-card:hover {
  transform: translateY(-5px);
}

.brand-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.brand-card p {
  font-size: 12px;
  opacity: 0.9;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section,
.gallery-full {
  padding: 80px 20px;
  background: white;
}

.filter-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
}

.filter-btn.active {
  background: var(--primary);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-grid .gallery-item:nth-child(1),
.gallery-grid .gallery-item:nth-child(2) {
  grid-column: span 1;
}

.gallery-item {
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-img {
  background: #ddd;
  padding: 100px 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.gallery-item h4 {
  padding: 15px;
  color: var(--primary);
  font-size: 15px;
  margin-bottom: 5px;
}

.gallery-item p {
  padding: 0 15px 15px;
  color: #666;
  font-size: 12px;
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item-full {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-img-full {
  background: #ddd;
  padding: 150px 20px;
  text-align: center;
  color: #999;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 80px 20px;
  background: white;
}

.rating {
  font-size: 16px;
  color: var(--accent);
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 8px;
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #666;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.author-avatar {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-author h4 {
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 3px;
}

.testimonial-author p {
  color: #999;
  font-size: 12px;
  margin-bottom: 5px;
}

.service-tag {
  display: inline-block;
  background: #f0f0f0;
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.more-testimonials {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
}

.more-testimonials h4 {
  margin-bottom: 20px;
  color: var(--primary);
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.testimonial-item {
  background: white;
  padding: 15px;
  border-radius: 5px;
  font-size: 13px;
  color: #666;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section,
.contact-page {
  padding: 80px 20px;
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  color: var(--text);
}

.contact-info h2 {
  color: var(--primary);
}

.contact-info > p {
  color: #666;
  margin-bottom: 30px;
}

.contact-details {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.detail-item {
  border-left: 4px solid var(--accent);
  padding-left: 15px;
}

.detail-item .label {
  color: var(--primary);
  font-weight: bold;
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}

.detail-item p {
  color: #666;
  font-size: 14px;
}

.detail-item a {
  color: var(--accent);
  text-decoration: none;
}

.map-placeholder {
  background: #e8e8e8;
  padding: 100px 20px;
  border-radius: 8px;
  text-align: center;
  color: #999;
}

.contact-form-wrapper {
  background: #1a1a1a;
  color: white;
  padding: 40px;
  border-radius: 8px;
}

.contact-form-wrapper h3 {
  margin-bottom: 25px;
  font-size: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px;
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 140, 66, 0.1);
}

.contact-form-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: nowrap;
}

.form-group:nth-child(3),
.form-group:nth-child(4),
.form-group:nth-child(5) {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px;
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.success-message,
.error-message {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 14px;
}

.success-message {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error-message {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary);
  color: white;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo .logo-icon {
  width: 50px;
  height: 50px;
}

.footer-logo h3 {
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
}

.footer-bottom p {
  margin-bottom: 5px;
}

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-trigger:hover .hamburger-line {
  background-color: var(--accent);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-contact .call-number {
    font-size: 12px;
  }

  .header-contact .call-text {
    display: none;
  }

  .header-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .hamburger {
    display: flex;
  }

  .hero-content,
  .features-content,
  .contact-wrapper,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }

  .services-grid,
  .gallery-grid,
  .testimonials-grid,
  .brands-grid,
  .tab-images,
  .residential-items,
  .testimonial-list {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 28px;
  }

  .contact-form-page {
    grid-template-columns: 1fr;
  }

  .form-group:nth-child(3),
  .form-group:nth-child(4),
  .form-group:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  /* Slider Mobile Styles */
  .slider-section {
    min-height: 60vh;
  }

  .slider-content-wrap {
    text-align: center;
    padding: 20px 0;
  }

  .section-heading.white-content .section-title {
    font-size: 32px !important;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .section-heading.white-content .sub-heading {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .antra-desc p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .slider-element-wrap {
    position: static;
    margin-top: 30px;
    text-align: center;
  }

  .slider-element {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .slider-element .element-title {
    font-size: 36px;
    margin-bottom: 5px;
  }

  .slider-element span {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
  }

  .slider-element p {
    font-size: 12px;
    line-height: 1.4;
  }

  .slider-thumb {
    display: none;
  }

  /* .tl-primary-btn.white-btn {
    padding: 12px 24px;
    font-size: 14px;
  } */

  /* Content Sections Mobile Styles */
  .service-section,
  .about-section,
  .features-section,
  .counter-section,
  .process-section,
  .projects-section,
  .testimonials-section,
  .sponsors-section,
  .video-section,
  .blog-section,
  .gallery-section,
  .newsletter-section {
    padding: 60px 0;
  }

  .section-heading-wrap {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-heading .sub-heading {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .section-heading .section-title {
    font-size: 28px !important;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .section-heading p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Service Cards */
  .service-card,
  .feature-item,
  .process-item,
  .project-card,
  .testimonial-item,
  .blog-item,
  .gallery-item {
    margin-bottom: 30px;
    text-align: center;
  }

  /* About Section */
  .about-content {
    text-align: center;
    padding: 20px 0;
  }

  .about-list {
    text-align: left;
    margin-bottom: 20px;
  }

  .about-list li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
  }

  .about-list li img {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
  }

  /* Counter Section */
  .counter-item {
    margin-bottom: 30px;
    text-align: center;
  }

  .counter-number {
    font-size: 36px;
    margin-bottom: 5px;
  }

  .counter-title {
    font-size: 14px;
  }

  /* Process Section */
  .process-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .process-number {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .process-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .process-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Testimonials */
  .testimonial-content {
    padding: 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .testimonial-author {
    margin-top: 15px;
  }

  .testimonial-author h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .testimonial-author span {
    font-size: 14px;
  }

  /* Newsletter */
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .newsletter-form input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }

  .newsletter-form button {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }

  /* Blog Section */
  .blog-item {
    margin-bottom: 30px;
  }

  .blog-image {
    margin-bottom: 15px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .blog-meta {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .blog-excerpt {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

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

  /* Typography Improvements */
  body {
    font-size: 14px;
    line-height: 1.6;
  }

  h1 {
    font-size: 32px !important;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 28px !important;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  h4 {
    font-size: 20px !important;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  h5 {
    font-size: 18px !important;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  h6 {
    font-size: 16px !important;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  /* Spacing Improvements */
  .container {
    padding: 0 15px;
  }

  .row {
    margin: 0 -10px;
  }

  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    padding: 0 10px;
  }

  /* Button Improvements */
  /* .tl-primary-btn,
  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 6px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
  } */

  /* Form Improvements */
  input,
  textarea,
  select {
    font-size: 16px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    width: 100%;
  }

  /* Image Improvements */
  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  /* Table Improvements */
  table {
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }

  /* List Improvements */
  ul,
  ol {
    padding-left: 20px;
    margin-bottom: 15px;
  }

  li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
  }

  /* Blockquote Improvements */
  blockquote {
    font-size: 16px;
    line-height: 1.6;
    padding: 15px;
    margin: 20px 0;
    border-left: 4px solid var(--primary);
    background: #f9f9f9;
    border-radius: 4px;
  }

  /* Code Improvements */
  code {
    font-size: 13px;
    padding: 2px 6px;
    background: #f4f4f4;
    border-radius: 3px;
  }

  pre {
    font-size: 13px;
    padding: 15px;
    background: #f4f4f4;
    border-radius: 6px;
    overflow-x: auto;
    margin: 20px 0;
  }

  pre code {
    padding: 0;
    background: none;
  }

  /* Link Improvements */
  a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover {
    color: var(--accent);
    text-decoration: underline;
  }

  /* Utility Classes */
  .text-center-mobile {
    text-align: center !important;
  }

  .hide-mobile {
    display: none !important;
  }

  .show-mobile {
    display: block !important;
  }

  .full-width-mobile {
    width: 100% !important;
  }

  .no-margin-mobile {
    margin: 0 !important;
  }

  .no-padding-mobile {
    padding: 0 !important;
  }

  /* Touch-friendly improvements */
  /* .tl-primary-btn,
  .btn-primary,
  .btn-secondary,
  .mobile-menu-trigger,
  .sidebar-trigger {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
  } */

  /* Remove hover effects on touch devices */
  /* @media (hover: none) {
    .tl-primary-btn:hover,
    .btn-primary:hover,
    .btn-secondary:hover {
      transform: none;
      box-shadow: none;
    }
  } */

  /* Improve horizontal scrolling */
  .overflow-x-auto {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Fix viewport issues */
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  /* Improve image loading */
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  /* Better form inputs for mobile */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  textarea,
  select {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 8px;
  }

  /* Fix iOS Safari issues */
  /* @supports (-webkit-touch-callout: none) {
    .container {
      padding: 0 20px;
    }
  } */

  /* Landscape mode improvements */
  @media (max-width: 768px) and (orientation: landscape) {
    .slider-section {
      min-height: 80vh;
    }
  }

  /* Small phone improvements */
  @media (max-width: 360px) {
    /* .container {
      padding: 0 10px;
    } */
/* 
    h1 {
      font-size: 28px !important;
    }

    h2 {
      font-size: 24px !important;
    }

    .section-heading .section-title {
      font-size: 22px !important;
    }
  } */
}

/* ============================================
   ABOUT OVERRIDES
   ============================================ */
.about-content {
  padding-left: 0 !important;
}

/* ============================================
   NEWSLETTER (hidden site-wide)
   ============================================ */
.newsletter-section {
  display: none !important;
}

/* ============================================
   SLIDER OVERRIDES
   ============================================ */
.slider-content-wrap .bottom-content {
  top: 0 !important;
}

/* ============================================
   PRIMARY BUTTON
   ============================================ */
/* .tl-primary-btn {
  background-color: #fe9516 !important;
  padding: 10px 24px !important;
  color: #fff !important;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  display: flex;
} */

/* .tl-primary-btn:hover {
  background-color: #e07d0a !important;
  color: #fff !important;
} */

/* ============================================
   FOOTER CUSTOM STYLES
   ============================================ */
.footer-border-top {
  margin-top: 25px;
  padding-top: 20px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-heading {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .sub-heading {
    margin: auto;
    margin-bottom: 20px;
  }
}

h3.title {
  justify-content: center;
}

@media (max-width: 768px) {
  .pin-inner {
    display: flex;
  }

  .pin-inner .col-lg-4 {
    order: 2;
  }
}

.golden-text {
  color: #fe9516;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.location-text {
  color: #fe9516;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.location-icon {
  margin-right: 8px;
}

.location-link {
  text-decoration: none;
}

.address-text {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
  cursor: pointer;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.floating-btn span {
  display: none;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.phone-btn {
  background: linear-gradient(135deg, #1e5f6b, #2d7a84);
  color: white;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.floating-btn i {
  margin: 0;
  font-size: 20px;
}

.section-header h2 {
  font-size: 22px;
}

.hero-buttons {
  flex-direction: column;
}

.btn-primary,
.btn-secondary {
  width: 100%;
  text-align: center;
}

/* Service Projects Grid Section */
.service-projects-grid-section {
  padding: 30px 0;
}
.service-details .gallary-carousel-wrap {
  margin-bottom: 30px;
}
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 15px;
  text-align: left;
}

.section-header p {
  font-size: 16px;
  color: #666;
  margin: 0;
  text-align: left;
}

.section-header strong {
  color: #fe9516;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Project Grid Item */
.project-grid-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-grid-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

/* Project Image Wrapper */
.project-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5f5f5;
}

.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-grid-item:hover .project-image-wrapper img {
  transform: scale(1.08);
}

/* Image Overlay */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.project-grid-item:hover .image-overlay {
  opacity: 1;
}

/* Overlay View Button */
.overlay-view-btn {
  background: #fe9516;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.overlay-view-btn:hover {
  background: #ff5722;
  transform: scale(1.05);
}

/* Project Content */
.project-content {
  padding: 25px;
}

.project-title {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.project-meta-info {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #666;
  flex-wrap: wrap;
}

.location-info,
.year-info {
  font-weight: 500;
}

.project-specs-info {
  margin-bottom: 12px;
}

.spec-info {
  display: inline-block;
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.project-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 12px 0;
}

.project-category-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.category-tag {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: #fe9516;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 107, 53, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* View Project Link */
.view-project-link {
  display: inline-block;
  background: #fe9516;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.view-project-link:hover {
  background: #ff5722;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .featured-image-wrap {
    aspect-ratio: 16 / 10;
  }

  .project-info-overlay {
    padding: 50px 35px 35px;
  }

  .project-name {
    font-size: 24px;
  }

  .project-details-row {
    gap: 15px;
  }

  .project-description {
    font-size: 14px;
  }

  .carousel-nav-wrapper {
    bottom: 25px;
    right: 30px;
    gap: 12px;
  }

  .carousel-nav-btn {
    width: 44px;
    height: 44px;
  }

  .carousel-pagination {
    bottom: 25px;
    left: 30px;
  }
}

@media (max-width: 768px) {
  .service-projects-carousel-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 14px;
  }

  .featured-image-wrap {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

  .project-info-overlay {
    padding: 40px 25px 25px;
  }

  .project-name {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .project-details-row {
    gap: 12px;
    margin-bottom: 12px;
  }

  .detail-item {
    font-size: 13px;
  }

  .project-description {
    font-size: 13px;
    margin: 12px 0;
    max-width: 100%;
  }

  .project-tags-row {
    gap: 8px;
    margin-bottom: 15px;
  }

  .info-tag {
    font-size: 11px;
    padding: 5px 12px;
  }

  .view-btn {
    padding: 10px 24px;
    font-size: 13px;
  }

  .carousel-nav-wrapper {
    bottom: 20px;
    right: 20px;
  }

  .carousel-nav-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .carousel-pagination {
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 480px) {
  .service-projects-carousel-section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-header p {
    font-size: 13px;
  }

  .featured-image-wrap {
    aspect-ratio: 3 / 4;
    border-radius: 10px;
  }

  .project-info-overlay {
    padding: 30px 18px 18px;
  }

  .project-name {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .project-details-row {
    gap: 10px;
    margin-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-item {
    font-size: 12px;
  }

  .project-description {
    font-size: 12px;
    margin: 10px 0;
    line-height: 1.5;
  }

  .project-tags-row {
    gap: 6px;
    margin-bottom: 12px;
  }

  .info-tag {
    font-size: 10px;
    padding: 4px 10px;
  }

  .view-btn {
    padding: 9px 20px;
    font-size: 12px;
  }

  .carousel-nav-wrapper {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }

  .carousel-nav-btn {
    width: 36px;
    height: 36px;
  }

  .carousel-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .carousel-pagination {
    bottom: 15px;
    left: 15px;
    gap: 6px;
  }

  .carousel-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .carousel-pagination .swiper-pagination-bullet-active {
    width: 24px;
  }
}

/* ============================================
   GET IN TOUCH MODAL — refined layout / typography
   ============================================ */
/* #header .primary-header-inner button.tl-primary-btn.header-btn,
.primary-header-inner button.tl-primary-btn.header-btn {
  cursor: pointer;
  border: none;
  font-family: inherit;
} */

.gi-modal .modal-dialog {
  max-width: 540px;
}

.gi-modal .gi-modal-inner {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 14px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.12);
  padding: 0;
  background: #fafafa;
}

.gi-modal .gi-modal-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #fe9516 0%, #e07d0a 100%);
}

.gi-modal .gi-modal-header {
  padding: 1.5rem 1.5rem 0.75rem 1.65rem;
  background: transparent;
}

.gi-modal .gi-modal-dismiss {
  opacity: 0.5;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.gi-modal .gi-modal-dismiss:hover {
  opacity: 0.85;
}

.gi-modal .gi-modal-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fe9516;
}

.gi-modal .gi-modal-title {
  font-family: var(--tl-ff-heading, system-ui, sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.gi-modal .gi-modal-sub {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #5c5c66;
}

.gi-modal .gi-modal-body {
  padding: 0 1.5rem 1.5rem 1.65rem;
}

.gi-modal .gi-modal-shell {
  padding: 1rem 1.1rem;
  margin-top: 0.35rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.gi-modal .gi-modal-alert {
  font-size: 0.875rem;
  border-radius: 8px;
  margin-bottom: 0.85rem !important;
}

.gi-modal .gi-modal-alert.alert-success {
  display: block !important;
  border-color: transparent;
}

.gi-modal .gi-modal-form .gi-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2d2d33;
}

.gi-modal .gi-modal-form .gi-input {
  margin-bottom: 0;
  font-size: 0.9375rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid #e2e4e9;
  border-radius: 8px;
  background: #fdfdfd;
  color: #1a1a1a;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.gi-modal .gi-modal-form .gi-input:focus {
  border-color: #fe9516;
  box-shadow: 0 0 0 3px rgba(254, 149, 22, 0.2);
  background: #fff;
  outline: none;
}

.gi-modal .gi-modal-form .gi-input::placeholder {
  color: #9a9daa;
}

.gi-modal .gi-modal-form textarea.gi-textarea {
  min-height: 100px;
  resize: vertical;
}

.gi-modal .gi-modal-form select.form-select.gi-select {
  cursor: pointer;
}

.gi-modal .gi-modal-shell .nice-select.gi-select {
  float: none;
  width: 100%;
}

.gi-modal .gi-modal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: 1.1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.gi-modal .gi-modal-primary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  margin: 0;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, #fe9516 0%, #e88610 100%);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}

.gi-modal .gi-modal-primary i {
  font-size: 0.875rem;
  transform: rotate(0deg);
  margin: 0;
}

.gi-modal .gi-modal-primary:hover {
  filter: brightness(1.06);
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 6px 16px rgba(254, 149, 22, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.gi-modal .gi-modal-primary:active {
  transform: translateY(0);
}

.gi-modal .gi-modal-secondary {
  font-size: 0.8125rem;
  color: #71717a !important;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

.gi-modal .gi-modal-secondary:hover {
  color: #fe9516 !important;
  border-bottom-color: rgba(254, 149, 22, 0.35);
}

@media (max-width: 576px) {
  .gi-modal .gi-modal-header,
  .gi-modal .gi-modal-body {
    padding-left: 1.15rem;
    padding-right: 1rem;
  }

  .gi-modal .gi-modal-title {
    font-size: 1.3rem;
  }

  .gi-modal .gi-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gi-modal .gi-modal-primary {
    width: 100%;
  }

  .gi-modal .gi-modal-secondary {
    text-align: center;
  }
}
