/* DARK SAAS THEME */
body {
  background: #0d0f12;
  color: #e9eef5;
  font-family: 'Inter', sans-serif;
}

/* Navbar background */
.bg-dark-saap {
  background: rgba(15, 17, 20, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Links */
.navbar .nav-link {
  color: #cfd4da;
  font-weight: 500;
  letter-spacing: .3px;
  transition: color .2s ease, transform .2s ease;
  padding: 8px 4px;
}

.navbar .nav-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.navbar .nav-link.active {
  color: #fff !important;
}

/* ================= NAVBAR LOGO ================= */

.navbar-logo {
    height: 48px;      /* Bigger, premium desktop size */
    width: auto;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 991px) {
    .navbar-logo {
        height: 42px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .navbar-logo {
        height: 36px;
    }
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

/* Accent color (Red) */
.text-accent {
  color: #e63946;
}

/* CTA Button */
.btn-accent {
  background: #e63946;
  color: #fff;
  border-radius: 8px;
  transition: 0.25s ease;
}

.btn-accent:hover {
  background: #ff4b59;
  box-shadow: 0px 4px 16px rgba(230, 57, 70, 0.4);
  transform: translateY(-2px);
}

/* ================= HERO SECTION (CREATIVE SAAS) ================= */
.hero-section {
  padding: 140px 0 140px;
  background: #0d0f12;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Background Container */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Floating Orbiting Blobs */
.orb {
  position: absolute;
  width: 260px;      /* smaller than before */
  height: 260px;
  border-radius: 50%;
  filter: blur(100px); /* more blur for softer look */
  opacity: 0.30;       /* reduced opacity */
  mix-blend-mode: screen;
  animation: float 12s infinite ease-in-out;
  z-index: 0;
  pointer-events: none;
}

/* Top-left */
.orb1 {
  background: #e63946;
  top: -120px;
  left: -160px;
  animation-delay: 0s;
}

/* Bottom-right */
.orb2 {
  background: #ff6b6b;
  bottom: -140px;
  right: -150px;
  animation-delay: 3s;
}

/* Removed middle orb completely */
.orb3 {
  display: none;
}

/* Float Animation */
@keyframes float {
  0%   { transform: translateY(0px) scale(1); }
  50%  { transform: translateY(-25px) scale(1.03); }
  100% { transform: translateY(0px) scale(1); }
}


/* Particle Layer */
#particlesCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

/* Eyebrow Tag */
.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: #e63946;
  background: rgba(230, 57, 70, 0.12);
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Title */
.hero-title {
  font-size: 2.6rem;
  max-width: 820px;
  margin: 0 auto;
  color: #fff;
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 3.3rem;
  }
}

/* Subtitle */
.hero-subtext {
  max-width: 620px;
  color: #cfd4da;
  font-size: 1.1rem;
}

/* Button Outline */
.btn-outline-light {
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: .3s ease;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  color: #aeb4bd;
}

/* Parallax Mouse Movement */
.hero-section:hover .orb {
  animation-play-state: paused;
  transition: transform .3s ease-out;
}

/* =============== RESPONSIVE FIXES (MOBILE & TABLET) =============== */
@media (max-width: 992px) {
  .orb {
    width: 190px;
    height: 190px;
    filter: blur(90px);
    opacity: 0.15;
  }

  .orb1 {
    top: -120px;
    left: -120px;
  }

  .orb2 {
    bottom: -130px;
    right: -120px;
  }
}

@media (max-width: 576px) {
  .orb {
    width: 150px;
    height: 150px;
    filter: blur(75px);
    opacity: 0.12; /* even softer on mobile */
  }

  .orb1 {
    top: -100px;
    left: -90px;
  }

  .orb2 {
    bottom: -110px;
    right: -95px;
  }
}


/* ================= VIEW MORE BUTTON ================= */

.btn-view-more {
    position: relative;
    z-index: 5;                 /* 🔥 bring above overlays */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    cursor: pointer;            /* 🔥 force pointer */
    pointer-events: auto;       /* 🔥 ensure hover works */
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background: rgba(255, 97, 109, 0.15);
    border-color: #ff616d;
    color: #ff616d;
    transform: translateY(-2px);
}



/* ================= SERVICES SECTION (Improved) ================= */
.services-section {
  background: #0d0f12;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal gradient for premium look */
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), transparent 70%);
  z-index: 0;
}

/* Section title + subtitle */
.section-title {
  color: #fff;
}

.section-subtext {
  color: #c9cdd5 !important;
}

/* Service Cards */
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: 0.35s ease;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.25);
  z-index: 1;
}

