/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0f172a;
    color:white;
    font-family:'Segoe UI',sans-serif;
    overflow-x:hidden;
    line-height:1.7;
}

/* =========================
   NAVBAR
========================= */
/* =========================
   MODERN PREMIUM NAVBAR
========================= */

.custom-navbar {
    background: #03091A;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Logo Container - Proper Alignment */
.logo-container {
    display: flex;
    align-items: center;
    margin-right: 12px !important;
    padding: 2px 0;
    text-decoration: none;
}

.nav-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    background: transparent;
}

.logo-container:hover .nav-logo-img {
    transform: scale(1.03);
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.4));
}

/* Nav Links - Center Aligned & Modern Sizing */
.custom-navbar .navbar-nav {
    gap: 8px;
    margin: 0 auto;
}

.custom-navbar .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.4px;
    padding: 10px 18px !important;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #00d4ff !important;
}

/* Animated Glowing Underline */
.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 6px;
    left: 50%;
    background-color: #00d4ff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
    width: 70%;
}

/* Right Side CTA Button */
.nav-action {
    display: flex;
    gap: 15px;
    margin-left: auto !important;
}

.nav-cta-btn {
    background: linear-gradient(90deg, #00d4ff, #0ea5e9);
    color: #000;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.25);
    white-space: nowrap;
}

.nav-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    color: #000;
}

/* Container Adjustment */
.custom-navbar .container {
    display: flex;
    align-items: center;
    max-width: 100% !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

/* Mobile Menu */
.navbar-toggler {
    border-color: rgba(0, 212, 255, 0.3) !important;
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 212, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive */
@media (max-width: 991px) {
    .custom-navbar {
        padding: 10px 0 !important;
    }
    
    .logo-container {
        margin-right: auto !important;
    }
    
    .nav-logo-img {
        height: 38px;
    }
    
    .custom-navbar .navbar-collapse {
        background: rgba(15, 23, 42, 0.98);
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .custom-navbar .navbar-nav {
        gap: 5px;
        text-align: center;
    }
    
    .nav-action {
        justify-content: center;
        margin-left: 0 !important;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .nav-logo-img {
        height: 40px;
    }
    
    .custom-navbar .nav-link {
        font-size: 15px;
        padding: 8px 12px !important;
    }
}
/* =========================
   HERO SECTION - ENHANCED
========================= */

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(2, 6, 23, 0.88),
        rgba(15, 23, 42, 0.92)
    ),
    url('./images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ANIMATED GLOW EFFECT */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(
            circle at top right,
            rgba(0, 212, 255, 0.25),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(124, 58, 237, 0.2),
            transparent 40%
        );
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

/* GRID BACKGROUND ANIMATION */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    opacity: 0.4;
    animation: gridMove 14s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(60px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1.2;
    }
}

/* FLOATING ORB ELEMENTS */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 212, 255, 0.15);
    top: -100px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 280px;
    height: 280px;
    background: rgba(124, 58, 237, 0.15);
    bottom: -80px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* CONTAINER Z-INDEX */
.hero .container {
    position: relative;
    z-index: 2;
}

/* MAIN TITLE STYLING */
.animate-title {
    font-size: 78px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.25);
    animation: titleSlideUp 1s ease-out;
}

