/*
Theme Name: Blankslate Child - Redirect India
Template: blankslate
Theme URI: https://redirectindia.com
Author: Redirect India
Author URI: https://redirectindia.com
Description: A professional WordPress child theme for Redirect India - Digital Services for Growing Indian Businesses. Built with Bootstrap 5 for modern, responsive design.
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: redirect-india
Tags: business, bootstrap, responsive, services, indian-businesses
*/

/* =================================
   REDIRECT INDIA CUSTOM STYLES
   ================================= */

:root {
  --ri-primary: #2563eb;
  --ri-secondary: #f97316;
  --ri-success: #059669;
  --ri-dark: #1f2937;
  --ri-light: #f8fafc;
  --ri-gradient: linear-gradient(135deg, var(--ri-primary) 0%, var(--ri-secondary) 100%);
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--ri-dark);
}

/* Header Styles */
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ri-primary) !important;
}
.navbar-brand a img {
        width: 100%;
    height: 85px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--ri-dark) !important;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  background: var(--ri-gradient);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::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 1000 100" fill="white" opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>');
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-hero {
  background: rgba(255,255,255,0.2);
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: white;
  color: var(--ri-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: var(--ri-light);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

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

.service-icon {
  font-size: 3rem;
  color: var(--ri-primary);
  margin-bottom: 20px;
  display: block;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--ri-dark);
}

.service-description {
  color: #6b7280;
  margin-bottom: 20px;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ri-secondary);
  margin-bottom: 20px;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-icon {
  color: var(--ri-success);
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.feature-content h5 {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ri-dark);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: var(--ri-light);
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 30px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #6b7280;
}

.testimonial-author {
  font-weight: 600;
  color: var(--ri-dark);
}

.testimonial-company {
  color: var(--ri-primary);
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--ri-gradient);
  color: white;
}

.contact-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.contact-form .form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  border-radius: 10px;
  padding: 12px 15px;
}

.contact-form .form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

.contact-form .form-control:focus {
  background: rgba(255,255,255,0.2);
  border-color: white;
  box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
  color: white;
}

/* Blog Styles */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

.blog-content {
  padding: 25px;
}

.blog-meta {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--ri-dark);
}

.blog-excerpt {
  color: #6b7280;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: var(--ri-dark);
  color: white;
  padding: 50px 0 20px;
}

.footer h5 {
  color: var(--ri-secondary);
  margin-bottom: 20px;
}

.footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--ri-secondary);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: #9ca3af;
}

/* Utility Classes */
.text-gradient {
  background: var(--ri-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary-custom {
  background: var(--ri-primary);
  border-color: var(--ri-primary);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-secondary-custom {
  background: var(--ri-secondary);
  border-color: var(--ri-secondary);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background: #ea580c;
  border-color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
}

/* Page Templates */
.page-template-home .site-main {
  padding: 0;
}

.page-template-services .site-main {
  padding: 40px 0;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 15px 20px;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background: #1fb653;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}