/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #111;
}

/* ---------------- HEADER ---------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 0 40px;
  background: #ff5722;  /* solid orange header */
  display: flex;
  justify-content: space-between; /* logo left, nav right */
  align-items: center;
  z-index: 1000;
}

header h1.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

header nav {
  display: flex;
  gap: 25px;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
header nav a:hover {
  text-decoration: underline;
  color: #ffd180;
}

/* ---------------- FOOTER ---------------- */
footer {
  background: #222;
  color: #bbb;
  text-align: center;
  padding: 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 0.9rem;
}

/* ---------------- HERO SECTION ---------------- */
.hero {
  height: 100vh;
  width: 100%;
  background: url("assets/homebg.png") no-repeat center center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 70px; /* push down because of fixed header */
  padding-bottom: 50px; /* prevent footer overlap */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* overlay */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ff5722;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn:hover {
  background: #e64a19;
}

/* ---------------- LOGIN PAGE ---------------- */
body.login-bg {
  background: url("assets/bg.png") no-repeat center center / cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
body.login-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

/* Login container */
.login-container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.form-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  color: #fff;
  width: 300px;
  margin: auto;
}
.form-card h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.form-card input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  outline: none;
}
.form-card button {
  width: 100%;
  padding: 12px;
  background: #ff5722;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}
.form-card button:hover {
  background: #e64a19;
}
.form-card p {
  margin-top: 15px;
  font-size: 0.9rem;
}
.form-card a {
  color: #ff9800;
  text-decoration: none;
}
.form-card a:hover {
  text-decoration: underline;
}

/* ---------------- DASHBOARD ---------------- */
#jobs {
  margin: 100px 20px 80px; /* top/bottom spacing for header+footer */
  padding: 20px;
  background: #222;
  border-radius: 8px;
}







/* Signup page background */
body.signup-bg {
  background: url("assets/bg.png") no-repeat center center / cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: Arial, sans-serif;
}

/* Optional overlay */
body.signup-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

/* Signup form container */
body.signup-bg .form-container {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  width: 350px;
  text-align: center;
  color: #fff;
}

/* Form elements */
body.signup-bg .form-container input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
  outline: none;
}

body.signup-bg .form-container button {
  width: 100%;
  padding: 12px;
  background: #ff5722;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

body.signup-bg .form-container button:hover {
  background: #e64a19;
}

/* /* Already have an account link  */

body.signup-bg .form-container p a {
  color: #ffd180;
  text-decoration: none;
}
body.signup-bg .form-container p a:hover {
  text-decoration: underline;
}





.team-member {
  position: relative;
  width: 300px;
  height: 380px;
  margin: 20px auto;
  background-image: url('assets/devpicrohit.png');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.team-member .overlay {
  position: absolute;
  bottom: 0;
  left: 0;                /* ✅ attach to left */
  right: 0;               /* ✅ attach to right */
  width: 100%;            /* ✅ full width overlay */
  background: rgba(0,0,0,0.7); 
  color: #fff;
  padding: 20px;
  text-align: center;     /* ✅ center align text */
  display: flex;
  flex-direction: column;
  align-items: center;    /* center horizontally */
  justify-content: center;/* center vertically */
}







body {
    background: url("assets/aboutusbg.png") no-repeat center center fixed;
    background-size: cover;
}











/* ---------------- HOME PAGE NEW SECTIONS ---------------- */

/* Features Section */
.features {
  background: #222;
  padding: 80px 50px;
  text-align: center;
}

.features h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.features p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
  background: #333;
  padding: 80px 50px;
  text-align: center;
}

.testimonials h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.testimonials p {
  max-width: 700px;
  margin: 10px auto;
  font-style: italic;
  font-size: 1.1rem;
}

/* Call to Action Section */
.cta {
  background: #444;
  padding: 80px 50px;
  text-align: center;
}

.cta h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.cta .btn {
  font-size: 1rem;
  padding: 12px 25px;
}





/* ---------------- SERVICES CARDS FULL BACKGROUND ---------------- */
.services {
  padding: 80px 50px;
  text-align: center;
}

.services h3 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  height: 300px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none; /* remove underline for link */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.service-card .overlay {
  width: 100%;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
}

.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Background images for each service */
.plumbing { background-image: url("assets/plumbing.png"); }
.electrical { background-image: url("assets/electrical.png"); }
.cleaning { background-image: url("assets/cleaning.png"); }
.painting { background-image: url("assets/painting.png"); }
.carpentry { background-image: url("assets/carpentry.png"); }
.wellness { background-image: url("assets/wellness.png"); }
.pest { background-image: url("assets/pestcantrol.png"); }
.renovation { background-image: url("assets/renovation.png"); }






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

.services h3 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  height: 300px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.service-card .overlay {
  width: 100%;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
}

.service-card h4 { font-size: 1.5rem; margin-bottom: 5px; }
.service-card p { font-size: 0.95rem; line-height: 1.4; }

/* Individual card backgrounds */
.plumbing { background-image: url("assets/plumbing.png"); }
.electrical { background-image: url("assets/electrical.png"); }
.cleaning { background-image: url("assets/cleaning.png"); }
.painting { background-image: url("assets/painting.png"); }
.carpentry { background-image: url("assets/carpentry.png"); }
.wellness { background-image: url("assets/wellness.png"); }
.pest { background-image: url("assets/pestcantrol.png"); }
.renovation { background-image: url("assets/renovation.png"); }






/* Testimonials Section Background */
.testimonials {
  background: url("assets/testimonials-bg.jpg") no-repeat center center / cover;
  padding: 80px 50px;
  color: #fff;
  text-align: center;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* optional dark overlay for readability */
  z-index: 0;
}

.testimonials * {
  position: relative;
  z-index: 1;
}







.cta {
  padding: 60px 50px;
  text-align: center;
  background: #ff5722;
  color: #fff;
}

.cta .btn { 
  padding: 12px 24px;
  background: #e64a19;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.cta .btn:hover {
  background: #e64a19;
  color: #222;
}









.services {
  position: relative;
  padding: 80px 50px;
  text-align: center;
  z-index: 0;
}

.services::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 0;
}

