* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        line-height: 1.6;
        color: #1f2937;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Header */
      header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        z-index: 1000;
      }

      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      .mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

      .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.5rem;
        font-weight: bold;
        color: #397732;
        text-decoration: none;
      }

      .logo svg {
        width: 32px;
        height: 32px;
      }

      .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
      }

      .nav-links a {
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
      }

      .nav-links a:hover {
        color: #397732;
      }

      .btn {
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 0.5rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
      }

      .btn-primary {
        background: #397732;
        color: white;
      }

      .btn-primary:hover {
        background: #047857;
        transform: scale(1.05);
      }

      .btn-secondary {
        background: transparent;
        border: 2px solid #397732;
        color: #397732;
      }

      .btn-secondary:hover {
        background: #ecfdf5;
      }

      .btn-white {
        background: white;
        color: #397732;
      }

      .btn-white:hover {
        background: #f9fafb;
        transform: scale(1.05);
      }

      /* Hero Section */
      .hero {
        padding: 8rem 2rem 5rem;
        background: linear-gradient(135deg, #ecfdf5 0%, #d8ff008f 100%);
      }

      .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
      }

      .hero h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
      }

      .hero-highlight {
        color: #397732;
      }

      .hero p {
        font-size: 1.25rem;
        color: #6b7280;
        margin-bottom: 2rem;
      }

      .hero-buttons {
        display: flex;
        gap: 1rem;
      }

      .pricing-card {
        background: linear-gradient(135deg, #397732 0%, #397732 100%);
        padding: 2rem;
        border-radius: 1rem;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      }

      .pricing-inner {
        background: white;
        padding: 1.5rem;
        border-radius: 0.75rem;
      }

      .price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        border-bottom: 1px solid #e5e7eb;
      }

      .price-row:last-child {
        border-bottom: none;
      }

      .price-label {
        color: #6b7280;
      }

      .price-value {
        font-size: 1.5rem;
        font-weight: bold;
        color: #397732;
      }

      .price-note {
        text-align: center;
        padding-top: 1rem;
        margin-top: 1rem;
        border-top: 1px solid #e5e7eb;
        color: #9ca3af;
        font-size: 0.875rem;
      }

      /* Features Section */
      .features {
        padding: 5rem 2rem;
        background: white;
      }

      .section-header {
        text-align: center;
        margin-bottom: 4rem;
      }

      .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
      }

      .section-header p {
        font-size: 1.25rem;
        color: #6b7280;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      .feature-card {
        text-align: center;
        padding: 1.5rem;
        border-radius: 0.75rem;
        transition: background 0.3s;
      }

      .feature-card:hover {
        background: #ecfdf5;
      }

      .feature-icon {
        width: 64px;
        height: 64px;
        background: #d1fae5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
      }

      .feature-icon svg {
        width: 32px;
        height: 32px;
        color: #397732;
      }

      .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
      }

      .feature-card p {
        color: #6b7280;
      }

      /* Services Section */
      .services {
        padding: 5rem 2rem;
        background: #f9fafb;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      .service-card {
        background: white;
        padding: 2rem;
        border-radius: 0.75rem;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s;
      }

      .service-card:hover {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }

      .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
      }

      .service-list {
        list-style: none;
      }

      .service-list li {
        padding: 0.75rem 0;
        color: #6b7280;
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
      }

      .checkmark {
        color: #397732;
        font-weight: bold;
      }

      /* CTA Section */
      .cta {
        padding: 5rem 2rem;
        background: linear-gradient(135deg, #397732 0%, #397732 100%);
        text-align: center;
      }

      .cta h2 {
        font-size: 3rem;
        color: white;
        margin-bottom: 1rem;
      }

      .cta p {
        font-size: 1.25rem;
        color: #d1fae5;
        margin-bottom: 2rem;
      }

      .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
      }

      /* Contact Section */
      .contact {
        padding: 5rem 2rem;
        background: white;
      }

      .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      .contact-info h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
      }

      .contact-info > p {
        font-size: 1.25rem;
        color: #6b7280;
        margin-bottom: 2rem;
      }

      .contact-item {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
      }

      .contact-icon {
        width: 48px;
        height: 48px;
        background: #d1fae5;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .contact-icon svg {
        width: 24px;
        height: 24px;
        color: #397732;
      }

      .contact-details h3 {
        font-weight: 600;
        margin-bottom: 0.25rem;
      }

      .contact-details p {
        color: #6b7280;
      }

      .contact-form {
        background: #f9fafb;
        padding: 2rem;
        border-radius: 0.75rem;
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 0.5rem;
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid #d1d5db;
        border-radius: 0.5rem;
        font-size: 1rem;
        transition: all 0.3s;
      }

      .form-group input:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: #397732;
        box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
      }

      .form-group textarea {
        resize: vertical;
        min-height: 120px;
      }

      .btn-submit {
        width: 100%;
        padding: 1rem;
        font-size: 1.125rem;
      }

      /* Footer */
      footer {
        background: #111827;
        color: white;
        padding: 3rem 2rem;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto 2rem;
      }

      .footer-section h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
      }

      .footer-section ul {
        list-style: none;
      }

      .footer-section ul li {
        margin-bottom: 0.5rem;
      }

      .footer-section a {
        color: #9ca3af;
        text-decoration: none;
        transition: color 0.3s;
      }

      .footer-section a:hover {
        color: #10b981;
      }

      .footer-section p {
        color: #9ca3af;
        line-height: 1.8;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #374151;
        color: #9ca3af;
      }

      .mobile-menu-btn {
        display: none;
      }

      /* Modal */
      .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2000;
        align-items: center;
        justify-content: center;
      }

      .modal.active {
        display: flex;
      }

      .modal-content {
        background: white;
        padding: 2rem;
        border-radius: 1rem;
        max-width: 500px;
        width: 90%;
        position: relative;
      }

      .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #6b7280;
      }

      .modal-close:hover {
        color: #397732;
      }

      .modal h2 {
        margin-bottom: 1rem;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }

        .mobile-menu-btn {
          display: block;
          background: none;
          border: none;
          font-size: 1.5rem;
          cursor: pointer;
        }

        .hero-content {
          grid-template-columns: 1fr;
        }

        .hero h1 {
          font-size: 2.5rem;
        }

        .features-grid {
          grid-template-columns: 1fr;
        }

        .services-grid {
          grid-template-columns: 1fr;
        }

        .contact-content {
          grid-template-columns: 1fr;
        }

        .footer-content {
          grid-template-columns: 1fr;
        }

        .hero-buttons,
        .cta-buttons {
          flex-direction: column;
        }
      }

      .tab-slider1{
  height: 90vh;
}

