/* ✅ Fix: Welcome text cut ho raha hai navbar ke neeche */
.hero {
  padding-top: 90rem;   /* adjust as per navbar height */
}


.service-details {
  display: none;  /* hidden by default */
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}

.service-card.active .service-details {
  display: block; /* show when active */
}

.service-arrow {
  cursor: pointer;
  margin-top: 10px;
  text-align: right;
}

.service-card.active .service-arrow i {
  transform: rotate(90deg); /* arrow rotates when expanded */
  transition: transform 0.3s ease;
}




@media (max-width: 768px) {
  .service-card {
    padding: 15px;
    font-size: 14px;
  }
  .service-details ul {
    padding-left: 20px; /* mobile pe thoda space */
  }
}

@media (max-width: 480px) {
  .service-card h3 {
    font-size: 16px;
  }
  .service-details {
    font-size: 13px;
  }
}



.service-icon img {
  width: 60px;        /* icon box ke size ke barabar */
  height: 60px;       /* height bhi same */
  object-fit: contain; /* image stretch na ho, proportion maintained rahe */
  display: block;
  margin: 0 auto;     /* center me lane ke liye */
}



.circle-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .circle-img.big {
    width: 250px;
    height: 250px;
  }






.contact-item {
  display: flex;
  flex-direction: column;  /* row ki jagah column */
  align-items: center;     /* sabko center align karega */
  text-align: center;      /* text bhi center */
  padding: 20px;
}

.contact-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #25d366;
}

.contact-item p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #444;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}








/* WhatsApp button styling */
.whatsapp-connect a {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.whatsapp-connect a:hover {
  background: #1ebe57;
  transform: scale(1.05);
}






/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;   /* center vertically & horizontally */
  z-index: 9999;
  padding: 1rem;         /* safe space for small screens */
  box-sizing: border-box;
}

/* Popup Box */
.popup-box {
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  overflow-y: auto;      /* agar content lamba ho to scroll */
  max-height: 90vh;      /* screen ke 90% tak hi rahe */
}

/* Heading Responsive */
.popup-box h2 {
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  margin-bottom: 1rem;
}

/* Paragraph Responsive */
.popup-box p {
  font-size: clamp(0.9rem, 4vw, 1rem);
  margin-bottom: 1rem;
}

/* Button */
.popup-box button {
  background: #1e40af;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}
.popup-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



/* Animation */
@keyframes popupScale {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 5px;
  color: white;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateX(200%);
  transition: transform 0.3s ease;
  z-index: 10000;
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  background-color: #10B981;
}

.notification.error {
  background-color: #EF4444;
}


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
   
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #fbbf24;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fbbf24;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(30, 64, 175, 0.6) 50%, rgba(59, 130, 246, 0.6) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out;
}

