/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}


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

/* Header Styles */
/* ===========================
   Base Header Styles
=========================== */
.header-compact {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  z-index: 1000;
  padding: 0 16px; /* Added horizontal padding */
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

/* Logo section spacing */
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.logo-section img {
    width: 60px;
  height: 50px; 
  border-radius: 8px;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1d4ed8;
}

/* Nav links */
.nav-compact {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* More space between items */
}

.nav-item {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: #2563eb;
}

/* Contact section */
.contact-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-number {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.call-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.call-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Hamburger icon */
#menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #2563eb;
}

/* ===========================
   Responsive Sidebar Styles
=========================== */
@media (max-width: 768px) {
  /* Hide normal menu */
  .nav-compact {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%; /* Move sidebar from left */
    width: 75%;
    height: 100vh;
    background: #ffffff;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    padding: 80px 25px 25px;
    transition: left 0.4s ease-in-out; /* Animate left side */
    z-index: 999;
  }

  /* Sidebar visible */
  .nav-compact.show {
    display: flex;
    left: 0;
  }

  /* Show hamburger */
  #menu-toggle {
    display: block;
  }

  /* Adjust contact section inside sidebar */
  .nav-compact .contact-section {
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 20px;
  }
  


  /* Style nav items inside sidebar */
  .nav-compact .nav-item {
    font-size: 1.05rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-compact .nav-item:last-child {
    border-bottom: none;
  }
}

@media (max-width:480px){
    .logo-section img{
         margin-top: 10px;
    }
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.highlight {
    color: #2563eb;
}

.hero-text p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary.large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.btn-secondary {
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    font-size: 1.2rem;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-content li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    color: #374151;
}

.service-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #eff6ff;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: #2563eb;
    color: white;
}

.service-areas .section-header h2,
.service-areas .section-header p {
    color: white;
}

.service-areas .section-header p {
    color: #bfdbfe;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.area-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #1f2937;
    color: white;
}

.contact .section-header h2,
.contact .section-header p {
    color: white;
}

.contact .section-header p {
    color: #d1d5db;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: #374151;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.contact-info {
    color: #60a5fa;
    font-weight: 600;
}

.cta-section {
    text-align: center;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 2rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h3 {
    color: #2563eb;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #2563eb;
    font-size: 1rem;
}

.footer-right {
    flex: 2;
    min-width: 300px;
    text-align: center;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.footer-brand img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: cover;
}

.footer-brand h3 {
    color: #2563eb;
    margin: 0;
    font-size: 1.2rem;
}

.footer-brand p {
    color: #9ca3af;
    font-size: 0.8rem;
    margin: 0;
}

.footer-desc {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0.5rem 0 1rem;
}

.footer-social {
    margin: 0.6rem 0;
}

.footer-social a {
    display: inline-block;
    margin: 0 8px;
    font-size: 1.2rem;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #2563eb;
    transform: scale(1.1);
}

.footer .copyright {
    color: #6b7280;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: #374151;
    color: white;
    resize: none;
    transition: all 0.3s ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    background: #4b5563;
    box-shadow: 0 0 0 2px #2563eb;
}

.contact-form button {
    align-self: center;
    width: fit-content;
    padding: 1rem 2.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 15px;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .nav-compact {
        gap: 1rem;
    }
    
    .contact-section {
        gap: 0.5rem;
    }
    
    .phone-number {
        display: none;
    }
    
    .call-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Responsive Footer */
    .footer-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-contact {
        text-align: center;
    }
}

/* 
/* Mobile View */
/* @media (max-width: 480px) {
    .header-content {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .logo-section img {
        width: 54px;
        height: 50px;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .nav-compact {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 2rem;
        margin-top: 0.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    .nav-compact,
    .contact-section{
        display: block;
    }
}  */
/* 
/* Navbar for Mobile */
/* @media (max-width: 768px) {
    .nav-compact,
    .contact-section {
        display: none;
    }

    .fa-bars {
        display: block;
    }

    .nav-compact.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        border-radius: 10px;
        padding: 1rem;
        gap: 1rem;
        width: 100%;
        height: auto;
        z-index: 1001;
    }

    .nav-compact.show a {
        padding: 0.75rem 1rem;
       
    }
}  */





.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* Contact Details Styling */
.contact-details {
    background: #374151;
    padding: 2rem;
    border-radius: 20px;
    color: white;
    font-size: 1rem;
    margin-bottom: 29px;
    width: 95%;
}

.contact-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #60a5fa;
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-details a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2563eb;
}
  
/* Contact Form Styling (aapke existing styles hain, bas thoda spacing adjust kiya) */
.contact-form {
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 95%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: #374151;
    color: white;
    resize: none;
    transition: all 0.3s ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    background: #4b5563;
    box-shadow: 0 0 0 2px #2563eb;
}

.contact-form button {
    align-self: flex-start;
    width: fit-content;
    padding: 1rem 2.5rem;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}




/*  service */



.con {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1152px;
    margin: 0 auto;
}

.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.snowflake-icon {
    width: 32px;
    height: 32px;
    color: #3b82f6;
}

.main-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.1;
    margin: 0;
}

.description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 512px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: white;
    border-radius: 8px
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-icon.blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.feature-icon.red {
    background-color: #fee2e2;
    color: #dc2626;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-text h3 {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 11px 8px;
    background-color: #3b82f6;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #2563eb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.right-content {
    flex: 1;
    max-width: 384px;
}

.image-container {
    position: relative;
}

.image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1f2937;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: -1;
}

.service-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
/* border colouring styling */
.b{
    /* border: 1px solid black; */
    padding: 31px;
    border-radius: 25px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
        max-width: 1105px !important;
}

.border{
    /* border: 1px solid; */
    border-radius: 25px;
    padding: 31px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .right-content {
        max-width: 100%;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 32px 16px;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .content-wrapper {
        gap: 24px;
    }
    
    .left-content {
        gap: 24px;
    }
    
    .features-grid {
        gap: 16px;
    }
    
    .feature-item {
        gap: 12px;
    }
}


/* Wattsapee add  */


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  
  animation: pulse 1.6s infinite ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.15);
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}



/* Slider  */

.landing-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px); /* header height adjust */
  overflow: hidden;
  margin-top: 80px;
}

/* ===== Slider Image Styles ===== */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* ===== Overlay Content ===== */
.slide-content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  padding: 20px 25px;
  border-radius: 10px;
  max-width: 90%;
}

.slide-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.1rem;
  line-height: 1.4;
}

/* ===== Dots Navigation ===== */
.dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

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

.dot.active {
  background-color: #2563eb;
}

/* ===== Responsive (Tablets & Mobiles) ===== */
@media (max-width: 1024px) {
  .slide-content {
    bottom: 12%;
    padding: 15px 25px;
  }
}

@media (max-width: 768px) {
  .landing-container {
    height: 80vh;
  }

  .slide-content {
    bottom: 15%;
    padding: 15px 20px;
  }

  .slide-content h1 {
    font-size: 1.4rem;
  }

  .slide-content p {
    font-size: 0.95rem;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .landing-container {
    height: 70vh;
    margin-top: 40px;
  }

  .slide-content {
    bottom: 18%;
    padding: 10px 15px;
  }

  .slide-content h1 {
    font-size: 1.2rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }
}
