/* ===================================
   NaveenCloud - Custom Styles
   =================================== */

/* CSS Variables - Brand Colors */
:root {
  --primary-start: #0066CC;
  --primary-end: #00A3E0;
  --secondary: #1A3A52;
  --white: #FFFFFF;
  --light-gray: #F5F7FA;
  --accent: #0080FF;
  --dark-text: #1A1A2E;
  --body-text: #4A5568;
  --card-shadow: 0 10px 40px rgba(0, 102, 204, 0.1);
  --hover-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  line-height: 1.3;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================
   Gradient Backgrounds
   =================================== */
.gradient-bg {
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s ease;
}

.navbar.scrolled .logo {
  color: var(--secondary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.navbar.scrolled .logo-icon {
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.nav-menu a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 5px 0;
}

.navbar.scrolled .nav-menu a {
  color: var(--secondary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
  transition: width 0.3s ease;
}

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

.nav-cta {
  padding: 12px 24px;
  background: var(--white);
  color: var(--primary-start) !important;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .nav-cta {
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
  color: var(--white) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar.scrolled .menu-toggle span {
  background: var(--secondary);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-start) 50%, var(--primary-end) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }

  100% {
    transform: translateY(0) translateX(0);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.2s both;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: floatBubble 8s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.floating-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 30%;
  animation-delay: 2s;
}

.floating-circle:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 70%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes floatBubble {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-end) 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 128, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 128, 255, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-start);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-start);
}

/* ===================================
   Sections
   =================================== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--body-text);
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 163, 224, 0.1) 100%);
  color: var(--primary-start);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   Service Cards
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 163, 224, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: var(--primary-start);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 20px;
  color: var(--body-text);
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-start);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.learn-more:hover {
  gap: 15px;
}

/* ===================================
   Trust Section
   =================================== */
.trust-section {
  background: var(--light-gray);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.trust-item {
  text-align: center;
  padding: 30px;
}

.trust-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--white);
}

.trust-item h4 {
  font-size: 1.1rem;
  color: var(--secondary);
}

/* ===================================
   Metrics Section
   =================================== */
.metrics-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-start) 100%);
  position: relative;
  overflow: hidden;
}

.metrics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-40 0a40,40 0 1,0 80,0a40,40 0 1,0 -80,0' fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.metric-card {
  text-align: center;
  color: var(--white);
}

.metric-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-card p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===================================
   Testimonials
   =================================== */
.testimonials-section {
  background: var(--light-gray);
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 30px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
}

.author-info h5 {
  font-size: 1rem;
  color: var(--secondary);
}

.author-info p {
  font-size: 0.9rem;
  color: var(--body-text);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

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

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
  transform: translateY(-3px);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--primary-end);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===================================
   Page Hero
   =================================== */
.page-hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-start) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===================================
   About Page Styles
   =================================== */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.founder-image {
  position: relative;
}

.founder-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 8rem;
  box-shadow: var(--hover-shadow);
}

.founder-info h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.founder-title {
  color: var(--primary-start);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.founder-bio {
  margin-bottom: 30px;
}

.founder-bio p {
  margin-bottom: 15px;
}

.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.cert-badge {
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 163, 224, 0.1) 100%);
  color: var(--primary-start);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.skill-item {
  text-align: center;
  padding: 25px 15px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.skill-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.skill-item p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
}

/* ===================================
   Services Page Styles
   =================================== */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--light-gray);
}

.service-detail:nth-child(even) {
  background: var(--light-gray);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-content {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail-content>* {
  direction: ltr;
}

.problem-solution {
  margin-bottom: 30px;
}

.problem-box,
.solution-box {
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.problem-box {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #EF4444;
}

.solution-box {
  background: rgba(34, 197, 94, 0.1);
  border-left: 4px solid #22C55E;
}

.problem-box h4,
.solution-box h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.problem-box h4 {
  color: #EF4444;
}

.solution-box h4 {
  color: #22C55E;
}

.deliverables h4 {
  margin-bottom: 15px;
}

.deliverables ul {
  list-style: none;
  margin-bottom: 25px;
}

.deliverables li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
}

.deliverables li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-start);
  font-weight: bold;
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tool-badge {
  padding: 6px 14px;
  background: rgba(0, 102, 204, 0.1);
  color: var(--primary-start);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-large {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--white);
  box-shadow: var(--hover-shadow);
}

/* ===================================
   Case Studies Page
   =================================== */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.case-study-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.case-study-header {
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
  padding: 30px;
  color: var(--white);
}

.case-study-header h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.case-study-header p {
  opacity: 0.9;
  font-size: 0.9rem;
}

.case-study-body {
  padding: 30px;
}

.case-study-body h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--body-text);
  margin: 20px 0 10px;
}