@keyframes titleSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GRADIENT TEXT EFFECT */
.gradient-text {
    background: linear-gradient(
        90deg,
        #00d4ff,
        #7c3aed,
        #00d4ff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* TYPING TEXT ANIMATION */
.typing-text {
    color: #00d4ff;
    font-weight: 600;
    font-size: 1.4rem;
    min-height: 40px;
    letter-spacing: 1px;
}

/* HERO DESCRIPTION */
.hero-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* BUTTON GROUP CONTAINER */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Shared Button Base Styles */
.hero-btn {
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;  /* This is the magic for alignment */
    align-items: center;   /* Centers text/icon vertically */
    justify-content: center;
    gap: 12px;             /* Perfect space between text and icon */
    transition: all 0.4s ease;
    min-width: 220px;      /* Keeps buttons same width */
    height: 58px;          /* Keeps buttons same height */
}

/* Primary Button (Filled Cyan) */
.primary-btn {
    background: #00d4ff;
    color: #000;
    border: none;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    background: #00b8e6;
}

/* Outline Button (Transparent with Border) */
.outline-btn {
    background: rgba(30, 41, 59, 0.4);
    color: #00d4ff;
    border: 2px solid rgba(0, 212, 255, 0.4);
    backdrop-filter: blur(8px);
}

.outline-btn:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* Icon Specific Tweaks */
.hero-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px) rotate(-10deg);
}

/* Responsive Fix for Mobile */
@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-btn {
        width: 100%;
    }
}
/* OUTLINE BUTTON */
.hero-btn-outline {
    background: transparent;
    border: 2px solid rgba(0, 212, 255, 0.5);
    color: #00d4ff;
    padding: 14px 38px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.5s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1;
    text-decoration: none;
}

.hero-btn-outline i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 0.95rem;
    position: relative;
    top: 1px;
    transition: 0.3s ease;
}

.hero-btn-outline:hover {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    transform: translateY(-6px);
}

.hero-btn-outline:hover i {
    transform: translateX(4px);
}
/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.text-muted-light {
    color: #94a3b8;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.scroll-arrow {
    margin-top: 15px;
    font-size: 20px;
    color: #00d4ff;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE HERO
========================= */

@media (max-width: 992px) {
    .animate-title {
        font-size: 56px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-btn,
    .hero-btn-outline {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .hero-orb-1,
    .hero-orb-2 {
        filter: blur(60px);
    }
}

@media (max-width: 768px) {
    .animate-title {
        font-size: 42px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn,
    .hero-btn-outline {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0 0 0;
    }

    .animate-title {
        font-size: 32px;
    }

    .typing-text {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-orb-1,
    .hero-orb-2 {
        display: none;
    }

    .hero-btn,
    .hero-btn-outline {
        padding: 13px 28px;
        font-size: 0.9rem;
    }
}
/* =========================
   PROCESS / WORKFLOW SECTION
========================= */

.process-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 0 1rem;
}

.process-step {
  position: relative;
  overflow: hidden;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 2rem;
  border-radius: 28px;
  transition: 0.5s ease;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  cursor: pointer;
}

/* CORNER GLOW EFFECTS */

.process-step::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.08);
  transition: 0.6s ease;
  z-index: 0;
}

.process-step::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -90px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.06);
  transition: 0.6s ease;
  z-index: 0;
}

/* HOVER EFFECT - LIFT AND GLOW */

.process-step:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: #00d4ff;
  box-shadow: 
    0 15px 45px rgba(0, 212, 255, 0.2),
    0 0 60px rgba(0, 212, 255, 0.15);
  background: rgba(30, 41, 59, 0.85);
}

/* GLOW ANIMATION ON HOVER */

.process-step:hover::before {
  top: -40px;
  right: -40px;
  background: rgba(0, 212, 255, 0.18);
}

.process-step:hover::after {
  bottom: -40px;
  left: -40px;
  background: rgba(124, 58, 237, 0.15);
}

/* IMAGE WRAPPER - ICON CONTAINER */

.process-image-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
  transition: 0.5s ease;
  z-index: 1;
  position: relative;
  font-size: 48px;
  color: white;
}

/* ICON STYLING */

.process-image-wrapper i {
  font-size: 48px;
  color: white;
  transition: 0.5s ease;
}

/* HOVER IMAGE ANIMATION */

.process-step:hover .process-image-wrapper {
  transform: scale(1.15);
  box-shadow: 
    0 0 40px rgba(0, 212, 255, 0.4),
    0 10px 35px rgba(0, 212, 255, 0.2);
}

