
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e40af;
    --primary-blue-light: #3b82f6;
    --secondary-green: #10b981;
    --secondary-green-light: #34d399;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --white: #ffffff;
}

body {
    font-family: 'Noto Sans Gujarati', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand h1 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-brand p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    margin: 3px 0;
    transition: 0.3s;
}

.logout-btn {
  background-color: #e53e3e;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.logout-btn:hover {
  background-color: #c53030;
  transform: scale(1.05);
}

/* .whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 14px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 999;
} */
/* .chatbot-box {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  max-height: 400px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
  font-family: sans-serif;
} */
/* .chat-header {
  background-color: #25D366;
  color: white;
  padding: 10px;
  font-weight: bold;
}
.chat-body {
  padding: 10px;
  height: 250px;
  overflow-y: auto;
  font-size: 14px;
} */
/* #chatInput {
  width: 100%;
  padding: 10px;
  border: none;
  border-top: 1px solid #ccc;
  outline: none;
} */
.chat-btn {
  padding: 6px 10px;
  margin: 4px 2px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
}

/*57*/
.chatbot-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    height: 600px; /* 🔼 increased height */
    max-height: 60vh; /* responsive for all devices */
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
  }

  .chat-header {
    background: #4CAF50;
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }

  .chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    font-size: 15px;
  }

  #chatInput {
    border: none;
    border-top: 1px solid #ddd;
    padding: 12px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
  }

  .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
  }

  .whatsapp-button i {
    font-size: 24px;
  }

/* Pages */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
}

.page.active {
    display: block;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(34, 197, 94, 0.8));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.slide-content p {
    font-size: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nav-prev {
    left: 1rem;
}

.nav-next {
    right: 1rem;
}

.slide-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
}

/* Tablet: max-width 1024px */
@media (max-width: 1024px) {
  .hero-slider {
    height: 400px;
  }

  .slide-content h2 {
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1.25rem;
  }

  .nav-arrow {
    padding: 0.4rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }
}

/* Mobile: max-width 768px */
@media (max-width: 768px) {
  .hero-slider {
    height: 320px;
  }

  .slide-content h2 {
    font-size: 1.7rem;
    
  }

  .slide-content p {
    font-size: 1.1rem;
  }

  .slide-content {
    padding: 0 0.5rem;
    margin-top: 20px;
  }

  .nav-arrow {
    padding: 0.3rem;
    font-size: 1rem;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }
}

/* Small Mobile: max-width 480px */
@media (max-width: 480px) {
  .hero-slider {
    height: 350px;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 0.95rem;
  }

  .nav-arrow {
    padding: 0.25rem;
  }

  .slide-indicators {
    gap: 0.3rem;
  }

  .indicator {
    width: 6px;
    height: 6px;
  }
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-description {
    margin-bottom: 32px;
}

.about-description p {
    color: #6b7280;
    margin-bottom: 16px;
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.about-stat-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    border-radius: 16px;
    /* box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); */
}

.about-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 280px;
}

.about-card-content {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.about-card-icon {
    width: 40px;
    height: 40px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-card-title {
    font-weight: 600;
    color: #1f2937;
}

.about-card-subtitle {
    font-size: 12px;
    color: #6b7280;
}

.about-card p {
    font-size: 14px;
    color: #6b7280;
}

/* Tablet Devices (max-width: 1024px) */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    justify-content: center;
  }

  .about-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 16px;
    max-width: 100%;
  }

  .about-image {
    /* display: flex; */
    justify-content: left;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }

  .about .section-title{
    text-align: center;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-description p {
    font-size: 15px;
  }

  .about-img {
    height: 240px;
  }

  .about-card {
    padding: 16px;
  }

  .about-card-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-card-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .about-card-title {
    font-size: 16px;
  }

  .about-card-subtitle {
    font-size: 11px;
  }

  .about-card p {
    font-size: 13px;
  }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .about {
    padding: 40px 0;
  }

  .about-description p {
    font-size: 14px;
  }

  .about-img {
    height: 200px;
    border-radius: 12px;
  }

  .about-stat-card {
    padding: 16px;
  }

  .stat-icon {
    font-size: 28px;
  }

  .about-card {
    padding: 12px;
  }

  .about-card-title {
    font-size: 15px;
  }

  .about-card-subtitle {
    font-size: 10px;
  }

  .about-card p {
    font-size: 12px;
  }
}


/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: linear-gradient(135deg, #dbeafe 0%, #dcfce7 100%);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 16px;
}

.star {
    color: #fbbf24;
    font-size: 20px;
}

.testimonial-text {
    color: #374151;
    font-style: italic;
    margin-bottom: 24px;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-location {
    font-size: 14px;
    color: #6b7280;
}

.section-title{
     
    font-size: 36px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-description {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features {
    padding: 4rem 0;
    background: var(--white);
}

.features h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: var(--white);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--primary-blue);
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    
}

.service-header {
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: var(--gray-100);
}

.service-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon i {
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
}

.service-title h3 {
    font-size: 1.2rem;
    margin: 0;
}

.service-title p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.service-description {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.service-content {
    padding: 1rem;
    display: none;
}

.service-card.expanded .service-content {
    display: block;
}

.sub-service-item {
    border-top: 1px solid var(--gray-100);
    padding: 0.8rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-service-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.sub-service-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.sub-service-info span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.apply-button {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 6px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
}

.apply-button:hover {
    background-color: var(--primary-blue-light);
}


/* About & Contact */
.about-content, .contact-content {
    /* max-width: 800px; */
    margin: 2rem auto;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 2px solid var(--gray-100);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.contact-form button {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background: var(--primary-blue-light);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button i {
    width: 30px;
    height: 30px;
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.social-icons {
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.social-icons li {
    list-style: none;
}

.social-icons a {
    color: #d1d5db;
    font-size: 1.6rem;
    transition: color 0.3s;
    text-decoration: none;
    
}
/* Page Titles */
.page h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.page-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .sub-service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .apply-button {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .page h2 {
        font-size: 2rem;
    }
}