/* Hover Improvements */
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230,57,70,0.28);
  box-shadow: 0 14px 30px rgba(230, 57, 70, 0.13);
}

/* Glow Effect (Reduced & Softer) */
.service-card::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 130%;
  top: -60%;
  left: -20%;
  background: radial-gradient(circle, rgba(230,57,70,0.12), transparent 70%);
  opacity: 0;
  transition: 0.4s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 1;
}

/* Icon Styling */
.service-icon i {
  font-size: 38px;
  color: #ff4856;
  display: inline-block;
  transition: 0.25s ease;
}

/* Icon micro-interaction */
.service-card:hover .service-icon i {
  transform: scale(1.12);
}

/* Title */
.service-card h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Description text (brighter now) */
.service-card p {
  color: #d6d9e0 !important;
  line-height: 1.55;
}

/* Animated Grid Lines (Subtle + Premium) */
.services-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 25s linear infinite;
  opacity: 0.07;
  z-index: 0;
}

@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

/* ================= ABOUT SECTION (Clean Image Version) ================= */

.about-section {
  background: #0d0f12;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

/* Gentle ambient wave (very subtle, no red) */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03), transparent 70%);
  opacity: 0.35;
  z-index: 0;
}

/* ================= ABOUT STATS ================= */

.about-stat {
    min-width: 160px;
}

.about-stat h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff616d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* Plus sign */
.about-stat h3::after {
    content: "+";
    font-size: 1.6rem;
    font-weight: 600;
    margin-left: 2px;
}

.about-stat p {
    margin-top: 6px;
    font-size: 0.95rem;
    color: #9aa0ab;
}

/* RIGHT IMAGE WRAPPER */
.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 22px;
  overflow: hidden;
  
  /* Clean glass background */
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 32px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);

  opacity: 0;
  animation: fadeUp 1.2s ease-out forwards;
}

/* Flat illustration looks best with sharp edges */
.about-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Fade + slide animation */
@keyframes fadeUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Floating subtle shapes for SaaS feel */
.float-bubble {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  animation: bubbleFloat 6s infinite ease-in-out;
  opacity: 0.6;
}

/* Bubble positions */
.b1 { top: -16px; right: 18px; animation-delay: 0s; }
.b2 { bottom: 20px; left: -16px; animation-delay: 1.2s; }
.b3 { top: 40%; left: -20px; animation-delay: 2.4s; }

/* Float animation */
@keyframes bubbleFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Responsive Fix */
@media (max-width: 992px) {
  .about-right { margin-top: 50px; }
  .float-bubble { display: none; } /* cleaner on mobile */
}


/* ================= WHY CHOOSE US ================= */
.why-section{
  background: linear-gradient(180deg, rgba(230,57,70,0.02), rgba(255,255,255,0.01));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #eaf0f8;
}

/* Slight overlay to mute red tint and keep it soft */
.why-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
  z-index: 0;
}

/* Title */
.why-section .section-title{
  color: #fff;
  font-size: 1.95rem;
}

/* Subtitle */
.why-section .section-subtext{ color: #bfc6cf; }

/* Card */
.why-card{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 22px;
  min-height: 120px;
  transition: transform .32s cubic-bezier(.2,.9,.3,1), box-shadow .32s;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px);
}