.case-study-body h4:first-child {
  margin-top: 0;
}

.case-study-body ul {
  list-style: none;
  padding: 0;
}

.case-study-body li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.case-study-body li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-start);
}

.case-study-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.outcome-badge {
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.2) 100%);
  color: #22C55E;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

.case-study-footer {
  padding: 0 30px 30px;
}

/* ===================================
   Blog Page
   =================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.blog-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--body-text);
}

.blog-category {
  color: var(--primary-start);
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card h3 a:hover {
  color: var(--primary-start);
}

.blog-excerpt {
  color: var(--body-text);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* ===================================
   Contact Page
   =================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--card-shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-start);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
}

.error-message {
  color: #EF4444;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-start) 100%);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--white);
  font-size: 1.1rem;
}

.contact-info-item a:hover {
  opacity: 0.8;
}

.calendly-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.calendly-section h4 {
  color: var(--white);
  margin-bottom: 15px;
}

.calendly-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Map */
.map-section {
  margin-top: 60px;
}

.map-placeholder {
  height: 300px;
  background: linear-gradient(135deg, var(--light-gray) 0%, #E2E8F0 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body-text);
  font-size: 1.2rem;
}

/* ===================================
   Privacy Page
   =================================== */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 60px;
  box-shadow: var(--card-shadow);
}

.privacy-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 20px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.privacy-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.privacy-content p {
  margin-bottom: 15px;
}

.privacy-content ul {
  margin: 15px 0;
  padding-left: 25px;
}

.privacy-content li {
  margin-bottom: 8px;
}

.last-updated {
  color: var(--body-text);
  font-style: italic;
  margin-bottom: 30px;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Stagger animations */
.fade-in:nth-child(1) {
  transition-delay: 0.1s;
}

.fade-in:nth-child(2) {
  transition-delay: 0.2s;
}

.fade-in:nth-child(3) {
  transition-delay: 0.3s;
}

.fade-in:nth-child(4) {
  transition-delay: 0.4s;
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-content {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .service-detail-content {
    direction: ltr;
  }

  .service-visual {
    order: -1;
  }

  .founder-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    color: var(--secondary);
    font-size: 1.2rem;
  }

  .nav-cta {
    background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
    color: var(--white) !important;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  section {
    padding: 60px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .privacy-content {
    padding: 30px 20px;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .service-icon-large {
    width: 180px;
    height: 180px;
    font-size: 4rem;
  }

  .hero-content {
    padding: 0 10px;
  }

  .contact-form {
    padding: 25px;
  }

  .contact-info-card {
    padding: 25px;
  }
}

/* ===================================
   Form Success/Error States
   =================================== */
.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid #22C55E;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #22C55E;
  display: none;
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #EF4444;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #EF4444;
  display: none;
}

/* Loading Spinner */
.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===================================
   Glassmorphism Cards
   =================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

/* ===================================
   Mission Vision Section
   =================================== */
.mission-vision {
  background: var(--light-gray);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mission-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.values-list {
  list-style: none;
  text-align: left;
  margin-top: 20px;
}

.values-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--body-text);
}

.values-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary-start);
}