.process-step:hover .process-image-wrapper i {
  transform: scale(1.1) rotate(5deg);
}

/* PROCESS NUMBER BADGE */

.process-number {
  display: inline-flex;
  width: 3.2rem;
  height: 3.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff, #0ea5e9);
  color: #0f172a;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.35);
  transition: 0.5s ease;
  position: relative;
  z-index: 1;
}

.process-step:hover .process-number {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 0 35px rgba(0, 212, 255, 0.55);
}

/* HEADING STYLING - CONSISTENT WITH SERVICE CARDS */

.process-heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0.8rem 0;
  color: white;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

.process-step:hover .process-heading {
  color: #00d4ff;
}

/* DESCRIPTION TEXT - CONSISTENT WITH SERVICE CARDS */

.process-description {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
  flex-grow: 1;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}

.process-step:hover .process-description {
  color: #e2e8f0;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
  }

  .process-step {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-step {
    padding: 1.8rem 1.2rem;
  }

  .process-image-wrapper {
    width: 100px;
    height: 100px;
  }

  .process-image-wrapper i {
    font-size: 40px;
  }

  .process-heading {
    font-size: 1.4rem;
  }

  .process-number {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.2rem;
  }

  .process-step:hover {
    transform: translateY(-10px) scale(1.01);
  }
}

@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-step {
    padding: 1.5rem 1rem;
  }

  .process-image-wrapper {
    width: 90px;
    height: 90px;
  }

  .process-image-wrapper i {
    font-size: 36px;
  }

  .process-heading {
    font-size: 1.3rem;
    margin: 0.6rem 0;
  }

  .process-description {
    font-size: 0.9rem;
  }

  .process-number {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

/* TITLE */

.animate-title{

    font-size:78px;

    font-weight:800;

    letter-spacing:1px;

    text-shadow:
    0 0 30px rgba(0,212,255,0.25);
}

/* TEXT */

.typing-text{

    color:#00d4ff;

    font-weight:600;

    min-height:40px;
}

.hero p{

    color:#cbd5e1;
}

/* BUTTON */

.hero-btn{

    background:linear-gradient(
        90deg,
        #00d4ff,
        #0ea5e9
    );

    border:none;

    color:#000;

    padding:15px 38px;

    border-radius:14px;

    font-weight:700;

    transition:0.4s;

    box-shadow:
    0 0 25px rgba(0,212,255,0.3);
}

.hero-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 35px rgba(0,212,255,0.55);
}

/* =========================
   SECTIONS
========================= */

section{

    padding:120px 0;
    scroll-margin-top:50px;
}

.section-title{

    font-size:48px;

    font-weight:800;

    color:#00d4ff;

    margin-bottom:20px;
}
@media(max-width:768px){

    section{
        scroll-margin-top:110px;
    }

}
/* =========================
   SERVICE CARD
========================= */
.service-card{

    position:relative;

    overflow:hidden;

    background:rgba(30,41,59,0.95);

    padding:40px;

    border-radius:28px;

    transition:0.45s ease;

    height:100%;

    border:1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(10px);
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
  color: var(--accent-2);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* TOP RIGHT GLOW */

.service-card::before{

    content:"";

    position:absolute;

    top:-80px;
    right:-80px;

    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(0,212,255,0.10);

    transition:0.5s;
}

/* BOTTOM LEFT GLOW */

.service-card::after{

    content:"";

    position:absolute;

    bottom:-90px;
    left:-90px;

    width:200px;
    height:200px;

    border-radius:50%;

    background:rgba(124,58,237,0.08);

    transition:0.5s;
}

/* HOVER EFFECT */

.service-card:hover{

    transform:translateY(-12px);

    border-color:#00d4ff;

    box-shadow:
    0 0 35px rgba(0,212,255,0.18);
}

/* CORNER ANIMATION */

.service-card:hover::before{

    top:-40px;
    right:-40px;

    background:rgba(0,212,255,0.18);
}

.service-card:hover::after{

    bottom:-40px;
    left:-40px;

    background:rgba(124,58,237,0.15);
}

/* ICON */

.service-icon{

    width:78px;
    height:78px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        #00d4ff,
        #7c3aed
    );

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

    box-shadow:
    0 0 30px rgba(0,212,255,0.25);
}