.tabcontentgallery {
  color: black;
  display: none;
  padding: 100px 20px;
  height: 100%;
}

.overlay .tabcontent {
  min-width: 100% !important;
}

.tabcontentvideos {
  color: black;
  display: none;
  padding: 100px 20px;
  height: 100%;
}
.slides {
  display: flex;
  overflow: hidden;
  width: 100%;
  scroll-behavior: smooth;
}
.slides-wrapper .static {
  display: flex;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}

.slides-wrapper {
  position:relative;
  width: 100%;
  /* margin-left: 15px; */
}
/*.slides-wrapper i {
  background: #000;
  color: #fff;
  border-radius: 50%;
  padding:10px;
  width: 40px;
  height:40px;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.view360 {
width:80vw;height:30vw;
}

@media only screen and (max-width: 600px) {
.view360 {
width:90vw !important;height:120vw !important;
}
}


      .mobile-menu-btn {
        display: none;
      }

      /* Mobile Menu */
      .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1500;
      }

      .mobile-menu.active {
        display: block;
      }

      .mobile-menu-content {
        position: absolute;
        top: 0;
        right: 0;
        width: 75%;
        max-width: 300px;
        height: 100%;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
      }

      .mobile-menu.active .mobile-menu-content {
        transform: translateX(0);
      }

      .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        border-bottom: 1px solid #e5e7eb;
      }

      .mobile-menu-header h3 {
        font-size: 1.25rem;
        color: #397732;
      }

      .mobile-menu-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #6b7280;
      }

      .mobile-menu-links {
        list-style: none;
        padding: 1rem 0;
      }

      .mobile-menu-links li {
        margin: 0;
      }

      .mobile-menu-links a {
        display: block;
        padding: 1rem 1.5rem;
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        transition: background 0.3s;
      }

      .mobile-menu-links a:hover {
        background: #f3f4f6;
        color: #397732;
      }

      .mobile-menu-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem;
        border-top: 1px solid #e5e7eb;
      }

      .mobile-menu-footer .btn {
        width: 100%;
        text-align: center;
      }

      /* Modal */
      .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2000;
        align-items: center;
        justify-content: center;
      }

      .modal.active {
        display: flex;
      }

      .modal-content {
        background: white;
        padding: 2rem;
        border-radius: 1rem;
        max-width: 500px;
        width: 90%;
        position: relative;
      }

      .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #6b7280;
      }

      .modal-close:hover {
        color: #397732;
      }

      .modal h2 {
        margin-bottom: 1rem;
      }

      /* Responsive */
      @media (max-width: 1024px) {
        .features-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        nav {
          padding: 1rem;
        }

        .nav-links {
          display: none;
        }

        nav .btn-primary {
          display: none;
        }

        .mobile-menu-btn {
          display: block;
          background: none;
          border: none;
          font-size: 1.5rem;
          cursor: pointer;
          color: #397732;
        }
      }

      .enquire-head-text button {
			background:black;
			border: medium none;
			color:#1e1f3e;
			cursor: pointer;
			display: inline-block;
			float: left;
			font-size: 15px;
			font-weight: 300;
			letter-spacing: 1px;
			margin: 0;
			padding: 3px 0px;
			text-transform: uppercase;
			width: 50%;
      height: 50px;
		}