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

:root {
  --primary-color: #0d47a1; /* Royal Blue */
  --primary-light: #1565c0;
  --secondary-color: #00bcd4; /* Light Cyan */
  --accent-color: #fbc02d; /* Soft Gold */
  
  --bg-white: #ffffff;
  --bg-light: #f8fafd;
  --bg-gradient: linear-gradient(135deg, #f8fafd 0%, #e3f2fd 100%);
  
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  --transition: all 0.3s ease;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-alt: 'Manrope', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Typography Helpers */
.text-primary-color { color: var(--primary-color) !important; }
.text-secondary-color { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }

/* Utilities */
.section-padding { padding: 100px 0; }
@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
}
.bg-gradient-light { background: var(--bg-gradient); }

/* Buttons */
.btn-premium {
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-family: var(--font-alt);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(13, 71, 161, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-premium:hover {
  color: var(--bg-white);
  box-shadow: 0 8px 25px rgba(13, 71, 161, 0.4);
  transform: translateY(-2px);
}

.btn-premium:hover::before { opacity: 1; }

.btn-premium-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
  font-family: var(--font-alt);
  transition: var(--transition);
}

.btn-premium-outline:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  box-shadow: 0 8px 25px rgba(13, 71, 161, 0.2);
}

/* Navbar */
.navbar {
  transition: var(--transition);
  padding: 20px 0;
  background: transparent;
  z-index: 1030;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.navbar-brand span { color: var(--secondary-color); }

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 10px;
  position: relative;
  transition: var(--transition);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  width: 0; height: 2px;
  bottom: 0; left: 50%;
  background-color: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-glass);
  transition: var(--transition);
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 1);
}

/* Feature Icon Box */
.icon-box {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-size: 1.5rem;
  transition: var(--transition);
}
.glass-card:hover .icon-box {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: scale(1.1) rotate(5deg);
}

/* Forms */
.form-control, .form-select {
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: var(--border-radius-sm);
  padding: 12px 15px;
  background-color: var(--bg-white);
  transition: var(--transition);
  color: var(--text-dark);
}

.form-control:focus, .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
  background-color: var(--bg-white);
}
.form-floating > label {
    padding: 12px 15px;
    color: var(--text-muted);
    white-space: break-spaces;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 180px 0 100px;
  background: var(--bg-gradient);
  overflow: hidden;
}
.hero-shapes {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.shape-1 {
  position: absolute;
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,188,212,0.1) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
}
.shape-2 {
  position: absolute;
  bottom: 10%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,71,161,0.08) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; }
.hero-img-box { position: relative; z-index: 1; text-align: center; }
.hero-img-box img { 
  max-width: 100%; 
  border-radius: var(--border-radius-lg); 
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

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

/* Footer */
.footer {
  background-color: var(--bg-white);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--primary-color);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.social-icons a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--primary-color);
  margin-right: 10px;
  text-decoration: none;
  transition: var(--transition);
}
.social-icons a:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

/* Page Headers */
.page-header {
  padding: 160px 0 80px;
  background: var(--bg-gradient);
  text-align: center;
  position: relative;
}

/* EMI Calculator */
.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: #e2e8f0;
  outline: none;
  padding: 0;
  margin: 0;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  transition: .15s ease-in-out;
  box-shadow: 0 2px 6px rgba(13,71,161,0.3);
}
.range-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.emi-result-box {
  background: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-md);
  padding: 30px;
  text-align: center;
}
.emi-result-box h3 { color: white; }
.emi-result-box p { color: rgba(255,255,255,0.8); }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }


@media (max-width: 767.98px) {

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    [data-aos].aos-animate {
        opacity: 1 !important;
        transform: none !important;
    }

    .navbar {
    background: #ffffff;
}

.navbar ul.navbar-nav
{
  align-items: start !important;
}



}