/* Make sure cards sit above subtle background layers */
.why-card .why-icon{
  width:56px;
  height:56px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.02);
  color: #ff6b6b; /* icon color - subtle red */
  flex-shrink:0;
  transition: transform .28s ease, background .28s;
}

/* Title inside card */
.why-card h4{
  margin:0 0 6px;
  color:#fff;
  font-size:1.05rem;
  font-weight:700;
}

/* Text */
.why-card .muted{
  color:#c8cbd1;
  margin:0;
  font-size:0.95rem;
}

/* Hover effect: lift + icon pop + subtle border */
.why-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 18px 44px rgba(2,6,23,0.6);
  border-color: rgba(230,57,70,0.12);
}
.why-card:hover .why-icon{
  transform: translateY(-4px) scale(1.04);
  background: linear-gradient(135deg, rgba(230,57,70,0.06), rgba(255,255,255,0.02));
}

/* subtle pulse on icon (tiny) */
.why-icon svg{ width: 24px; height:24px; stroke: currentColor; fill: currentColor; }

/* Fade-up animation targets (if you already have an observer this will hook into it) */
.fade-up{ opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.9,.3,1); }
.fade-up.in-view{ opacity:1; transform: translateY(0); }

/* Responsive tweaks */
@media (max-width: 768px){
  .why-section{ padding: 56px 0; }
  .why-card{ padding:18px; min-height:unset; }
  .why-card .why-icon{ width:48px; height:48px; }
}
/* ================= WHY CHOOSE US ================= */
.why-section{
  background: linear-gradient(180deg, rgba(230,57,70,0.02), rgba(255,255,255,0.01));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #eaf0f8;
}

/* Slight overlay to mute red tint and keep it soft */
.why-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
  z-index: 0;
}

/* Title */
.why-section .section-title{
  color: #fff;
  font-size: 1.95rem;
}

/* Subtitle */
.why-section .section-subtext{ color: #bfc6cf; }

/* Card */
.why-card{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 22px;
  min-height: 120px;
  transition: transform .32s cubic-bezier(.2,.9,.3,1), box-shadow .32s;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px);
}

/* Make sure cards sit above subtle background layers */
.why-card .why-icon{
  width:56px;
  height:56px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.02);
  color: #ff6b6b; /* icon color - subtle red */
  flex-shrink:0;
  transition: transform .28s ease, background .28s;
}

/* Title inside card */
.why-card h4{
  margin:0 0 6px;
  color:#fff;
  font-size:1.05rem;
  font-weight:700;
}

/* Text */
.why-card .muted{
  color:#c8cbd1;
  margin:0;
  font-size:0.95rem;
}

/* Hover effect: lift + icon pop + subtle border */
.why-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 18px 44px rgba(2,6,23,0.6);
  border-color: rgba(230,57,70,0.12);
}
.why-card:hover .why-icon{
  transform: translateY(-4px) scale(1.04);
  background: linear-gradient(135deg, rgba(230,57,70,0.06), rgba(255,255,255,0.02));
}

/* subtle pulse on icon (tiny) */
.why-icon svg{ width: 24px; height:24px; stroke: currentColor; fill: currentColor; }

/* Fade-up animation targets (if you already have an observer this will hook into it) */
.fade-up{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.9,.3,1);
  will-change: transform, opacity;
}

.fade-up.in-view{
  opacity: 1;
  transform: translateY(0);
}


/* Responsive tweaks */
@media (max-width: 768px){
  .why-section{ padding: 56px 0; }
  .why-card{ padding:18px; min-height:unset; }
  .why-card .why-icon{ width:48px; height:48px; }
}


/* Section Title Accent */
.why-section .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.why-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, transparent, #e63946, transparent);
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.45);
  animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Card Glow Container */
.why-card {
  position: relative;
  overflow: visible;
}

