
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.call_now {
  font-size: 1.3rem !important;
    cursor: pointer !important;
    font-weight: bold !important;
    color: #1f2937 !important;
    display: flex;
    align-items: center;
}

/* Make "Call Now:" smaller */
.call_now span {
    font-size: .9rem !important;
    font-weight: bold !important;
    margin-right: 4px !important;
    color: #1f2937 !important;
    opacity: 0.9;
}

.hidden-transition {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.hidden-transition.show {
  max-height: 1000px; /* adjust based on content height */
  opacity: 1;
}

.price {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.price label {
   font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    margin-right: 3px;
}
.price span{
        font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}
.price .input-group{
    margin-top: -1px;
}
.price input{
   border: none;
    background: none;
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    padding: 0 !important;
    position: relative;
    left: -3px;
}


.nav-contact .phn{
display:flex;
flex-wrap:wrap;
align-items:center;
}
.nav-contact .phn i {
    border: 2px solid #e74c3c;
    padding: 6px;
    border-radius: 50%;
    font-size: 25px;
    color: #e74c3c;
    margin-right: 6px;
    margin-top: 6px;
}
.nav-contact .phn .nmb span {
    font-size: .9rem;
    font-weight: normal;
    margin-right: 0;
    color: #1f2937;
    line-height: .9rem;
	opacity: 0.8;
}
.nav-contact .phn .nmb strong {
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 0;
    color: #1f2937;
    display: block;
    line-height: 1.3rem;
}




.upload-wrapper {
  position: relative;
  margin-top: 6px;
}

.upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #f0f0ff;
  color: #333;
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px dashed #9e9eff;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.upload-label:hover {
  background-color: #e6e6ff;
  border-color: #4a3eea;
}

.upload-label i {
  font-size: 22px;
    color: #4a3eea;
    margin-top: -3px;
}

input[type="file"] {
  display: none;
}


button.hero-next-btn{
background: none;
    border: none;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    text-align: center;
    width: 100%;
    text-decoration: underline;
	cursor:pointer;
}

/* Header Styles */
.header {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4f46e5;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4f46e5;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-contact span {
    color: #1f2937;
    font-weight: 500;
    font-size: 1.3rem;
}

.cta-btn {
    background: #fbbf24;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #f59e0b;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.9), rgba(124, 58, 237, 0.8)), 
                url(images/hero-img.png);
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 50px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #fbbf24;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #f59e0b;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background: white;
    color: #4f46e5;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-features .feature i {
    font-size: 1.2rem;
    color: #fbbf24;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Hero Form Card */
.hero-form {
    position: relative;
}

.booking-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: #333;
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
    text-align: center;
}

.booking-card p {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 1rem;
}

.hero-booking-form .form-group, .hero-booking-form .row, .hero-booking-form .form-row{
    margin-bottom: 1rem;
}

.hero-booking-form .form-group input,
.hero-booking-form .row select,
.hero-booking-form .form-row select,
.hero-booking-form .form-row input,
.hero-booking-form .form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
}


.hero-booking-form .form-group input:focus,
.hero-booking-form .row select:focus,
.hero-booking-form .form-row select:focus,
.hero-booking-form .form-row input:focus,
.hero-booking-form .form-group select:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.hero-submit-btn {
    width: 100%;
    background: #4f46e5;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-submit-btn:hover {
    background: #3730a3;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    line-height: 1.4rem;
    margin-bottom: 1rem;
    color: #1f2937;
}
.service-card h3 a{
color: #1f2937;
text-decoration:none;
}
.service-card h3 a:hover{
color: #4f46e5;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
	display:none;
}

.service-card .read {
    color: #4f46e5;
    font-weight: bold;
    font-size: 1.1rem;
	display:none;
}
.service-card .read a{
color: #675eff;
    font-weight: bold;
    font-size: 1rem;
}
.service-card .read a:hover{
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: white;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.booking-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.2rem;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4f46e5;
}

.submit-btn {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1.1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #3730a3;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
    margin-right: 0.2rem;
}

.testimonial-card p {
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.customer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.customer strong {
    display: block;
    color: #1f2937;
}

.customer span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-content .btn-primary a{
color:#000;
text-decoration:none;
}

/* Footer */
.footer-section .logo{
margin-bottom:6px;
}
.footer-section .logo i{
color:#fbbf24;
font-size: 1.6rem;
}
.footer-section .logo span {
    color: #fff;
    font-size: 1.3rem;
	    
}
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}
.footer .container{
max-width: 960px;
}
.footer-bottom p{
font-size:0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 1.2rem;
}

.footer-section h3 {
    margin-bottom: 0.4rem;
    color: #fbbf24;
}

.footer-section ul {
    list-style: none;
	column-count:3;
}

.footer-section ul li {
    margin-bottom: 0.1rem;
}

.footer-section p{
font-size: 0.9rem;
}

.footer-section p a{
color: #fff;
transition: color 0.3s;
text-decoration:underline;
}
.footer-section p a:hover{
color: #fbbf24;
text-decoration:none;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
	font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #d1d5db;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fbbf24;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #fbbf24;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.2rem;
    text-align: center;
    color: #9ca3af;
}
.footer-bottom p a{
color: #9ca3af;
text-decoration:none;
padding:0 2px;
line-height:1.2rem;
}
.footer-bottom p a:hover{
color: #fbbf24;
}


.process-section {
            background: white;
            padding: 80px 0;
        }
        
        .process-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .process-step {
            display: flex;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .step-number {
    width: 60px;
    height: 60px;
    background: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
        
        .step-content h3 {
            color: #333;
            margin-bottom: 0.5rem;
        }
        
        .step-content p {
            color: #666;
            line-height: 1.6;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            left: 29px;
            top: 60px;
            width: 2px;
            height: 80px;
            background: #ddd;
            z-index: 1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
		
		.mob{
		display:none;
		}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-contact {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-form {
        margin-top: 2rem;
    }

    .booking-card {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
	
	.mob {
        padding: 8px 0 8px 0;
        display: block !important;
        margin: 0 0 0;
        background: #ffdcd8;
        box-sizing: border-box;
		text-align:center;
    }
	.mob a:hover {
    color: #e51300;
}
	.mob li{
	padding:0 12px;
	display:inline-block;
	text-align:center;
	}
.footer-section ul li {
    margin-bottom: 0.1rem;
    text-align: center;
}
    .services-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
	.service-card {
    background: white;
    padding: 14px 14px 0 14px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-basis: 45.4%;
    box-sizing: border-box;
    border: 1px solid #f7f7f7;
}
.service-card h3 {
    font-size: 1rem;
    line-height: 1.4rem;
    margin-bottom: 1rem;
    color: #1f2937;
}
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
	.process-section h2{
	font-size: 1.8rem !important;
        line-height: 2.2rem !important;
	}
	.process-section {
    background: white;
    padding: 46px 0 0;
}
	.step-number {
    width: 46px;
    height: 46px;
    background: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.process-step::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 46px;
    width: 2px;
    height: 80px;
    background: #ddd;
    z-index: 1;
}
.hero-features{
gap: 1rem;
}
.hero-container{
gap: 0;
}
.hero-buttons{
    margin-bottom: 2rem;
}
.hero-container{
    margin: 0 auto 0;
}
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 146px 0 60px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }

    .services {
        padding: 46px 0;
    }
	    .cta-content h2 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }

    .booking {
        padding: 60px 0;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .why-choose {
        padding: 46px 0;
    }

    .testimonials {
        padding: 46px 0;
    }

    .cta {
        padding: 46px 0;
    }

    .footer {
        padding: 40px 0 20px;
    }
	.logo{
	justify-content: center;
	}
	.footer-section p {
    font-size: 0.9rem;
    text-align: center;
}
.social-links {
justify-content: center;
}
.footer-content {
    gap: 1.6rem;
}
.footer-section h3 {
    text-align: center;
}
.footer-section ul {
    list-style: none;
    column-count: 3;
}
.navbar {
    padding: 10px 0;
}
.nav-container {
padding: 0 12px;
}
.nav-container a {
        flex-basis: 220px;
    }
.nav-container a .logo img{
width:100%;
height:auto;
}
.nav-contact {
        display: block !important;
        flex-basis: 46%;
        margin-top: -12px;
    }
.hamburger{
display:none !important;
}
.nav-contact .phn i {
    border: 2px solid #e74c3c;
    padding: 6px;
    border-radius: 50%;
    font-size: 13px;
    color: #e74c3c;
    margin-right: 4px;
    margin-top: 3px;
}
.nav-contact .phn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
}
.nav-contact .phn .nmb span {
    font-size: .8rem;
    font-weight: normal;
    margin-right: 0;
    color: #1f2937;
    line-height: .9rem;
    opacity: 0.8;
}
.nav-contact .phn .nmb strong {
    font-size: 1.1rem;
    font-weight: bold;
    margin-right: 0;
    color: #1f2937;
    display: block;
    line-height: 1.1rem;
}

.features-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
	
	.feature-item {
        background: white;
        padding: 14px 14px 14px 14px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        flex-basis: 45.4%;
        box-sizing: border-box;
        border: 1px solid #f7f7f7;
    }
	.feature-item i {
    font-size: 2.6rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}
	
	
}

@media (max-width: 480px) {

.mob {
        padding: 8px 0 8px 0;
        display: block !important;
        margin: 0 0 0;
        background: #ffdcd8;
        box-sizing: border-box;
		text-align:center;
    }
	.mob a:hover {
    color: #e51300;
}
	.mob li{
	padding:0 8px;
	display:inline-block;
	text-align:center;
	}
.footer-section ul li {
    margin-bottom: 0.1rem;
    text-align: center;
}
    .services-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
	.service-card {
    background: white;
    padding: 14px 14px 0 14px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-basis: 45.4%;
    box-sizing: border-box;
    border: 1px solid #f7f7f7;
}
.service-card h3 {
    font-size: 1rem;
    line-height: 1.4rem;
    margin-bottom: 1rem;
    color: #1f2937;
}
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
	.process-section h2{
	font-size: 1.8rem !important;
        line-height: 2.2rem !important;
	}
	.process-section {
    background: white;
    padding: 46px 0 0;
}
	.step-number {
    width: 46px;
    height: 46px;
    background: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.process-step::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 46px;
    width: 2px;
    height: 80px;
    background: #ddd;
    z-index: 1;
}
.hero-features{
gap: 1rem;
}
.hero-container{
gap: 0;
}
.hero-buttons{
    margin-bottom: 2rem;
}
.hero-container{
    margin: 0 auto 0;
}
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 146px 0 60px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }

    .services {
        padding: 46px 0;
    }
	    .cta-content h2 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }

    .booking {
        padding: 60px 0;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .why-choose {
        padding: 46px 0;
    }

    .testimonials {
        padding: 46px 0;
    }

    .cta {
        padding: 46px 0;
    }

    .footer {
        padding: 40px 0 20px;
    }
	.logo{
	justify-content: center;
	}
	.footer-section p {
    font-size: 0.9rem;
    text-align: center;
}
.social-links {
justify-content: center;
}
.footer-content {
    gap: 1.6rem;
}
.footer-section h3 {
    text-align: center;
}
.footer-section ul {
    list-style: none;
    column-count: 2;
}
.navbar {
    padding: 10px 0;
}
.nav-container {
padding: 0 12px;
}
.nav-container a {
        flex-basis: 180px;
    }
.nav-container a .logo img{
width:100%;
height:auto;
}
.nav-contact {
        display: block !important;
        flex-basis: 46%;
        margin-top: -12px;
    }
.hamburger{
display:none !important;
}
.nav-contact .phn i {
    border: 2px solid #e74c3c;
    padding: 6px;
    border-radius: 50%;
    font-size: 13px;
    color: #e74c3c;
    margin-right: 4px;
    margin-top: 3px;
}
.nav-contact .phn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
}
.nav-contact .phn .nmb span {
    font-size: .8rem;
    font-weight: normal;
    margin-right: 0;
    color: #1f2937;
    line-height: .9rem;
    opacity: 0.8;
}
.nav-contact .phn .nmb strong {
    font-size: 1.1rem;
    font-weight: bold;
    margin-right: 0;
    color: #1f2937;
    display: block;
    line-height: 1.1rem;
}

}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile menu animation */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 2rem;
    gap: 1rem;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}