.service-card h3{

    font-size:28px;

    margin-bottom:18px;

    font-weight:700;
}

.service-card p{

    color:#cbd5e1;
}

/* LIST */

.service-list{

    list-style:none;

    padding:0;

    margin-top:20px;
}

.service-list li{

    margin-bottom:14px;

    color:#cbd5e1;

    position:relative;

    padding-left:24px;
}

.service-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#00d4ff;

    font-weight:bold;
}

/* =========================
   ABOUT
========================= */

.bg-dark-section{
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(2, 6, 23, 0.88),
            rgba(15, 23, 42, 0.92)
        ),
        url('./images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-dark-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(0, 212, 255, 0.2),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(124, 58, 237, 0.16),
            transparent 40%
        );
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

.bg-dark-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    opacity: 0.35;
    animation: gridMove 14s linear infinite;
}

.bg-dark-section > .container {
    position: relative;
    z-index: 2;
}

.about-card{

    position:relative;

    overflow:hidden;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    padding:40px;

    border-radius:28px;

    height:100%;

    transition:0.45s ease;

    backdrop-filter:blur(12px);
}

/* TOP RIGHT GLOW */

.about-card::before{

    content:"";

    position:absolute;

    top:-90px;
    right:-90px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:rgba(0,212,255,0.08);

    transition:0.5s;
}

/* BOTTOM LEFT GLOW */

.about-card::after{

    content:"";

    position:absolute;

    bottom:-100px;
    left:-100px;

    width:240px;
    height:240px;

    border-radius:50%;

    background:rgba(124,58,237,0.07);

    transition:0.5s;
}

/* HOVER */

.about-card:hover{

    transform:translateY(-10px);

    border-color:#00d4ff;

    box-shadow:
    0 0 35px rgba(0,212,255,0.15);
}

/* HOVER GLOW MOVE */

.about-card:hover::before{

    top:-40px;
    right:-40px;

    background:rgba(0,212,255,0.15);
}

.about-card:hover::after{

    bottom:-40px;
    left:-40px;

    background:rgba(124,58,237,0.12);
}
/* EXPERIENCE */

.experience-item{

    display:flex;

    gap:20px;

    margin-bottom:30px;

    align-items:flex-start;
}

.exp-icon{

    min-width:68px;
    height:68px;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        #00d4ff,
        #7c3aed
    );

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:26px;

    color:white;
}

/* STATS */

.stats-box{

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    padding:35px 20px;

    border-radius:24px;

    transition:0.4s;
}

.stats-box:hover{

    transform:translateY(-8px);

    box-shadow:
    0 0 25px rgba(0,212,255,0.12);
}

.stats-box h2{

    color:#00d4ff;

    font-size:46px;

    font-weight:800;
}

/* =========================
   CONTACT SECTION
========================= */

/* The Glassmorphism Card */
.contact-card {
    position: relative;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 45px;
    border-radius: 28px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Background Glow Effects */
.contact-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.08);
    z-index: 0;
}

.contact-card::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.06);
    z-index: 0;
}

/* Keeps form above the glow */
.contact-form {
    position: relative;
    z-index: 1;
}