/* Soft floating glow behind each card */
.why-card::before {
  content: "";
  position: absolute;
  inset: -12px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.08),
    transparent 70%
  );
  border-radius: 20px;
  filter: blur(14px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
  z-index: -1;
}

/* Glow appears on hover */
.why-card:hover::before {
  opacity: 1;
  transform: scale(1.08);
}

/* Enhanced Hover Effect */
.why-card:hover {
  transform: translateY(-12px);
  border-color: rgba(230, 57, 70, 0.4);
  box-shadow: 
      0 14px 30px rgba(230, 57, 70, 0.18),
      0 0 18px rgba(230, 57, 70, 0.25);
}




/* ================= PORTFOLIO SECTION ================= */
.portfolio-section{
  background:#0d0f12;
  padding:100px 0;
  position: relative;
  overflow: hidden;
}

/* subtle grid background */
.portfolio-section::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 65px 65px;
  opacity:0.06;
  animation: portfolioGrid 28s linear infinite;
}
@keyframes portfolioGrid {
  0%{ transform: translateY(0); }
  100%{ transform: translateY(65px); }
}

/* Card */
.portfolio-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: .35s ease;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

/* Hover soften + lift */
.portfolio-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 18px 38px rgba(230,57,70,0.15);
  border-color: rgba(230,57,70,0.22);
}

/* Image wrapper */
.portfolio-img{
  overflow:hidden;
  height:230px;
}

.portfolio-img img{
  width: 100%;
  height:100%;
  object-fit:cover;
  transition: transform .45s ease;
}

/* Hover Zoom */
.portfolio-card:hover img{
  transform: scale(1.08);
}

/* Info section */
.portfolio-info{
  padding: 22px;
}

.portfolio-info h4{
  color:#fff;
  font-size:1.25rem;
  margin-bottom:8px;
  font-weight:600;
}

.portfolio-info p{
  color:#c6c9d1;
  font-size:0.95rem;
  margin-bottom:14px;
}

/* Link */
.portfolio-link{
  color:#ff5b67;
  font-weight:600;
  text-decoration:none;
  font-size:0.95rem;
  transition:.25s ease;
}

.portfolio-link:hover{
  color:#ff707c;
  text-decoration:underline;
}

/* Fade-up (already used globally) */
.fade-up{ opacity:0; transform:translateY(18px); }
.fade-up.in-view{ opacity:1; transform:translateY(0); }



/* ================= TESTIMONIALS ================= */
.testimonials-section{
  background:#0d0f12;
  padding:100px 0;
  position:relative;
  overflow:hidden;
}

/* glowing accent in background */
.testimonials-section::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 0%, rgba(230,57,70,0.08), transparent 60%);
  opacity:0.3;
  z-index:0;
}

/* Slider Structure */
.testimonial-slider{
  position:relative;
  max-width:720px;
  margin:auto;
  overflow:hidden;
}

/* Testimonial Card */
.testimonial-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;
  padding:32px;
  color:#e6e8ed;
  display:none;
  backdrop-filter:blur(12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transition: opacity .5s ease, transform .5s ease;
}

/* active slide */
.testimonial-card.active{
  display:block;
}

/* Text */
.testimonial-content p{
  font-size:1.1rem;
  line-height:1.7;
  color:#d5d8de;
}

/* Author */
.testimonial-author{
  margin-top:25px;
  display:flex;
  align-items:center;
  gap:14px;
}

.testimonial-author img{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(255,255,255,0.15);
}

.testimonial-author h5{
  color:#fff;
  margin-bottom:3px;
}

.testimonial-author span{
  color:#b6b9c2;
  font-size:0.9rem;
}

/* Navigation Buttons */
.tnav-btn{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  color:#fff;
  padding:10px 16px;
  border-radius:10px;
  margin:0 6px;
  backdrop-filter: blur(6px);
  transition:.25s ease;
}

.tnav-btn:hover{
  background:rgba(230,57,70,0.25);
  border-color:rgba(230,57,70,0.4);
}

