@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Logo Colors */
  --primary-blue: #1a5b8f;
  --primary-green: #2b7a4b;
  --accent-orange: #f57c00;
  
  /* Backgrounds & Text */
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Utilities */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --radius-md: 8px;
  --radius-lg: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--primary-blue); }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background-color: var(--accent-orange); margin: 1rem auto 0; border-radius: 2px; }
.text-green { color: var(--primary-green); }
.text-orange { color: var(--accent-orange); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: var(--radius-md); font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition); border: 2px solid transparent; }
.btn-primary { background-color: var(--primary-blue); color: var(--bg-white); }
.btn-primary:hover { background-color: var(--primary-green); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background-color: var(--accent-orange); color: var(--bg-white); }
.btn-accent:hover { background-color: #d86c00; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background-color: transparent; border-color: var(--primary-blue); color: var(--primary-blue); }
.btn-outline:hover { background-color: var(--primary-blue); color: var(--bg-white); }

/* HEADER / NAVBAR */
.navbar { position: fixed; top: 0; left: 0; width: 100%; background-color: var(--bg-white); box-shadow: var(--shadow-sm); z-index: 1000; transition: var(--transition); height: 100px; display: flex; align-items: center; }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-link img { height: 90px; object-fit: contain; }
.nav-menu { display: flex; gap: 2rem; align-items: center; }
.nav-item { position: relative; }
.nav-link { font-weight: 500; color: var(--text-dark); font-size: 1rem; transition: var(--transition); padding: 0.5rem 0; }
.nav-link:hover, .nav-link.active { color: var(--accent-orange); }
.dropdown-menu { position: absolute; top: 100%; left: 0; background-color: var(--bg-white); min-width: 250px; box-shadow: var(--shadow-lg); border-radius: var(--radius-md); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); display: grid; padding: 0.5rem 0; border-top: 3px solid var(--primary-green); z-index: 10; max-height: 400px; overflow-y: auto; }
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { padding: 0.75rem 1.5rem; display: block; font-size: 0.95rem; color: var(--text-dark); transition: var(--transition); }
.dropdown-item:hover { background-color: rgba(43, 122, 75, 0.05); color: var(--primary-green); padding-left: 1.75rem; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary-blue); cursor: pointer; }

/* HERO SLIDER (Redesigned) */
.hero { position: relative; min-height: 100vh; overflow: hidden; padding-top: 100px; display: flex; align-items: center; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.5s ease-in-out, transform 8s linear; transform: scale(1.05); background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(26,91,143,0.85), rgba(43,122,75,0.7)); z-index: 1; }
/* Premium Mesh Pattern overlay */
.hero-mesh { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.05) 40px, rgba(255,255,255,0.05) 41px), repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.05) 40px, rgba(255,255,255,0.05) 41px); z-index: 2; pointer-events: none; }
.hero-content { position: relative; z-index: 3; max-width: 800px; text-align: center; margin: 0 auto; }
.hero-title { color: var(--bg-white); font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 1.5rem; text-shadow: 0 4px 12px rgba(0,0,0,0.3); animation: fadeDown 1s ease forwards; }
.hero-title span { color: var(--accent-orange); }
.hero-subtitle { font-size: 1.35rem; margin-bottom: 2.5rem; opacity: 0.95; font-weight: 400; color: white; animation: fadeDown 1s ease 0.3s forwards; opacity: 0; }
.hero-btns { display: flex; gap: 1.5rem; justify-content: center; animation: fadeDown 1s ease 0.6s forwards; opacity: 0; }
.hero-btns .btn { padding: 1rem 2.5rem; font-size: 1.1rem; border-radius: 50px; }
.scroll-down { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; color: white; font-size: 2rem; animation: bounce 2s infinite; }

