/* Base Reset & General */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	font-family: 'Poppins', sans-serif;
	background-color: #ffffff;
	color: #333333;
	scroll-behavior: smooth;
	margin: 0;
}


/* === CONTAINER === */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* === BASE NAVBAR === */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: auto;
}

.navbar-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff774d;
    text-decoration: none;
}

/* === HAMBURGER ICON === */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ff774d;
    border-radius: 2px;
}

/* === NAV LINKS === */
.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links li a {
    color: #2e2e2e;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-links li a:hover {
    color: #ff774d;
}

/* === MOBILE STYLES === */
@media (max-width: 1350px) {
	
    .navbar-inner {
        gap: 10px;
        padding: 10px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        padding: 15px 0;
        text-align: center;
        gap: 15px;
        z-index: 9998;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

  





/* Hero Section */
.hero-section {
	position: relative;
	background-color: #fff0e8;
	padding: 100px 20px 220px;
	overflow: visible;
	font-family: 'Roboto', sans-serif;
}

.hero-content {
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 50px;
	position: relative;
}

.hero-left {
	flex: 1;
	min-width: 300px;
	text-align: left;
}

.hero-left h1 {
	font-size: 3rem;
	font-weight: 800;
	color: #2e2e2e;
	margin-bottom: 20px;
}

.hero-left p {
	font-size: 1.2rem;
	color: #555;
	margin-bottom: 35px;
}

.cta-button {
	background-color: #ff774d;
	color: white;
	padding: 14px 32px;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.3s;
}

.cta-button:hover {
	background-color: #ff5722;
}

/* Floating Form */
.floating-form {
	position: absolute;
	right: 0;
	top: 100%;
	transform: translateY(-40%);
	z-index: 5;
	max-width: 380px;
	width: 100%;
	padding: 0 20px;
}

.hero-box {
	background: white;
	color: #333;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	width: 100%;
}

.hero-box h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #2e2e2e;
}

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

.hero-box input {
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
}

.hero-box button {
	background-color: #ff774d;
	color: white;
	border: none;
	padding: 12px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
}

.hero-box button:hover {
	background-color: #ff5722;
}

.secondary-btn {
	display: block;
	margin-top: 10px;
	text-align: center;
	color: #ff774d;
	font-weight: 500;
	text-decoration: underline;
}

/* Wave Divider */
.hero-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	z-index: 1;
}

.hero-wave svg {
	width: 100%;
	height: 100px;
	display: block;
}

.hero-wave path {
	fill: #ffffff;
}
/* Add this at the bottom of your CSS */
@media (max-width: 930px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .floating-form {
        position: static !important;
        transform: none !important;
        max-width: 90%;
        padding: 0;
        margin: 0 auto;
    }
}







/* === About Section === */
.about-split {
	background-color: #ffffff;
	padding: 140px 20px 100px;
	font-family: 'Roboto', sans-serif;
  }
  
  .about-split-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	align-items: flex-start;
	justify-content: space-between;
  }
  
  .about-split-card {
	flex: 1;
	background: #fff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
	min-width: 300px;
	max-width: 500px;
	min-height: 280px;
	position: relative;
	overflow: hidden;
  }
  
  .carousel-viewport {
	width: 100%;
	overflow: hidden;
	position: relative;
  }
  
  .carousel-track {
	display: flex;
	transition: transform 0.6s ease-in-out;
  }
  
  .carousel-slide {
	flex: 0 0 100%;
	box-sizing: border-box;
	padding-right: 20px;
  }
  
  
  .carousel-slide h3 {
	font-size: 1.6rem;
	color: #ff774d;
	font-weight: 700;
	margin-bottom: 15px;
  }
  
  .carousel-slide p {
	font-size: 1.1rem;
	color: #333;
	line-height: 1.6;
	margin: 0;
  }
  
  .carousel-dots {
	text-align: center;
	margin-top: 25px;
  }
  
  .carousel-dots .dot {
	height: 10px;
	width: 10px;
	margin: 0 6px;
	background-color: #ccc;
	border-radius: 50%;
	display: inline-block;
	cursor: pointer;
	transition: background 0.3s;
  }
  
  .carousel-dots .dot.active {
	background-color: #ff774d;
  }
  
  .about-split-text {
	flex: 1.2;
	max-width: 600px;
	padding: 10px 0;
	color: #ff774d;
}

.about-split-text h2 {
	font-size: 2.6rem;
	font-weight: 800;
	margin-bottom: 20px;
	color: #ff774d;
	letter-spacing: -0.3px;
}

.about-split-text .dim-text {
	color: #aaa;
	font-weight: 400;
}