/* Fade-up still works */
.fade-up{ opacity:0; transform:translateY(18px); }
.fade-up.in-view{ opacity:1; transform:translateY(0); }

/* Responsive */
@media (max-width:768px){
  .testimonial-card{ padding:24px; }
  .testimonial-content p{ font-size:1rem; }
}



/* ================= CLIENT LOGOS (FULL WIDTH GRID) ================= */
.clients-section{
  background:#0d0f12;
  padding:80px 0;
  position:relative;
  overflow:hidden;
}

.clients-section::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06), transparent 60%);
  opacity:0.25;
  z-index:0;
}

/* logo card fills the entire grid cell */
.client-logo{
  width:100%;
  height:100%;
  min-height:110px;
  border-radius:16px;
  padding:22px;
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  display:flex;
  justify-content:center;
  align-items:center;
  transition: .32s ease;
}

/* logo image auto-scales to fit container */
.client-logo img{
  max-width: 80%;
  height:auto;
  filter: grayscale(100%) opacity(.7);
  transition:.28s ease;
}

/* hover = pop */
.client-logo:hover{
  transform:translateY(-8px);
  border-color: rgba(230,57,70,0.25);
  box-shadow:0 14px 28px rgba(230,57,70,0.15);
}

.client-logo:hover img{
  filter: grayscale(0%) opacity(1);
}

/* fade animation */
.fade-up{ opacity:0; transform:translateY(18px); }
.fade-up.in-view{ opacity:1; transform:translateY(0); }

/* Responsive */
@media(max-width:576px){
  .client-logo{
    min-height:90px;
    padding:16px;
  }
  .client-logo img{
    max-width:85%;
  }
}


/* ================= FOOTER ================= */
.footer-section{
  background:#0b0d10;
  margin-top:80px;
  padding-bottom:20px;
  position:relative;
  color:#d1d5db;
}

/* Soft top gradient */
.footer-section::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% -20%, rgba(230,57,70,0.12), transparent 60%);
  opacity:0.3;
  z-index:0;
}

/* Footer Logo */
.footer-logo{
  font-size:1.8rem;
  font-weight:700;
  color:#fff;
  letter-spacing:1px;
}

.footer-desc{
  color:#bfc4cc;
  font-size:.95rem;
  line-height:1.6;
  max-width:340px;
}

/* Social Icons */
/* ================= FOOTER SOCIAL ICON HOVER EFFECT ================= */

/* Base styling (already exists, we enhance it) */
.footer-social a {
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:10px;
  color:#fff;
  font-size:1.15rem;
  transition: 
      background .35s ease,
      border-color .35s ease,
      transform .35s cubic-bezier(.2, 1, .2, 1),
      box-shadow .35s ease,
      color .35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Glow + Scale */
.footer-social a:hover {
  background: rgba(255, 80, 100, 0.25);
  border-color: rgba(255, 80, 100, 0.45);
  transform: translateY(-4px) scale(1.12);
  color:#ff8f98;
  box-shadow: 
      0 0 12px rgba(255, 80, 100, 0.4),
      0 0 24px rgba(255, 80, 140, 0.25);
}

/* Subtle shine sweep */
.footer-social a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: skewX(-22deg);
  transition: .45s ease;
  opacity: 0;
}

.footer-social a:hover::after {
  left: 120%;
  opacity: 1;
}

/* Icon breathing on hover */
.footer-social a:hover i {
  transform: scale(1.12);
  transition: .25s ease;
}

/* Smooth transition when not hovered */
.footer-social a i {
  transition: transform .25s ease;
}


/* Titles */
.footer-title{
  color:#fff;
  font-size:1.1rem;
  font-weight:600;
  margin-bottom:14px;
}

/* Links */
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li{
  margin-bottom:10px;
}
.footer-links a{
  color:#b9bec6;
  text-decoration:none;
  font-size:.95rem;
  transition:.25s ease;
}
.footer-links a:hover{
  color:#ff616d;
  padding-left:4px;
}