/* SERVICES GRID */
.services-section { padding: 6rem 0; background-color: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2.5rem; }
.service-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-light); height: 100%; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--primary-blue); }
.service-img-wrap { height: 220px; overflow: hidden; position: relative; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.15); }
.service-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.service-content h3 { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--primary-blue); }
.service-content p { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.5rem; flex-grow: 1; }
.service-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent-orange); font-weight: 700; font-size: 1rem; transition: var(--transition); margin-top: auto; }
.service-link:hover { color: var(--primary-green); gap: 0.8rem; }

/* HOW IT WORKS / PROCESS */
.process-section { padding: 6rem 0; background: white; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; text-align: center; }
.process-step { position: relative; padding: 2rem; }
.process-icon { width: 80px; height: 80px; background: rgba(245, 124, 0, 0.1); color: var(--accent-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 1.5rem; transition: transform 0.3s; }
.process-step:hover .process-icon { transform: scale(1.1); background: var(--accent-orange); color: white; }
.process-step h3 { margin-bottom: 1rem; font-size: 1.3rem; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; }

/* COMPANY STATS */
.stats-section { background: linear-gradient(135deg, var(--primary-blue), var(--primary-green)); padding: 4rem 0; color: white; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.stat-box { padding: 2rem; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-box:last-child { border-right: none; }
.stat-box h2 { font-size: 3.5rem; color: white; margin-bottom: 0.5rem; font-family: var(--font-heading); }
.stat-box p { font-size: 1.1rem; opacity: 0.9; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* INNER PAGES */
.inner-hero { padding: 160px 0 80px; background: linear-gradient(135deg, var(--primary-blue), var(--primary-green)); color: var(--bg-white); text-align: center; }
.inner-hero h1 { color: var(--bg-white); font-size: 3.5rem; margin-bottom: 1rem; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; font-size: 1.1rem; opacity: 0.8; }
.breadcrumb a { text-decoration: underline; }

.service-details-section { padding: 6rem 0; }
.service-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-details-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-details-content h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.service-details-content p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.1rem; }
.feature-list { margin-bottom: 2rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; color: var(--text-dark); font-size: 1.1rem; }
.feature-list i { color: var(--primary-green); font-size: 1.3rem; margin-top: 0.2rem; }

/* GALLERY */
.gallery-preview { padding: 6rem 0; background: #f8fafc; text-align: center; }
.gallery-masonry { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.gallery-masonry img { width: 100%; height: 280px; object-fit: cover; border-radius: 12px; transition: transform 0.4s; box-shadow: var(--shadow-sm); }
.gallery-masonry img:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }

/* VIDEO SECTION */
.video-section { padding: 6rem 0; background: var(--bg-white); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* WHY CHOOSE US */
.why-choose-us { background-color: var(--primary-blue); color: var(--bg-white); padding: 6rem 0; }
.why-choose-us .section-title { color: var(--bg-white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.feature-box { background-color: rgba(255, 255, 255, 0.05); padding: 2.5rem; border-radius: var(--radius-lg); text-align: center; transition: var(--transition); border: 1px solid rgba(255, 255, 255, 0.1); }
.feature-box:hover { background-color: rgba(255, 255, 255, 0.15); transform: translateY(-8px); }
.feature-box i { font-size: 3.5rem; color: var(--accent-orange); margin-bottom: 1.5rem; }
.feature-box h3 { color: var(--bg-white); margin-bottom: 1rem; font-size: 1.4rem; }
.feature-box p { opacity: 0.85; font-size: 1rem; line-height: 1.6; }

/* TESTIMONIALS & FAQ & CTA */
.testimonial-section { padding: 6rem 0; background-color: var(--bg-light); color: var(--text-dark); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: var(--shadow-sm); border-top: 4px solid var(--accent-orange); transition: transform 0.3s; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial-card p { font-style: italic; color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
.testimonial-card h5 { color: var(--primary-blue); font-size: 1.1rem; }

.faq-section { background-color: white; padding: 6rem 0; }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-light); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); border-left: 4px solid var(--primary-green); }
.faq-item h4 { color: var(--primary-blue); margin-bottom: 0.8rem; font-size: 1.25rem; }
.faq-item p { color: var(--text-muted); font-size: 1.05rem; }

.cta-section { padding: 5rem 0; text-align: center; background: linear-gradient(135deg, var(--accent-orange), #d86c00); color: white; }
.cta-section h2 { color: white; margin-bottom: 1.5rem; font-size: 3rem; }
.cta-section p { margin-bottom: 2.5rem; font-size: 1.25rem; opacity: 0.95; }
.cta-section .btn { padding: 1rem 2.5rem; font-size: 1.1rem; border-radius: 50px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-card { background-color: var(--bg-white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 1.5rem; transition: transform 0.3s; }
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-info-icon { width: 60px; height: 60px; background-color: rgba(43, 122, 75, 0.1); color: var(--primary-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.contact-form { background-color: var(--bg-white); padding: 3rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 1.5rem; }
.form-control { width: 100%; padding: 1rem; border: 1px solid var(--border-light); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 1rem; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(26, 91, 143, 0.1); }

/* FOOTER */
footer { background-color: #0f172a; color: #cbd5e1; padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 3rem; }
.footer-logo img { height: 80px; background: white; padding: 10px; border-radius: 8px; margin-bottom:1rem; }
.footer-desc { margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.8; opacity: 0.8; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 45px; height: 45px; background-color: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--transition); font-size: 1.2rem; }
.footer-social a:hover { background-color: var(--accent-orange); color: var(--bg-white); transform: translateY(-3px); }
.footer-heading { color: var(--bg-white); font-size: 1.3rem; margin-bottom: 1.5rem; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { transition: var(--transition); font-size: 1.05rem; }
.footer-links a:hover { color: var(--primary-green); padding-left: 0.5rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; font-size: 1.05rem; }
.footer-contact i { color: var(--accent-orange); margin-top: 0.3rem; font-size: 1.2rem; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 1rem; opacity: 0.7; }

/* FLOATING BUTTONS */
.floating-buttons { position: fixed; bottom: 2rem; right: 2rem; display: flex; flex-direction: column; gap: 1rem; z-index: 9999; }
.float-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--bg-white); box-shadow: var(--shadow-lg); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.float-btn:hover { transform: scale(1.15); }
.btn-whatsapp { background-color: #25d366; }
.btn-phone { background-color: var(--primary-blue); }
.btn-email { background-color: var(--accent-orange); }

/* ANIMATIONS */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); } 40% { transform: translateY(-20px) translateX(-50%); } 60% { transform: translateY(-10px) translateX(-50%); } }
.fade-up { animation: fadeInUp 0.8s ease forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-title { font-size: 4rem; }
  .service-details-grid { gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-menu { position: fixed; top: 100px; left: -100%; width: 100%; height: calc(100vh - 100px); background-color: var(--bg-white); flex-direction: column; justify-content: flex-start; align-items: center; padding-top: 3rem; gap: 1.5rem; transition: left 0.4s ease; overflow-y: auto; }
  .nav-menu.active { left: 0; }
  .menu-toggle { display: block; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background-color: var(--bg-light); width: 100%; text-align: center; display: none; }
  .nav-item.active .dropdown-menu { display: block; }
  .hero-title { font-size: 2.8rem; }
  .service-details-grid { grid-template-columns: 1fr; }
  .service-details-content { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer-contact li { justify-content: center; }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2rem; }
  .stat-box:last-child { border-bottom: none; }
  .floating-buttons { bottom: 1rem; right: 1rem; transform: scale(0.85); transform-origin: bottom right; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }
  .section-title { font-size: 2rem; }
  .contact-form { padding: 1.5rem; }
}


.hws-credit {
  color: rgba(255, 255, 255, 0.7); /* Light grey text */
  font-size: 14px;
  letter-spacing: 0.5px;
  font-family: sans-serif;
}

.hws-credit a {
  color: #fff; /* White link text */
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.hws-credit a:hover {
  color: #f1c40f; /* Turns gold on hover */
  text-shadow: 0 0 8px rgba(241, 196, 15, 0.6);
}