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

*::-webkit-scrollbar {
    display: none;
}

:root {
    --primary-color: #0181f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* backdrop-filter: blur(10px); */
    padding: 15px 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon svg {
    width: 28px;
    height: 28px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.navbar-item {
    position: relative;
}

.navbar-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: var(--primary-color);
}

.navbar-link.active {
    color: #00A3E0;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.navbar-cta {
    background: var(--primary-color);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar-cta a {
    text-decoration: none;
    color: white;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-title-animate {
    position: relative;
    height: 1.1em;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.hero-animate-text {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s ease;
    white-space: nowrap;
    color: white;
}

.hero-animate-text.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-animate-text.exit {
    opacity: 0;
    transform: translateY(-100%);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.25) 0%, rgba(51, 77, 110, 0.25) 50%, rgba(30, 58, 95, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    padding-top: 80px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    text-decoration: none;
}

.hero-buttons a {
    text-decoration: none;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn a {
    color: white;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

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

.hero-btn-primary:hover {
    background: #0088CC;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 163, 224, 0.4);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}


/* Before/After Comparison Section */
.comparison-section {
    position: relative;
    /* background: linear-gradient(180deg, #5BA4CF 0%, #4A9BD1 100%); */
    padding: 100px 0 120px;
    overflow: hidden;
    background-color: #49b1f2;
}

.comparison-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #32abf6;
}

.comparison-wave-top svg {
    width: 100%;
    height: 100%;
    display: block;
    background-color: #49b1f2;
}

.comparison-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
}

.comparison-wave-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.comparison-heading {
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
    line-height: 1.2;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.comparison-item {
    position: relative;
}

.comparison-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.comparison-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    user-select: none;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.comparison-before {
    z-index: 1;
}

.comparison-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.comparison-after {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
}

.comparison-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 4;
}

.comparison-divider {
    position: absolute;
    top: 0;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 3;
    pointer-events: none;
    transform: translateX(-50%);
}

.comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #00A3E0;
    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.comparison-handle svg {
    width: 28px;
    height: 28px;
}

.comparison-label {
    position: absolute;
    bottom: 20px;
    padding: 10px 24px;
    background: #00A3E0;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-label-before {
    left: 20px;
}

.comparison-label-after {
    right: 20px;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 999;
    color: #00A3E0;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    background: #00A3E0;
    color: white;
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

/* Service Section */

.services-section {
    padding: 80px 40px;
    text-align: center;
}

.services-heading {
    font-size: 48px;
    font-weight: 700;
    color: #49b1f2;
    margin-bottom: 60px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    perspective: 1000px;
    height: 280px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.service-card-front {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.service-title {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    padding: 20px;
    text-align: center;
}

.service-card-back {
    background: linear-gradient(135deg, #49b1f2 0%, #2a9bd8 100%);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: absolute;
    top: 0;
    left: 0;
}

.service-description {
    color: white;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Unique Background Images for Each Service */
.service-bg-1 {
    background-image: url('./assets/heatpump.jpeg');
}

.service-bg-2 {
    background-image: url('./assets/relocation.jpeg');
}

.service-bg-3 {
    background-image: url('./assets/poolRoller.jpeg');
}

.service-bg-4 {
    background-image: url('./assets/pool-inspec.jpeg');
}

.service-bg-5 {
    background-image: url('./assets/service5.webp');
}

.service-bg-6 {
    background-image: url('./assets/service9.jpeg');
}

.service-bg-7 {
    background-image: url('./assets/service7.jpeg');
}

.service-bg-8 {
    background-image: url('./assets/services-8.jpeg');
}

.services-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-btn:hover {
    background: #2a9bd8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(73, 177, 242, 0.4);
}

/* Footer Section */
.footer-section {
    background-image: url('./assets/footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 40px 30px;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    width: 200px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
}

.footer-heading {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #49b1f2;
    display: inline-block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: #49b1f2;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: #49b1f2;
    flex-shrink: 0;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 5px 0;
}

.footer-bottom a {
    color: #49b1f2;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============ Testimonials Section ============ */

.testimonials-section {
    position: relative;
    background: #1DB9F5;
    padding: 100px 0 120px;
    overflow: hidden;
}

.testimonials-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
}

.testimonials-wave-top svg {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonials-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
}

.testimonials-wave-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-heading {
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.testimonials-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.google-icon {
    font-size: 35px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 20px;
}

.rating-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.testimonials-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.testimonials-wrapper {
    flex: 1;
    overflow-x: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    will-change: transform;
}

.testimonial-card {
    min-width: calc((100% - 60px) / 3);
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.testimonial-stars {
    font-size: 14px;
}

.testimonial-google {
    font-size: 24px;
    font-weight: 700;
    color: #4285F4;
}

.testimonial-text {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.testimonial-nav {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: #1DB9F5;
}

.testimonial-nav:hover {
    background: #0da5e0;
    color: white;
    transform: scale(1.1);
}

.testimonial-nav svg {
    width: 24px;
    height: 24px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* ================ Blog Section ================ */

.blog-section {
    padding: 80px 40px;
    background: #f5f5f5;
}

.blog-heading {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #49b1f2;
    margin-bottom: 60px;
}

.blog-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #49b1f2;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.blog-day {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.blog-month {
    display: block;
    font-size: 14px;
    margin-top: 2px;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.4;
    min-height: 84px;
}

.blog-btn {
    background: transparent;
    border: 2px solid #e0e0e0;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.blog-btn a {
    color: white;
    text-decoration: none;
    color: #333;
}

.blog-btn:hover {
    background: #49b1f2;
    color: white;
    border-color: #49b1f2;
}

/* ============ Service Areas Section ============ */
/* Service Areas Section */
.service-areas-section {
    position: relative;
    background: #49b1f2;
    padding: 100px 0 90px;
    overflow: hidden;
}

.service-areas-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
}

.service-areas-wave-top svg {
    width: 100%;
    height: 100%;
    display: block;
}

.service-areas-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.service-areas-heading {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
}

.service-areas-subtext {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin: 0 0 50px 0;
}

.service-areas-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.service-areas-icon {
    width: 60px;
    height: 60px;
    background: #49b1f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 35px;
}

.service-areas-icon svg {
    width: 28px;
    height: 28px;
}

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

.service-area-item {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    padding-left: 30px;
}

.service-area-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #49b1f2;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-area-item:hover {
    background: #eef8fd;
    color: #49b1f2;
    transform: translateX(5px);
}

.service-area-item:hover::before {
    background: #2a9bd8;
    box-shadow: 0 0 8px rgba(73, 177, 242, 0.5);
    transform: translateY(-50%) scale(1.3);
}

/* =============== About Us Page ============== */

.about-hero-section {
    position: relative;
    min-height: 50vh;
    background-image: url('./assets/aboutPage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 100px 40px;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: 80px;
}

.about-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #49b1f2;
    margin-bottom: 30px;
}

.about-hero-description {
    color: white;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-hero-btn {
    background: #49b1f2;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.about-hero-btn a {
    color: white;
    text-decoration: none;
}

.about-hero-btn:hover {
    background: #2a9bd8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(73, 177, 242, 0.4);
}

/* Why Choose Us Section */

.why-choose-section {
    padding: 80px 40px;
    background: #f9f9f9;
}

.why-choose-heading {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #49b1f2;
    margin-bottom: 60px;
}

.why-choose-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.why-choose-item {
    text-align: center;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: #E3F5FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #49b1f2;
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
    background: #49b1f2;
    color: white;
    transform: scale(1.1);
}

.why-choose-icon svg {
    width: 36px;
    height: 36px;
}

.why-choose-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.why-choose-description {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* =============== Service Us Page ============== */

.service-hero-section {
    position: relative;
    min-height: 50vh;
    background-image: url('./assets/servicePage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 100px 40px;
}

.service-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: 80px;
}

.service-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #49b1f2;
    margin-bottom: 30px;
}

.service-hero-description {
    color: white;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.service-hero-btn {
    background: #49b1f2;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-hero-btn a {
    color: white;
    text-decoration: none;
}

.service-hero-btn:hover {
    background: #2a9bd8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(73, 177, 242, 0.4);
}

/* ================= Services Grid Section ================= */

.services-grid-section {
    padding: 60px 40px;
    background: #f5f5f5;
}

.services-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-box {
    background: #1DB9F5;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-box-image {
    width: 100%;
    height: 160px;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 3px solid white;
}

.service-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-box-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-box-text {
    color: white;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.service-box-btn {
    background: white;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-box-btn a {
    text-decoration: none;
    color: #1DB9F5;
}

.service-box-btn:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

/* ============= Gallery Page ============= */

/* Gallery Hero Section */

.gallery-hero-section {
    position: relative;
    min-height: 50vh;
    background-image: url('./assets/galleryHero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 100px 40px;
}

.gallery-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding-left: 25px;
}

.gallery-hero-btn {
    background: #49b1f2;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.gallery-hero-btn a {
    color: white;
    text-decoration: none;
}

.gallery-hero-btn:hover {
    background: #2a9bd8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(73, 177, 242, 0.4);
}

.gallery-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #49b1f2;
    margin-bottom: 20px;
}

.gallery-hero-description {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}


/* Gallery Section */
.gallery-section {
    padding: 100px 40px;
    background: #f9f9f9;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 185, 245, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.gallery-overlay-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(29, 185, 245, 0.55);
}

.gallery-item:hover .gallery-overlay-text {
    opacity: 1;
    transform: translateY(0);
}

/* Unique Background Images */
.gallery-item-1 {
    background-image: url('./assets/gallery1.png');
}

.gallery-item-2 {
    background-image: url('./assets/gallery2.png');
}

.gallery-item-3 {
    background-image: url('./assets/gallery3.png');
}

.gallery-item-4 {
    background-image: url('./assets/gallery4.png');
}

.gallery-item-5 {
    background-image: url('./assets/gallery5.png');
}

.gallery-item-6 {
    background-image: url('./assets/gallery6.png');
}

.gallery-item-7 {
    background-image: url('./assets/gallery7.png');
}

.gallery-item-8 {
    background-image: url('./assets/gallery8.png');
}

.gallery-item-9 {
    background-image: url('./assets/gallery9.png');
}

.gallery-item-10 {
    background-image: url('./assets/gallery10.png');
}

.gallery-item-11 {
    background-image: url('./assets/gallery11.png');
}

.gallery-item-12 {
    background-image: url('./assets/gallery12.png');
}

.gallery-item-13 {
    background-image: url('./assets/gallery13.png');
}

.gallery-item-14 {
    background-image: url('./assets/gallery14.png');
}

.gallery-item-15 {
    background-image: url('./assets/gallery6.png');
}

.gallery-item-16 {
    background-image: url('./assets/gallery16.png');
}

/* Light section */


/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 5001;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-close svg {
    width: 36px;
    height: 36px;
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    width: 500px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ================= Blogs Section ==================== */


.blog-hero-section {
    position: relative;
    min-height: 50vh;
    background-image: url('./assets/blogsBg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 100px 40px;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding-left: 25px;
}

.blog-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #49b1f2;
    margin-bottom: 20px;
}

.blog-hero-description {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}

/* Blog Post Page */
.blog-post-section {
    padding: 80px 40px;
    background: #fff;
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-title {
    font-size: 38px;
    font-weight: 700;
    color: #49b1f2;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.blog-post-intro {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 40px 0;
}

.blog-post-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #49b1f2;
    margin: 30px 0 12px 0;
}

.blog-post-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 8px 0;
}

.blog-post-text .solution-label {
    font-weight: 700;
    color: #333;
}

.blog-post-list {
    list-style: disc;
    padding-left: 24px;
    margin: 12px 0 20px 0;
}

.blog-post-list li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 8px;
}

.blog-post-list li::marker {
    color: #49b1f2;
    font-size: 18px;
}

/* ================= Contact Hero Section ================= */

.contact-hero-section {
    position: relative;
    min-height: 50vh;
    background-image: url('./assets/contactbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 100px 40px;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding-left: 25px;
}

.contact-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #49b1f2;
    margin-bottom: 20px;
}

.contact-hero-description {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 40px;
    background: #f9f9f9;
}

.contact-form-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

/* Contact Info Side */
.contact-info-side {
    padding-right: 20px;
}

.contact-info-heading {
    font-size: 20jpx;
    font-weight: 700;
    color: #49b1f2;
    margin-bottom: 20px;
}

.contact-info-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: #E3F5FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #49b1f2;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
}

.contact-detail-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.contact-detail-text {
    color: #666;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

.contact-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============= Responsiveness ============= */

/* Hamburger Button */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Overlay */
.navbar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.navbar-overlay.active {
    display: block;
}

/* Mobile Menu Wrapper */
.navbar-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar-close {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    align-self: flex-end;
    margin-top: 10px;
}

.navbar-close svg {
    width: 30px;
    height: 30px;
}

/* ================= Media Quries ================= */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .navbar-menu {
        gap: 20px;
    }

    .navbar-cta {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 58px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* Index Page */
    .comparison-grid {
        grid-template-columns: auto;
    }

    .services-grid {
        grid-template-columns: auto auto;
    }

    .testimonials-heading {
        font-size: 42px;
    }

    .testimonial-card {
        min-width: calc((100% - 30px) / 2);
    }

    /* Gallery Grid */

    .gallery-grid {
        grid-template-columns: auto auto auto;
    }

    /*  COntact  */
    .contact-form-container {
        grid-template-columns: auto;
    }
}

/* Small Tablet - 900px */
@media (max-width: 900px) {
    .navbar-hamburger {
        display: flex;
    }

    .navbar-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100%;
        background: #334d6e;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 35px;
        z-index: 999;
        transition: right 0.4s ease;
        gap: 0;
    }

    .navbar-menu-wrapper.active {
        right: 0;
    }

    .navbar-close {
        display: block;
        align-self: flex-end;
        margin-bottom: 40px;
    }

    .navbar-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 40px;
    }

    .navbar-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-link {
        display: block;
        padding: 16px 0;
        font-size: 18px;
    }

    .navbar-cta {
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-content {
        padding-left: 40px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 15px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    /* Index Page */

    .blog-grid {
        grid-template-columns: auto;
    }

    .service-areas-grid {
        grid-template-columns: auto auto;
    }

    .services-grid {
        grid-template-columns: auto;
    }

    .footer-container {
        grid-template-columns: auto;
    }

    .testimonials-section {
        padding: 80px 0 100px;
    }

    .testimonials-container {
        padding: 0 20px;
    }

    .testimonial-card {
        min-width: calc((100% - 30px) / 2);
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
    }

    /* About Us Section */
    .other-hero-title {
        font-size: 48px;
    }

    .other-hero-desc {
        font-size: 15px;
    }

    .about-hero-content {
        margin-left: 0;
    }

    .why-choose-heading {
        font-size: 48px;
    }

    .why-choose-grid {
        grid-template-columns: auto auto;
    }

    /* Services Page */
    .service-hero-content {
        margin-left: 0;
    }

    .services-grid-container {
        grid-template-columns: auto auto;
    }

    /* Gallery grid */
    .gallery-grid {
        grid-template-columns: auto auto;
    }
}

/* Mobile - 600px */
@media (max-width: 600px) {
    .navbar-container {
        padding: 0 20px;
    }

    .logo-title {
        font-size: 16px;
    }

    .logo-subtitle {
        font-size: 10px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .hero-section {
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 20px;
        margin-left: 0;
    }

    .navbar-cta {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 15px;
        justify-content: center;
        width: 100%;
    }

    .comparison-heading {
        font-size: 36px;
    }

    .comparison-container {
        padding: 0 20px;
    }

    .comparison-slider-container {
        height: 300px;
    }

    /* Index page */
    .service-areas-grid {
        grid-template-columns: auto;
    }

    .services-heading {
        font-size: 32px;
    }

    .services-grid-section {
        padding: 20px;
    }

    .gallery-hero-content {
        padding: 0px
    }

    .gallery-section {
        padding: 20px;
    }

    .blog-hero-content {
        padding: 0px
    }

    .contact-hero-content {
        padding: 0px;
    }

    .contact-form-section {
        padding: 20px
    }

    .testimonials-heading {
        font-size: 32px;
    }

    .testimonials-rating {
        gap: 6px;
        margin-bottom: 30px;
    }

    .rating-text {
        font-size: 14px;
    }

    .testimonials-wrapper {
        overflow-x: scroll;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .testimonials-track {
        gap: 20px;
    }

    .testimonial-nav {
        display: none;
    }

    .testimonials-dots {
        margin-top: 20px;
    }

    /* * About Us Section */
    .other-hero-title {
        font-size: 36px;
    }

    .other-hero-desc {
        font-size: 15px;
    }

    .about-hero-content {
        margin-left: 0;
    }

    .why-choose-heading {
        font-size: 32px;
    }

    .why-choose-grid {
        grid-template-columns: auto;
    }

    /* Services pgae */

    .services-grid-container {
        grid-template-columns: auto;
    }

    .service-areas-container {
        padding: 20px;
    }

    /* Gallery grid */
    .gallery-grid {
        grid-template-columns: auto;
    }

    .blog-heading {
        font-size: 32px;
    }

    .blog-section {
        padding: 20px 20px;
    }

    .lightbox-image {
        width: 200px;
    }
}

/* Small Mobile - 380px */
@media (max-width: 380px) {
    .logo-title {
        font-size: 14px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Index Page */

    .testimonials-heading {
        font-size: 26px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 13px;
    }
}


/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {
@media (max-width: 768px) {

    .hero-animate-text {
        white-space: normal;   /* wrap allow karo */
    }

    .hero-title-animate {
        min-height: 2.5em;     /* 2 line ki space de do */
    }

}