.hero-badge i {
    color: #fbbf24;
    font-size: 1rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-line {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 5rem;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn i {
    font-size: 1.2rem;
}

.hero-description {
    max-width: 1000px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.brand-tagline h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.brand-motto p {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-item i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: scrollPulse 2s infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #fbbf24);
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card {
    background: aquamarine;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid black;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.service-card:hover .service-arrow {
    transform: translateX(8px);
    color: #f97316;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.service-card:hover .service-logo {
    background: linear-gradient(135deg, #2563eb, #fbbf24);
    color: white;
    transform: translateY(-2px);
}

.service-card:hover .service-logo i,
.service-card:hover .service-logo span {
    color: white;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #2563eb;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-arrow {
    transform: translateX(5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #fbbf24);
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

.service-logo i {
    font-size: 1rem;
    color: #2563eb;
    margin-right: 0.5rem;
}

.service-logo span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2563eb;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-header {
    margin-bottom: 4rem;
}

.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    padding-right: 2rem;
}

.about-description {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.about-mission {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    font-style: italic;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-image-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-placeholder {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #2563eb, #667eea, #8b5cf6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.image-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.image-placeholder h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-placeholder p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Leadership Section */
.leadership-section {
    margin: 4rem 0;
    padding: 3rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #667eea, #8b5cf6);
}

.leadership-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
    text-align: center;
    position: relative;
}

.leadership-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #667eea);
    border-radius: 2px;
}

.leadership-row {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.leader-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s;
}

.leader-card:hover::before {
    left: 100%;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.leader-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.leader-avatar i {
    font-size: 1.8rem;
    color: white;
}

.leader-info {
    flex: 1;
}

.leader-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #1f2937;
}

.leader-info .position {
    font-size: 0.9rem;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.leader-info .bio {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.85rem;
}

/* Company Values */
.company-values {
    margin: 4rem 0;
    padding: 3rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.company-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #fbbf24, #10b981);
}

.company-values h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
    text-align: center;
    position: relative;
}

.company-values h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #fbbf24);
    border-radius: 2px;
}

.values-row {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.value-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.5s;
}

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #f97316;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-content {
    flex: 1;
}

.value-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.value-content p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.85rem;
}

/* About Stats */
.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6, #8b5cf6);
}

.stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.2rem;
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.2rem;
}

.stat-content p {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #4b5563;
}

.radio-group input[type="radio"] {
    width: auto;
    margin: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease;
}

.service-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    margin: 3% auto;
    padding: 0;
    border-radius: 25px;
    width: 95%;
    max-width: 800px;
    position: relative;
    animation: modalSlideIn 0.4s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.close-modal:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Service Modal Content Styling */
.service-detail-header {
    background: linear-gradient(135deg, #2563eb 0%, #667eea 100%);
    color: white;
    padding: 3rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.service-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.service-title-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.service-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.service-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.service-content {
    padding: 2rem;
}

.service-description-section {
    margin-bottom: 2rem;
}

.service-description-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
}

.service-description-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #667eea);
    border-radius: 2px;
}

.service-detail-description {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.service-features-section {
    margin-bottom: 2rem;
}

.service-features-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-features-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-item-modal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-item-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.feature-item-modal i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item-modal span {
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
}

.service-cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.website-link {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.website-link p {
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.website-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #667eea);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.website-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
}

/* Area Input Styling */
.area-input {
    position: relative;
}

.area-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.area-btn {
    padding: 0.5rem 1rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

.area-btn:hover {
    background: #1d4ed8;
}

/* Address Inputs */
.address-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.address-inputs select,
.address-inputs input {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.address-inputs select:focus,
.address-inputs input:focus {
    outline: none;
    border-color: #2563eb;
}

/* Help Section */
.help {
    padding: 100px 0;
    background: white;
}

.help-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.help-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.help-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.help-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.help-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
    color: #1e40af;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1e40af;
}

.footer-section p i {
    margin-right: 0.5rem;
    color: #1e40af;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        position: fixed;
        top: 20px;
        right: 15px;
        width: 35px;
        height: 40px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        z-index: 1101;
        cursor: pointer;
    }
    .bar {
        width: 35px;
        height: 5px;
        background-color: white;
        margin: 5px 0;
        border-radius: 3px;
        transition: 0.3s;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        background: rgba(30, 64, 175, 0.98);
        color: white;
        text-align: center;
        transition: transform 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding-top: 100px;
        transform: translateX(-100vw);
        z-index: 1100;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
    color: #111;
    font-size: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .title-highlight {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .leadership-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .values-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info, .contact-form {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .company-highlights, .company-achievements {
        padding: 1.5rem;
    }

    .company-highlights > div, .company-achievements > div {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-intro, .services-benefits {
        padding: 1.5rem;
    }

    .services-benefits > div {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-areas > div {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .emergency-procedures > div {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .maintenance-tips > div {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-guides > div {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .title-highlight {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-rating {
        padding: 1rem;
    }

    .rating-stars {
        font-size: 2rem;
    }

    .hero-rating h3 {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1rem;
    }

    .leader-card, .value-item {
        padding: 1.5rem;
    }

    .about-stats {
        padding: 1.5rem;
    }

    .stat {
        text-align: center;
    }

    .contact-item {
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}


/* 📱 Mobile & Tablet Fixes */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .title-highlight {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  /* Navbar mobile */
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #2563eb;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }
  .nav-menu.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* About Section */
  .about-intro {
    grid-template-columns: 1fr;
  }

  /* Contact Section */
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .title-highlight {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
}




/* 🎨 About Section - Final Styling */
#about.about {
  background: rgb(113, 113, 52); /* light blue to white */
  padding: 100px 0;
}

/* Headings */
#about.about h2,
#about.about h3,
#about.about h4 {
  color: #1e3a8a !important; /* deep navy blue */
}

/* Paragraphs */
#about.about p {
  color: #374151 !important; /* dark gray */
}

/* Leadership, Core Values & Stats Cards */
#about.about .leader-card,
#about.about .value-item,
#about.about .stat {
  background: #ffffff !important;   /* clean white */
  color: #1f2937 !important;        /* dark text */
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08) !important;
}

/* Card Headings */
#about.about .leader-info h4,
#about.about .value-content h4,
#about.about .stat-content h3 {
  color: #1e3a8a !important; /* navy blue */
}

/* Card Text */
#about.about .leader-info p,
#about.about .value-content p,
#about.about .stat-content p {
  color: #4b5563 !important; /* neutral gray */
}

/* Icons */
#about.about .leader-avatar,
#about.about .value-icon,
#about.about .stat-icon {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important; /* blue gradient */
}
#about.about .leader-avatar i,
#about.about .value-icon i,
#about.about .stat-icon i {
  color: #ffffff !important; /* white icons */
}


/* 🎨 Core Values Card Styling */
#about.about .value-item {
  background: linear-gradient(135deg, #2563eb, #60a5fa) !important; /* blue gradient */
  color: #f9fafb !important; /* very light text */
  border: none !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about.about .value-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Icons */
#about.about .value-icon {
  background: rgba(255, 255, 255, 0.2) !important;
}
#about.about .value-icon i {
  color: #fbbf24 !important; /* gold icons */
}

/* Titles */
#about.about .value-content h4 {
  color: #ffffff !important; /* white headings */
  font-weight: 700;
}

/* Paragraphs */
#about.about .value-content p {
  color: #e0f2fe !important; /* light blue text */
}


/* 📱 Responsive Hero Section with Auto Scaling */
.hero {
  min-height: 100vh;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(1rem, 5vw, 3rem); /* auto padding */
  text-align: center;
  box-sizing: border-box;
}

/* Heading auto resize */
.hero-title {
  font-size: clamp(1.8rem, 5vw, 4rem); 
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Highlight word auto resize */
.title-highlight {
  font-size: clamp(2rem, 6vw, 4.5rem);
  display: block; /* break line for better fit */
  margin-top: 0.3rem;
}

/* Subtitle auto resize */
.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons responsive */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;       /* wrap on small screens */
  gap: clamp(0.5rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 4vw, 2rem);
  justify-content: center;
}

.hero-buttons .btn {
  flex: 1 1 auto;
  padding: clamp(0.6rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  max-width: 250px;
  border-radius: 8px;
}


/* ✅ Fix for Welcome text hidden under navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            color: #333;
            line-height: 1.6;
            padding-top: 80px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Navigation Styles */
        .navbar {
            background-color: blueviolet;
            padding: 0.8rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .nav-container1 {
            display: flex;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .circle-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #d68955;
        }

        .nav-logo span {
            color: #d68955;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .nav-container2 {
            display: flex;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-item a {
            color: black;
            text-decoration: none;
            font-weight: 800;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .nav-item a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: red;
        }

        /* Hamburger Styles */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Responsive Styles */
        @media screen and (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: blueviolet;
                width: 100%;
                text-align: center;
                transition: all 0.5s ease;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
                padding: 20px 0;
                gap: 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 15px 0;
            }

            .nav-item a {
                padding: 1rem;
                display: block;
                width: 100%;
            }
        }

        /* Content Styles */
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: linear-gradient(rgba(138, 43, 226, 0.8), rgba(138, 43, 226, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23FFFFFF" opacity="0.2"/></svg>');
            background-size: cover;
            color: white;
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 2rem;
        }

        .service-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card h3 {
            color: blueviolet;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-card i {
            color: #d68955;
            font-size: 1.5rem;
        }

        footer {
            text-align: center;
            padding: 2rem;
            margin-top: 3rem;
            background-color: blueviolet;
            color: white;
        }

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: #fff;
    width: 200px;
    text-align: center;
    padding: 1rem;
    transition: right 0.3s ease-in-out;
  }

  .nav-menu.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}


/* Base navbar */
nav {
  background: #444;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-link {
  text-decoration: none;
  color: white;
  font-size: 18px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 5px;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: #333;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0px;
  }

  .hamburger {
    display: flex;
  }
}


.hero {
  padding-top: 120px;   /* ✅ just enough for fixed navbar */
}

.nav-container1{
    padding-left: 2vw;
}
.nav-container2{
    padding-right: 2vw;
}
.nav-link{
    color: rgba(0, 0, 0, 0.7);
    }
.nav-logo{
    padding-right: 22vw;
    
}
#container{
    padding-left: 2px;
}
#ser{
    padding-left: 30px;
}

/* .value-content{
    background-color: white;
    border-color: black;
    border-width: 2px;
} */
.value-item{
    background-color: white;
    border-color:black;
    border-width: 100px;
}

/* Prevent horizontal scrolling and white line issue */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Ensure all elements respect border-box sizing */
* {
    box-sizing: border-box;
}

/* Specifically target the navbar to ensure it doesn't cause overflow */
.navbar {
    width: 100vw;
    left: 0;
    right: 0;
}

/* Fix for mobile viewport issues */
@media screen and (max-width: 768px) {
    body {
        position: relative;
    }
    
    .nav-menu.active {
        width: 100% !important;
        right: 0 !important;
        left: 0 !important;
    }
}


/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 3px auto;
    transition: all 0.3s ease-in-out;
    background-color: #333;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    /* Hamburger animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Prevent body scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}



.social-media {
    margin-top: 25px;
    padding-top: 20px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
}

.social-media h4 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: #3498db;
}

.facebook:hover {
    background: #3b5998;
}

.twitter:hover {
    background: #1da1f2;
}

.instagram:hover {
    background: #e1306c;
}

.linkedin:hover {
    background: #0077b5;
}

.youtube:hover {
    background: #ff0000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
    
    .social-media h4 {
        text-align: center;
    }
}



@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: blueviolet;
    width: 200px;
    padding: 10px;
    border-radius: 8px;
    z-index: 999;
  }
  .nav-menu.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}



.circle-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.8s ease;  /* too short */
}
.circle-img.big {
  width: 250px;
  height: 250px;
}
































































