.services h3,
.service-cards {
  position: relative;
  z-index: 1; /* ensures text & cards appear above overlay */
}



.services h3 {
  font-size: 2.5rem; /* increased from 2rem */
  color: #fff;       /* changed from #222 to white */
}






.service-detail {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.service-detail .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 50px;
  border-radius: 12px;
  max-width: 700px;
}

.service-detail h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-detail p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.service-detail .btn {
  padding: 12px 25px;
  background: #ff5722;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.service-detail .btn:hover {
  background: #e64a19;
}





.service-card .price {
  display: block;
  margin: 10px 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffd700;
}



/* Dark Theme Pricing Section */
.pricing {
  text-align: center;
  padding: 60px 20px;
  background: #111; /* same dark background */
  color: #fff;
}

.pricing h3 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff; /* keep heading white */
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  background: #222;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  width: 240px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.price-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ff5722; /* orange accent */
}

.price-card p {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

.price-card .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff5722;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.price-card .btn:hover {
  background: #e64a19;
}







.price-card {
  background: #222;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  width: 240px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  text-decoration: none; /* remove underline */
  color: #fff;
  display: block; /* makes the whole card clickable */
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}






/* Contact Section */
.contact-section {
  background: #111;
  padding: 100px 50px 80px;
  text-align: center;
  color: #fff;
}

.contact-section h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.contact-section p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #ccc;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin: 12px 0;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: #ff5722;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

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

.contact-info {
  text-align: left;
  color: #fff;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1.05rem;
}

.contact-info i {
  margin-right: 10px;
  color: #ff5722;
}

@media screen and (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}









.testimonials {
  padding: 5rem 2rem;
  background-color: #0d1117;
  text-align: center;
}

.testimonials h3 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 3rem;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial-card {
  background-color: #1c1c1c;
  color: #fff;
  padding: 2rem;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.avatar {
  background-color: #ff6b6b;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.client-info h4 {
  margin: 0;
}

.stars {
  color: gold;
  font-size: 1rem;
}









/* ========================================
   ENHANCED TESTIMONIALS SECTION STYLES
   Add this CSS to your existing style.css file
   ======================================== */

.testimonials-enhanced {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 30px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.testimonials-header h3 {
    color: #fff;
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.testimonials-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card-enhanced {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease backwards;
}

.testimonial-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card-enhanced:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card-enhanced:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card-enhanced:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card-enhanced:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card-enhanced:nth-child(6) { animation-delay: 0.6s; }

.testimonial-card-enhanced::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 150px;
    color: rgba(255, 107, 0, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card-enhanced:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.avatar-enhanced {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
    animation: pulse 2s ease infinite;
}

.user-info h4 {
    color: #2d3748;
    font-size: 1.3em;
    margin-bottom: 5px;
    font-weight: 600;
}

.user-info p {
    color: #718096;
    font-size: 0.95em;
}

.stars-enhanced {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars-enhanced .star {
    color: #fbbf24;
    font-size: 24px;
    animation: starPop 0.5s ease backwards;
}

.stars-enhanced .star:nth-child(1) { animation-delay: 0.7s; }
.stars-enhanced .star:nth-child(2) { animation-delay: 0.8s; }
.stars-enhanced .star:nth-child(3) { animation-delay: 0.9s; }
.stars-enhanced .star:nth-child(4) { animation-delay: 1s; }
.stars-enhanced .star:nth-child(5) { animation-delay: 1.1s; }

.review-text {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05em;
    position: relative;
    z-index: 1;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #10b981;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85em;
    margin-top: 15px;
    font-weight: 500;
    animation: slideInRight 0.5s ease;
}

.stats-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease 0.7s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: countUp 2s ease;
}

.stat-label {
    color: #718096;
    font-size: 1.1em;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
    }
    50% {
        box-shadow: 0 5px 25px rgba(255, 107, 0, 0.6);
    }
}

@keyframes starPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-header h3 {
        font-size: 2em;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5em;
    }

    .testimonial-card-enhanced {
        padding: 25px;
    }

    .avatar-enhanced {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .testimonials-enhanced {
        padding: 40px 15px;
    }

    .stats-section {
        padding: 30px 20px;
    }
}












/* ========================================
   ENHANCED FOOTER STYLES
   Add this CSS to your existing style.css file
   ======================================== */

.footer-enhanced {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 60px 0 0 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5722, #e64a19, #ff5722);
    animation: gradientShift 3s ease infinite;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease;
}

.footer-column h2 {
    color: #ff5722;
    font-size: 2em;
    margin-bottom: 10px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
    margin-bottom: 15px;
    font-style: italic;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-column h3 {
    color: #ff5722;
    font-size: 1.3em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #ff5722;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    animation: slideInLeft 0.5s ease backwards;
}

.footer-links li:nth-child(1) { animation-delay: 0.1s; }
.footer-links li:nth-child(2) { animation-delay: 0.2s; }
.footer-links li:nth-child(3) { animation-delay: 0.3s; }
.footer-links li:nth-child(4) { animation-delay: 0.4s; }
.footer-links li:nth-child(5) { animation-delay: 0.5s; }

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff5722;
}

.footer-links a:hover {
    color: #ff5722;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeIn 0.6s ease backwards;
}

.footer-contact li:nth-child(1) { animation-delay: 0.1s; }
.footer-contact li:nth-child(2) { animation-delay: 0.2s; }
.footer-contact li:nth-child(3) { animation-delay: 0.3s; }
.footer-contact li:nth-child(4) { animation-delay: 0.4s; }

.footer-contact svg {
    color: #ff5722;
    flex-shrink: 0;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(237, 69, 17, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5722;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff5722, #e64a19);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-icon svg {
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon:hover::before {
    transform: scale(1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9em;
}

.footer-bottom-links a:hover {
    color: #ff5722;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-enhanced {
        padding: 40px 0 0 0;
    }

    .footer-column h2 {
        font-size: 1.5em;
    }

    .footer-column h3 {
        font-size: 1.1em;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}









.pricing {
  background-color: #111;  /* black background */
  padding: 60px 20px;      /* optional spacing around cards */
  text-align: center;      /* center heading and cards */
}










/* CTA Section Enhancement */
.cta {
  padding: 80px 50px;
  text-align: center;
  background: linear-gradient(135deg, #ff5722, #ff914d);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Floating glowing circles */
.cta::before,
.cta::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: float 6s infinite ease-in-out;
}

.cta::before {
  top: -80px;
  left: -80px;
}

.cta::after {
  bottom: -80px;
  right: -80px;
  animation-delay: 2s;
}

/* Smooth Floating Animation */
@keyframes float {
  0% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.2) translateY(-20px); }
  100% { transform: scale(1) translateY(0); }
}

/* Text Entrance Animation */
.cta-title, .cta-sub {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}
.cta-title { animation-delay: 0.3s; }
.cta-sub { animation-delay: 0.6s; }

@keyframes fadeUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Button Animation */
.cta-animate {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background: #fff;
  color: #ff5722;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.35s;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.9s;
  opacity: 0;
}

.cta-animate:hover {
  background: #222;
  color: #fff;
  transform: scale(1.08);
}











