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

:root {
  --primary-color: #00ADEF;
  --primary-dark: #0089bd;
  --secondary-color: #F7941D;
  --secondary-dark: #d67b12;
  --accent-color: #0054A6;
  --dark-bg: #050a15;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);
  --text-main: #1a1f2c;
  --text-muted: #5e6d82;
  --gradient-blue: linear-gradient(135deg, #00ADEF 0%, #0054A6 100%);
  --gradient-orange: linear-gradient(135deg, #F7941D 0%, #FFB347 100%);
  --gradient-dark: linear-gradient(135deg, #050a15 0%, #002d5b 100%);
  --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 20px 40px -10px rgba(0, 173, 239, 0.25);
  --gradient-brand: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.text-brand-blue { color: var(--primary-color); }
.text-brand-orange { color: var(--secondary-color); }

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Utilities */
.section-padding {
  padding: 80px 0;
}

/* Gradients */
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary-custom {
  background: var(--gradient-brand);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 151, 210, 0.3);
  color: white;
}

/* Header Variations */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60%;
  height: 4px;
  background: var(--gradient-brand);
  bottom: -10px;
  left: 20%;
  border-radius: 2px;
}

.section-title p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

/* Service Cards */
.transition-hover {
  transition: all 0.3s ease;
}

.transition-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.main-header {
  width: 100%;
  z-index: 3000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.top-bar-custom {
  background: var(--gradient-dark);
  color: white;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar {
  padding: 15px 0;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  z-index: 3001;
}

.main-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 4000;
}

.main-header.is-sticky .top-bar-custom {
  display: none;
}

.main-header.is-sticky .navbar {
  padding: 10px 0;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-main) !important;
  font-size: 0.95rem;
  padding: 10px 20px !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 20px;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: calc(100% - 40px);
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Dropdown Enhancement */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  padding: 15px;
  background: white;
  min-width: 250px;
  z-index: 4100;
}

.dropdown-item {
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: #f0f7ff;
  color: var(--primary-color);
  transform: translateX(5px);
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand img {
  transition: transform 0.3s ease;
  max-width: 100%;
  padding: 2px;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

/* Dropdown Hover */
@media (min-width: 1200px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
  }
}

.dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
  padding-left: 25px;
}

.btn-pay-now {
  background: linear-gradient(135deg, #8e2de2, #4a00e0, #00d2ff);
  background-size: 200% auto;
  color: white;
  padding: 10px 25px;
  border-radius: 50px 0 50px 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.5s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.btn-pay-now:hover {
  background-position: right center;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-pay-now i {
  font-size: 20px;
}

.btn-get-quote {
  background: var(--gradient-brand);
  background-size: 200% auto;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: all 0.5s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-get-quote:hover {
  background-position: right center;
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  color: white;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 173, 239, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0, 173, 239, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 173, 239, 0); }
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.main-footer {
  background-color: #0b0b0b !important;
}

.footer-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: white;
  clip-path: ellipse(60% 100% at 50% 0%);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-list a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-floating-bar {
  position: fixed;
  left: 20px;
  bottom: 50%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.social-icon.fb { background-color: #3b5998; }
.social-icon.tw { background-color: #1da1f2; }
.social-icon.in { background-color: #0077b5; }
.social-icon.wa { background-color: #25d366; }

.social-icon:hover {
  transform: scale(1.1) translateX(5px);
  color: white;
}

.brand-footer-animation {
  display: flex;
  gap: 15px;
}

.pulse-circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: relative;
}

.pulse-circle.blue { background-color: var(--primary-color); }
.pulse-circle.orange { background-color: var(--secondary-color); }

.pulse-circle::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: footerPulse 2s infinite;
}

@keyframes footerPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

.brand-footer-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  background-size: 200% 100%;
  border-radius: 3px;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 100% 0%; }
  100% { background-position: -100% 0%; }
}

.footer-center-logo {
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.revealed {
  opacity: 1;
  transform: translateY(0);
}

.slide-in {
  opacity: 0;
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-in.left { transform: translateX(-50px); }
.slide-in.right { transform: translateX(50px); }
.slide-in.up { transform: translateY(50px); }

.slide-in.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.custom-delay-1 { transition-delay: 200ms; }
.custom-delay-2 { transition-delay: 400ms; }

.fa-whatsapp {
  color: #25D366 !important;
}

/* Hero Slider Styles */
.hero-slider-wrapper {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  transition: transform 10s linear;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.slide-content {
  position: relative;
  z-index: 3;
}

/* Slide Entrance Animations */
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide.active .slide-up {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.5s; }
.delay-3 { transition-delay: 0.7s; }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 50px;
  right: 50px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.slider-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.slider-indicators {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
}

.indicator.active {
  background: var(--primary-color);
  transform: scale(1.3);
  border-color: rgba(255,255,255,0.5);
}

/* Slide Image Styles */
.slide-img-wrapper {
  opacity: 0;
  transform: translateX(50px) scale(0.9);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: 0.8s;
}

.slide.active .slide-img-wrapper {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.slide-img {
  max-width: 80%;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

.floating {
  animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
  .hero-slider-wrapper { height: 70vh; }
  .display-3 { font-size: 2.5rem; }
  .slider-controls, .slider-indicators { bottom: 20px; }
  .slider-controls { right: 20px; }
}