/* Custom Input Fields */
.custom-input {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    padding: 15px 20px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.custom-input::placeholder {
    color: #64748b !important;
}

/* Glowing outline when typing */
.custom-input:focus {
    border-color: #00d4ff !important;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2) !important;
    background: rgba(15, 23, 42, 0.95) !important;
}

/* Contact Info Icon styling */
.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

/* Eyebrow badge ("Let's Connect") */
.eyebrow {
    padding: 6px 18px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Theme Button (Matches your Hero Button) */
.theme-btn {
    background: linear-gradient(90deg, #00d4ff, #0ea5e9);
    border: none;
    color: #000;
    padding: 16px 30px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.4s;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
}

.theme-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.55);
    color: #000;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }
}
/* =========================
   FOOTER
========================= */

.footer-section{

    background:#020817;

    border-top:1px solid rgba(255,255,255,0.06);
}

.footer-logo{

    font-size:34px;

    font-weight:800;

    background:linear-gradient(
        90deg,
        #00d4ff,
        #7c3aed
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.footer-text{

    color:#94a3b8;

    line-height:1.9;
}

.footer-title{

    color:white;

    margin-bottom:25px;

    font-weight:700;
}

.footer-links{

    list-style:none;

    padding:0;
}

.footer-links li{

    margin-bottom:14px;

    color:#94a3b8;

    transition:0.3s;
}

.footer-links li:hover{

    color:#00d4ff;

    transform:translateX(5px);
}

.footer-social{

    display:flex;

    gap:15px;
}

.footer-social a{

    width:46px;
    height:46px;

    border-radius:14px;

    background:rgba(255,255,255,0.05);

    display:flex;

    align-items:center;
    justify-content:center;

    color:white;

    text-decoration:none;

    transition:0.3s;

    font-size:18px;
}

.footer-social a:hover{

    background:#00d4ff;

    color:black;

    transform:translateY(-5px);
}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,0.08);

    padding-top:20px;
}

.footer-bottom p{

    color:#64748b;
}

/* =========================
   CHAT
========================= */

.chat-toggle{

    position:fixed;

    bottom:25px;
    right:25px;

    width:65px;
    height:65px;

    background:#00d4ff;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:30px;

    cursor:pointer;

    z-index:9999;

    box-shadow:
    0 0 25px rgba(0,212,255,0.55);

    transition:0.4s;
}

.chat-toggle:hover{

    transform:scale(1.1);
}

/* CHAT BOX */

.chat-box{

    position:fixed;

    right:25px;
    bottom:100px;

    width:370px;
    height:550px;

    background:#111827;

    border-radius:24px;

    overflow:hidden;

    display:none;

    flex-direction:column;

    z-index:9999;

    box-shadow:
    0 0 40px rgba(0,0,0,0.45);
}

.chat-header{

    background:#00d4ff;

    color:black;

    padding:15px 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.close-chat{

    background:none;

    border:none;

    font-size:18px;

    cursor:pointer;
}

.chat-body{

    flex:1;

    padding:20px;

    overflow-y:auto;

    display:flex;

    flex-direction:column;
}

.bot-message,
.user-message{

    padding:12px 16px;

    border-radius:16px;

    margin-bottom:12px;

    max-width:80%;
}

.bot-message{

    background:#1e293b;

    color:white;

    align-self:flex-start;
}

.user-message{

    background:#00d4ff;

    color:black;

    align-self:flex-end;
}

.chat-footer{

    display:flex;

    border-top:1px solid #1e293b;
}

.chat-footer input{

    flex:1;

    padding:15px;

    border:none;

    outline:none;

    background:#0f172a;

    color:white;
}

.chat-footer button{

    background:#00d4ff;

    border:none;

    padding:15px 22px;

    font-weight:700;
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

    .animate-title{

        font-size:52px;
    }

    .section-title{

        font-size:38px;
    }

    .hero{

        text-align:center;
    }
}

@media(max-width:576px){

    .animate-title{

        font-size:40px;
    }

    .section-title{

        font-size:32px;
    }

    .service-card,
    .about-card{

        padding:30px 24px;
    }

    .chat-box{

        width:92%;

        right:4%;

        height:500px;
    }

    .experience-item{

        flex-direction:column;
    }
}