/* Contact List */
.footer-contact{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-contact li{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:10px;
  font-size:.95rem;
  color:#c8ccd4;
}
.footer-contact i{
  color:#ff616d;
}

/* Divider */
.footer-divider{
  width:100%;
  height:1px;
  margin:40px 0 20px;
  background:linear-gradient(90deg, transparent, rgba(230,57,70,0.5), transparent);
}

/* Bottom Bar */
.footer-bottom p{
  color:#aeb4bd;
  font-size:.9rem;
}

@media(max-width:768px){
  .footer-section{ text-align:center; }
  .footer-social{ justify-content:center; }
}

/* Animated underline for footer links */
.footer-links a {
  position: relative;
  padding-bottom: 2px;
  display: inline-block;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #ff616d;
  border-radius: 4px;
  transition: width .35s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* ================= MEGA PREMIUM MULTICOLOR ANIMATED DIVIDER ================= */

.footer-divider {
  position: relative;
  width: 100%;
  height: 3px; /* More visible */
  margin: 45px 0 30px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 80, 100, 0.5),
    rgba(160, 70, 255, 0.5),
    transparent
  );
  opacity: 1;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 
      0 0 20px rgba(255, 80, 100, 0.3),
      0 0 40px rgba(180, 90, 255, 0.25);
}

/* ===== Beam 1: Red/Pink Cinematic Sweep ===== */
.footer-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 100, 125, 1),
    rgba(255, 160, 200, 0.8),
    transparent
  );
  filter: blur(8px);
  animation: beamSweep 3.8s infinite ease-in-out;
}

/* ===== Beam 2: Purple Shimmer (faster small beam) ===== */
.footer-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 10%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(170, 80, 255, 1),
    rgba(200, 140, 255, 0.8),
    transparent
  );
  filter: blur(6px);
  animation: beamShimmer 2.2s infinite ease-in-out;
  opacity: 0.9;
}

/* Sweep Animation (main beam) */
@keyframes beamSweep {
  0%   { left: -30%; }
  50%  { left: 60%; }
  100% { left: 130%; }
}

/* Shimmer Beam Animation (secondary beam) */
@keyframes beamShimmer {
  0%   { left: -20%; opacity:0.3; }
  50%  { left: 70%; opacity:1; }
  100% { left: 120%; opacity:0.4; }
}




/* ================= CONTACT PAGE ================ */

.contact-page {
  background: #0b0d10;
}

/* HERO */
.contact-hero-section {
  padding: 90px 0 40px;
}

.contact-mini-title {
  color: #ff616d;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.contact-main-title {
  font-size: 2.6rem;
  color: #fff;
  margin-top: 10px;
}

.contact-subtitle {
  color: #bfc4cc;
  max-width: 580px;
  margin: 12px auto 0;
}

/* MAIN CONTACT SECTION */
.contact-section {
  padding-top: 20px;
}

/* ---------- GLASS CARDS ---------- */
.contact-info-card,
.contact-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 35px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

/* ---------- INFO LIST ---------- */
.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d9dde5;
  margin-bottom: 16px;
  font-size: 1rem;
}

.contact-details-list i {
  font-size: 1.2rem;
  color: #ff616d;
}

/* ---------- FORM INPUTS ---------- */
.contact-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 14px;
  border-radius: 12px;
  color: #fff;
}

.contact-input::placeholder {
  color: #a8adb8;
}

.contact-input:focus {
  background: rgba(255,255,255,0.08);
  border-color: #ff505f;
  box-shadow: 0 0 0 3px rgba(255,80,95,0.25);
}


/* ---------- RESPONSIVE ---------- */
@media(max-width:992px){
  .contact-main-title { font-size: 2.2rem; }
}