.about-split-text p {
	font-size: 1.05rem;
	line-height: 1.9;
	color: #444;
	margin-bottom: 18px;
	max-width: 95%;
	letter-spacing: 0.2px;
}

  
  
  @media (max-width: 900px) {
	.about-split-inner {
	  flex-direction: column;
	}
  
	.about-split-card,
	.about-split-text {
	  max-width: 100%;
	}
  
	.about-split-card {
	  margin-bottom: 40px;
	}
  
	.about-split-text h2 {
	  font-size: 2.2rem;
	}
  }

  .about-split {
	padding: 140px 20px 40px; /* reduced bottom padding from 100px to 40px */
  }
  


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

  .services-section {
	padding: 60px 20px 120px; /* reduced top padding from 120px to 60px */
  }
  
  .services-section {
	padding: 120px 20px;
	background-color: #fff;
	text-align: center;
  }
  
  .services-section h2 {
	font-size: 2.8rem;
	margin-bottom: 10px;
	font-weight: 800;
	color: #2e2e2e;
  }
  
  .services-section .dim-text {
	color: #999;
	font-weight: 300;
  }
  
  .services-section .highlight {
	color: #ff774d;
  }
  
  .section-subtitle {
	font-size: 1.1rem;
	color: #555;
	margin-bottom: 60px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
  }
  
  .services-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 800px;
	text-align: left;
  }
  
  .service-row {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 40px;
  }
  
  .service-icon {
	font-size: 2rem;
	line-height: 1;
	flex-shrink: 0;
	margin-top: 5px;
  }
  
  .service-row h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #2e2e2e;
	margin: 0 0 8px;
  }
  
  .service-row p {
	font-size: 1.05rem;
	color: #555;
	line-height: 1.6;
	margin: 0;
  }
  
  @media (max-width: 600px) {
	.service-row {
	  flex-direction: column;
	  gap: 10px;
	}
  
	.service-icon {
	  margin-top: 0;
	}
  
	.services-section h2 {
	  font-size: 2.2rem;
	}
  }
  



  /* === Why Choose Us Section === */
.why-choose-us {
	padding: 100px 20px;
	background-color: #ffffff;
	font-family: 'Poppins', sans-serif;
	text-align: center;
  }
  
  .why-choose-us h2 {
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: 15px;
	color: #ff774d;
  }
  
  .why-choose-us .dim-text {
	color: #2e2e2e;
	font-weight: 300;
  }
  
  .why-subtitle {
	font-size: 1.1rem;
	color: #2e2e2e;
	margin-bottom: 60px;
  }
  
  .why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
  }
  
  .why-item {
	background: #fff;
	padding: 30px 25px;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease;
  }
  
  .why-item:hover {
	transform: translateY(-8px);
  }
  
  .why-icon {
	font-size: 2.5rem;
	display: block;
	margin-bottom: 15px;
	color: #ff774d;
  }
  
  .why-item h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 10px;
  }
  
  .why-item p {
	font-size: 1rem;
	color: #666;
	line-height: 1.6;
	margin: 0;
  }
  
  /* === Responsive === */
  @media (max-width: 768px) {
	.why-choose-us h2 {
	  font-size: 2.2rem;
	}
  
	.why-subtitle {
	  font-size: 1rem;
	}
  }
  





/* === Testimonials Section === */
.testimonials-section {
    padding: 60px 20px;
    background-color: #fff8f4;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ff774d;
    margin-bottom: 40px;
}

.testimonials-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    position: relative;
    flex-wrap: wrap;
}

/* Cards */
.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 35px 25px;
    width: 300px;
    max-width: 300px;
    text-align: center;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
    pointer-events: none;
    border: 1px solid #f0f0f0;
}

/* Active card gets focus */
.testimonial-card.active {
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    pointer-events: auto;
}

/* Slight pop on manual hover */
.testimonial-card:hover {
    transform: scale(1.1);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Content styles */
.testimonial-card p {
    font-style: italic;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.testimonial-card span {
    display: block;
    font-weight: 700;
    color: #ff774d;
    font-size: 1.1rem;
}

/* Dot indicators */
.testimonials-dots {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonials-dots span {
    display: block;
    height: 12px;
    width: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonials-dots span.active {
    background-color: #ff774d;
    transform: scale(1.2);
}

/* Pause helper (future-proof) */
.testimonials-wrapper.paused .testimonial-card {
    transition: none !important;
}

/* Responsive */
@media (max-width: 900px) {
    .testimonials-section h2 {
        font-size: 2.2rem;
    }

    .testimonials-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 90%;
        max-width: 400px;
    }
}

/* === Contact Section === */
.contact-section {
    background-color: #fff8f4;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.contact-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ff774d;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff774d;
    outline: none;
}

.contact-form button {
    background-color: #ff774d;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #ff5722;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-section h2 {
        font-size: 2.2rem;
    }
}

/* Fix footer full width + clean look */
.site-footer {
    background-color: #2e2e2e;        /* Dark background */
    color: white;                     /* White text */
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

/* Prevent .container from breaking footer full width */
.site-footer .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
}

/* Optional (keeps it clean even on mobile) */
@media (max-width: 768px) {
    .site-footer {
        font-size: 13px;
        padding: 20px 0;
    }
}


/* Reduce section spacing globally */
section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

/* Optional: also reduce header and footer spacing */
header, footer {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

/* push down the about section to prevent overlap */
#about {
    margin-top: 200px;
}

/* push wave divider lower */
.hero-wave {
    transform: translateY(40px);   /* increase as needed */
}

/* give hero section more breathing room */
.hero-section {
    padding-top: 120px !important;    /* was likely 80px or lower */
    padding-bottom: 140px !important; /* was likely 80px or 100px */
}