/* ===================================
   Enhanced Mobile Responsive Fixes
   =================================== */

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
  .nav-menu {
    padding: 80px 40px 40px;
    align-items: flex-start;
  }

  .nav-cta {
    margin-top: 20px;
    padding: 14px 28px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Footer Mobile Fixes */
  .footer {
    padding: 60px 0 30px;
  }

  .footer-brand {
    margin-bottom: 20px;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-tagline {
    margin-bottom: 20px;
  }

  .social-links {
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .footer-column {
    margin-bottom: 25px;
  }

  .footer-column h4 {
    margin-bottom: 15px;
  }

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

  .footer-contact p {
    justify-content: center;
  }

  /* About Page Mobile Fixes */
  .founder-info h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .founder-title {
    font-size: 1rem;
  }

  .founder-image-placeholder {
    font-size: 5rem;
    max-width: 280px;
    margin: 0 auto;
  }

  .certifications {
    justify-content: center;
    gap: 8px;
  }

  .cert-badge {
    padding: 6px 12px;
    font-size: 0.75rem;
    margin-bottom: 5px;
  }

  /* Hero Mobile Fixes */
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .page-hero p {
    font-size: 1rem;
    padding: 0 15px;
  }

  /* Section Header Mobile */
  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 1.6rem;
    padding: 0 10px;
  }

  .section-header p {
    font-size: 1rem;
    padding: 0 10px;
  }

  /* Service Cards Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px;
  }

  /* Trust Section Mobile */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .trust-item {
    padding: 20px 10px;
  }

  .trust-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .trust-item h4 {
    font-size: 0.9rem;
  }

  /* Metrics Mobile */
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .metric-number {
    font-size: 2.5rem;
  }

  /* Testimonial Mobile */
  .testimonial-card {
    padding: 25px;
  }

  .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  /* CTA Mobile */
  .cta-section h2 {
    font-size: 1.5rem;
    padding: 0 15px;
  }

  .cta-section p {
    font-size: 1rem;
    padding: 0 15px;
  }

  /* Skills Grid Mobile */
  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .skill-item {
    padding: 15px 10px;
  }

  .skill-icon {
    font-size: 1.8rem;
  }

  .skill-item p {
    font-size: 0.75rem;
  }

  /* Mission Vision Mobile */
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mission-card {
    padding: 30px 20px;
  }

  .mission-card h3 {
    font-size: 1.3rem;
  }

  /* Blog Grid Mobile */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-card h3 {
    font-size: 1.1rem;
  }

  /* Contact Grid Mobile */
  .contact-form {
    padding: 25px 20px;
  }

  .contact-form h2 {
    font-size: 1.4rem;
  }

  .contact-info-card {
    padding: 25px 20px;
    margin-top: 30px;
  }

  .contact-info-card h3 {
    font-size: 1.3rem;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .calendly-section {
    margin-top: 30px;
    padding-top: 25px;
  }

  /* Map Mobile */
  .map-section {
    margin-top: 40px;
  }

  .map-placeholder {
    height: 200px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {

  /* Extra small screen fixes */
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .skill-item {
    padding: 12px 8px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .floating-elements {
    display: none;
  }

  .founder-info h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }

  .nav-cta {
    width: auto;
  }

  .certifications {
    flex-direction: column;
    align-items: center;
  }

  .cert-badge {
    width: auto;
    text-align: center;
  }

  /* Case Studies Mobile */
  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .case-study-header {
    padding: 20px;
  }

  .case-study-header h3 {
    font-size: 1.2rem;
  }

  .case-study-body {
    padding: 20px;
  }

  .case-study-footer {
    padding: 0 20px 20px;
  }

  .outcome-badge {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  /* Privacy Page Mobile */
  .privacy-content {
    padding: 25px 15px;
  }

  .privacy-content h2 {
    font-size: 1.2rem;
  }

  /* Service Detail Mobile */
  .service-detail {
    padding: 50px 0;
  }

  .service-detail-content {
    gap: 30px;
  }

  .service-icon-large {
    width: 140px;
    height: 140px;
    font-size: 3.5rem;
    border-radius: 20px;
  }

  .problem-box,
  .solution-box {
    padding: 15px;
  }

  .deliverables li {
    padding-left: 25px;
    font-size: 0.95rem;
  }

  .tools-list {
    gap: 8px;
  }

  .tool-badge {
    padding: 5px 10px;
    font-size: 0.8rem;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}