/* ================= PREMIUM BUTTON ================== */
/* ================= ANCHOR BUTTON (FIXED) ================= */
.main-btn {
    display: inline-block;
    position: relative;
    padding: 12px 34px;
    color: #fff !important;
    background: linear-gradient(135deg, #ff4d5d, #e63946);
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all .25s ease;
    overflow: hidden;
}

/* Shine Animation */
.main-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.35) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left .55s ease-out;
}

/* On Hover → Shine */
.main-btn:hover::after {
    left: 150%;
}

/* Hover Lift */
.main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 75, 95, 0.35);
}

/* Click Feedback */
.main-btn:active {
    transform: scale(0.96);
}





/* ================= ABOUT PAGE ================= */

/* Hero */
.about-hero {
  padding: 120px 0 50px;
}

.about-title {
  font-size: 2.3rem;
  color: #fff;
}

.about-sub {
  color: #bfc4cc;
  max-width: 650px;
  margin: 12px auto 0;
}

/* Story */
.story-text {
  color: #c7ccd5;
  line-height: 1.7;
}

.about-img {
  width: 95%;
  max-width: 500px;
}

/* Mission + Vision */
.mv-card {
  padding: 35px;
  border-radius: 18px;
}

.mv-title {
  color: #fff;
  font-weight: 600;
}

.mv-text {
  color: #c8ccd3;
}

/* Stats */
.about-stats {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stat-number {
  color: #ff616d;
  font-size: 2.2rem;
  font-weight: 700;
}

.stat-label {
  color: #bfc4cc;
}

/* Core Values */
.value-card {
  padding: 25px 10px;
  border-radius: 16px;
  transition: 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230,57,70,0.3);
  box-shadow: 0 10px 25px rgba(230,57,70,0.15);
}

.value-icon {
  font-size: 1.8rem;
  color: #ff616d;
  margin-bottom: 10px;
}


/* ================= SERVICES PAGE ================= */

.services-page {
  background: #0b0d10;
}

/* HERO */
.services-hero {
  padding: 120px 0 50px;
}

.services-title {
  font-size: 2.6rem;
  color: #fff;
}

.services-sub {
  color: #bfc4cc;
  max-width: 650px;
  margin: 10px auto 0;
}


/* ---------- SERVICE CARDS ---------- */
.service-card {
  text-align: center;
  padding: 35px 20px;
  border-radius: 18px;
  transition: .3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(230,57,70,0.3);
  box-shadow: 0 10px 30px rgba(230,57,70,0.15);
}

.service-icon {
  font-size: 2rem;
  color: #ff616d;
  margin-bottom: 12px;
}

.service-card p {
  color: #c7cbd3;
}


/* ---------- WHY WORK WITH US ---------- */
.why-icon {
  font-size: 2rem;
  color: #ff616d;
  margin-bottom: 10px;
}


/* ---------- PROCESS ---------- */
.process-step {
  text-align: center;
  padding: 25px 10px;
  color: #fff;
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ff616d;
  display: block;
  margin-bottom: 5px;
}


/* ================= PROCESS FLOW (FLOWCHART STYLE) ================= */

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Node items */
.process-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    padding: 22px 30px;
    border-radius: 14px;
    text-align: center;
    min-width: 160px;
    transition: .3s ease;
}

.process-item:hover {
    transform: translateY(-6px);
    border-color: rgba(230,57,70,0.3);
    box-shadow: 0 8px 18px rgba(230,57,70,0.15);
}

.process-item h6 {
    color: #fff;
    margin-top: 4px;
}

.step-number {
    font-size: 1.4rem;
    color: #ff616d;
    font-weight: 700;
    display: block;
}

/* Arrow */
.process-arrow {
    color: #ff616d;
    font-size: 1.8rem;
    opacity: .8;
}

