   /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: #2c3e50;
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
        
        .logo a {
            color: white;
            text-decoration: none;
        }
        
        .logo span {
            color: #f39c12;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #f39c12;
        }
        
        .mobile-menu {
           display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1507035895480-2b3156c31fc8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 35px 0 100px 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            background-color: #f39c12;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #e67e22;
        }
        
        /* Booking Form */
        .booking-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: -50px auto 50px;
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-col {
            flex: 1;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        input, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        
        .submit-btn {
            background-color: #2c3e50;
            color: white;
            border: none;
            padding: 15px;
            width: 100%;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #34495e;
        }
        
        .whatsapp-btn {
            background-color: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .whatsapp-btn:hover {
            background-color: #128C7E;
        }
        
        /* Services Section */
        .services {
            padding: 40px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #4E5555;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .service-content p {
            color: #4E5555;
            margin-bottom: 20px;
        }
        
        .service-price {
            font-size: 20px;
            font-weight: bold;
            color: #f39c12;
        }
        
        /* Features Section */
        .features {
            padding: 40px 0;
            background-color: #f9f9f9;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .feature-icon {
            font-size: 50px;
            color: #f39c12;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .feature-card p {
            color: #4E5555;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 40px 0;
            background-color: white;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #4E5555;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #4E5555;
            font-size: 14px;
        }
        
        /* CTA Section */
        .cta {
            background-color: #2c3e50;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Footer */
        footer {
            background-color: #1a252f;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #f39c12;
        }
        
        .footer-col p {
            margin-bottom: 15px;
            color: white;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #f39c12;
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: #f39c12;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: #f39c12;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: white;
            font-size: 14px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 5px 0;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            .mobile-menu {
           display: block;
          
        }
        }
        
        @media (max-width: 480px) {
            .hero {
                padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .booking-form {
                padding: 20px;
            }
            
            .section-title h2 {
                font-size: 26px;
            }
        }
        
        /* Page-specific styles */
        .page-header {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1507035895480-2b3156c31fc8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 10px;
            position: relative;
        }
        
        .breadcrumb li:after {
            content: '/';
            position: absolute;
            right: -15px;
            color: #f39c12;
        }
        
        .breadcrumb li:last-child:after {
            display: none;
        }
        
        .breadcrumb a {
            color: #f39c12;
            text-decoration: none;
        }
        
        .page-content {
            padding: 60px 0;
        }
        
        .about-section {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-content h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .about-content p {
            margin-bottom: 20px;
            color: #4E5555;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .team-member {
            background-color: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
        }
        
        .team-img {
            height: 250px;
            overflow: hidden;
        }
        
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-info {
            padding: 20px;
        }
        
        .team-info h3 {
            font-size: 22px;
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .team-info p {
            color: #f39c12;
            margin-bottom: 15px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .contact-info-box {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-info-box h3 {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .contact-form {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-form h3 {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            min-height: 150px;
            margin-bottom: 20px;
        }
        
        .service-page {
            padding: 60px 0;
        }
        
        .service-details {
            display: flex;
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .service-details-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .service-details-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .service-details-content {
            flex: 1;
        }
        
        .service-details-content h2 {
            font-size: 36px;
            text-align: center;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .service-details-content p {
            margin-bottom: 20px;
            color: #4E5555;
        }
        
        .service-features {
            margin-top: 30px;
        }
        
        .service-features h3 {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .service-features ul {
            list-style: none;
        }
        
        .service-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            color: #4E5555;
        }
        
        .service-features li:before {
            content: '\2713';
            position: absolute;
            left: 0;
            color: #f39c12;
            font-weight: bold;
        }
        
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        
        .pricing-table th, .pricing-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .pricing-table th {
            background-color: #2c3e50;
            color: white;
        }
        
        .pricing-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .pricing-table tr:hover {
            background-color: #f1f1f1;
        }
        
        .price {
            color: #f39c12;
            font-weight: bold;
        }
        /* Responsive Tables */
.table-responsive {
    width: 100%;
    overflow-x: auto;             /* enable horizontal scroll on small screens */
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    margin-bottom: 20px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    min-width: 600px;   /* prevents columns from becoming too narrow */
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    white-space: nowrap;  /* keeps text in one line */
}
        @media (max-width: 768px) {
            .about-section, .service-details {
                flex-direction: column;
            }
            
            .about-img, .service-details-img {
                margin-bottom: 30px;
            }
        }

/* Section with Image & Content */
.image-text-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; /* ensures mobile stacking */
  padding: 20px 40px;
}

.image-text-section img {
  max-width: 100%;
  width: 50%;       /* prevents full width */
  border-radius: 12px;
  flex: 1 1 400px;  /* allows resize */
}

.image-text-content {
  flex: 1 1 400px;
}
  

    .image-text-content h1 {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #222;
    }

    .image-text-content p {
      font-size: 1.1rem;
      margin-bottom: 20px;
    }

    .btn {
      display: inline-block;
      background: #ff9800;
      color: #fff;
      padding: 12px 24px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s;
    }

    .btn:hover {
      background: #e68900;
    }     
    /* Simple Block (Heading + Paragraph) */
    .text-block {
      max-width: 800px;
      margin: auto;
      text-align: center;
    }

    .text-block h2 {
        font-size: 24px;
        color: #2c3e50;
        margin-bottom: 15px;
        }

    .text-block p {
      font-size: 1rem;
      color: #555;
    }

    .price-table{
        padding: 10px 40px;
    }

    /* FAQ Section */
.faq {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.faq .section-title h2 {
  color: #2c3e50;
}

.faq-list {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 20px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #283e53;
}

.faq-item p {
  color: #555;
  line-height: 1.6;
}

/* Responsive Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;   /* horizontal scroll on small screens */
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  margin-bottom: 20px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* ensures columns don't shrink too much */
}

.pricing-table th, 
.pricing-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  white-space: nowrap; /* prevents text wrapping into multiple lines */
}

.cta-vertical {
    position: fixed;
    top: 50%;
    right: 0;
    height: 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    background-color: #2c3e50;
    color: #fff;
    padding: 10px;
    border-radius: 8px 0 0 8px;
    font-weight: 700;
    z-index: 1000;
    box-shadow: 0 0 10px rgb(0 0 0 / 0.3);
}
.cta-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
}
.cta-vertical a {
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
}
/* Interlinking Section */
.interlinking {
  padding: 50px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.interlinking h2 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 25px;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.link-grid a {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  color: #2c3e50;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.link-grid a:hover {
  background: #f39c12;
  color: #fff;
  border-color: #f39c12;
}