/* Responsive */
@media(max-width: 768px){
    .process-arrow i {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}



/* ---------- CTA ---------- */
.cta-section {
  padding: 80px 0;
}

.cta-section h2 {
  color: #fff;
  font-size: 2rem;
}

.cta-section p {
  color: #bfc4cc;
}




/* ================= PORTFOLIO PAGE ================= */

.portfolio-page {
  background: #0b0d10;
}

/* HERO */
.portfolio-hero {
  padding: 120px 0 40px;
}

.portfolio-title {
  font-size: 2.6rem;
  color: #fff;
}

.portfolio-sub {
  color: #bfc4cc;
  max-width: 650px;
  margin: 12px auto 0;
}

/* FILTER BUTTONS */
.filter-bar .filter-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  padding: 10px 22px;
  border-radius: 12px;
  transition: .3s ease;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(255,80,90,0.25);
  border-color: rgba(255,80,90,0.4);
  color: #ff616d;
}

/* PORTFOLIO CARD */
.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
}

.portfolio-card img {
    width: 100%;
    border-radius: 18px;
    transition: .4s ease;
}

/* Hover zoom only */
.portfolio-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.85);
}

/* Always visible info */
.portfolio-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 18px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.15)
    );
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.portfolio-info h4 {
    color: #ff616d;
    margin-bottom: 4px;
    font-size: 1.15rem;
}

.portfolio-info p {
    color: #d9dde5;
    font-size: .9rem;
}

/* CTA */
.portfolio-cta {
    padding: 80px 0;
}

.portfolio-cta h2 {
    color: #fff;
}

.portfolio-cta p {
    color: #bfc4cc;
}



/* ================= SUCCESS MODAL ================= */
/* ================= SUCCESS MODAL ICON FIX ================= */

/* Force size + color (Bootstrap-safe) */
.success-icon i {
    font-size: 4.5rem !important;
    color: #22c55e !important; /* premium green */
    display: inline-block;
    line-height: 1;
}

/* ================= ERROR MODAL ICON ================= */
.error-icon i {
    font-size: 4.5rem !important;
    color: #ef4444 !important;
    display: inline-block;
    line-height: 1;
}



/* ================= DARK GLASS MODAL ================= */

/* Modal backdrop (background overlay) */
.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.85) !important;
}

/* Modal content (popup box) */
.modal-content {
    background: rgba(20, 20, 25, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Modal text colors */
.modal-content h4,
.modal-content h5 {
    color: #ffffff;
}

.modal-content p {
    color: #c9ccd3;
}

.modal-content {
    box-shadow:
        0 0 0 1px rgba(255, 97, 109, 0.15),
        0 20px 50px rgba(0, 0, 0, 0.6);
}




/* =================================================
   FORCE DARK GLASS MODAL (BOOTSTRAP OVERRIDE)
================================================= */

/* Backdrop (page background behind popup) */
body .modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

/* Modal box */
body .modal-dialog .modal-content {
    background-color: rgba(15, 15, 20, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7) !important;
}

/* Text inside modal */
body .modal-dialog .modal-content h4,
body .modal-dialog .modal-content h5 {
    color: #ffffff !important;
}

body .modal-dialog .modal-content p {
    color: #c9ccd3 !important;
}



/* ================= ANIMATED BORDER (ADMIN LOGIN) ================= */

/* ================= SIMPLE ANIMATED BORDER ================= */

.admin-login-card {
    position: relative;
    border-radius: 18px;
    z-index: 1;
}

/* Animated border layer */
.admin-login-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px; /* border thickness */
    border-radius: 18px;
    background: linear-gradient(
        120deg,
        #ff4d5d,
        #ff7a18,
        #ff4d5d
    );
    background-size: 300% 300%;
    animation: borderAnim 8s linear infinite;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

/* Smooth subtle animation */
@keyframes borderAnim {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}


/* ================= FLOATING WHATSAPP BUTTON ================= */

.whatsapp-float {
    position: fixed;
    right: 35px;
    bottom: 35px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;              /* 🔥 always on top */
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover (desktop only) */
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

/* Mobile safe size */
@media (max-width: 576px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
        right: 16px;
        bottom: 16px;
    }
}


@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: whatsappPulse 2.5s infinite;
}
