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

:root {
  --primary-gradient: linear-gradient(135deg, #2CA6A4 0%, #38BDF8 100%);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0B0F19;
  color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

/* Custom Gradients & Glows */
.bg-gradient-primary {
  background: var(--primary-gradient);
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-card {
  position: relative;
  background: #111827;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.glow-card:hover {
  border-color: rgba(142, 45, 226, 0.4);
  box-shadow: 0 0 30px rgba(142, 45, 226, 0.15);
  transform: translateY(-5px);
}

.glow-effect {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(142, 45, 226, 0.2) 0%, rgba(142, 45, 226, 0) 70%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

/* Footer Background - Hero Section Match */
.footer-background {
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(44, 166, 164, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(31, 138, 138, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(44, 166, 164, 0.08) 0%, transparent 70%),
    linear-gradient(135deg, #0B0F19 0%, #111827 25%, #0B0F19 50%, #1F2937 75%, #0B0F19 100%) !important;
}

/* Footer Logo - White Color */


/* Glassmorphism */
.glass-effect {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom Buttons */
.btn-gradient {
  background: var(--primary-gradient);
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 20px rgba(142, 45, 226, 0.4);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Cursor Follower */
#cursor-follower {
  position: fixed;
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, #2CA6A4 0%, #1F8A8A 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px 4px rgba(44, 166, 164, 0.4), 0 0 40px 8px rgba(44, 166, 164, 0.2);
  opacity: 0.8;
  transition: width 0.3s ease, height 0.3s ease;
}
/* Default state (white navbar) */
.nav-link {
  transition: color 0.3s ease;
}

/* On scroll */
.navbar-scrolled .nav-link {
  color: #111827 !important;
}

/* Hover */
.navbar-scrolled .nav-link:hover {
  color: #2CA6A4 !important;
}

/* Fix dropdown icon */
.navbar-scrolled .nav-link i {
  color: #111827 !important;
}

/* ========================================
   INTERNAL CSS FROM INDEX.HTML
   ======================================== */

body {
    background-color: #F9FAFB !important;
    color: #111827 !important;
}

/* Convert Glass to Clean White Cards */
.glass-effect {
    background: #FFFFFF !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    border-radius: 1.5rem !important;
}

.btn-gradient {
    background: linear-gradient(90deg, #2CA6A4, #38BDF8) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(44, 166, 164, 0.3) !important;
}

.btn-gradient:hover {
    box-shadow: 0 6px 20px rgba(44, 166, 164, 0.4) !important;
    transform: scale(1.05) !important;
}

.text-gradient {
    background: linear-gradient(90deg, #2CA6A4, #38BDF8) !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Navbar Pill Adjustment */
#navbar .bg-white\/5 {
    background: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
}

#navbar .border-white\/10 {
    border-color: rgba(0, 0, 0, 0.05) !important;
}

/* Footer Redesign - Gradient Background & Styles */
footer {
    background: linear-gradient(135deg, #1F6F78, #2CA6A4) !important;
    color: #FFFFFF !important;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.05) !important;
    padding-top: 3.5rem !important;
    padding-bottom: 2.5rem !important;
}

footer h3,
footer p,
footer a,
footer span {
    color: #FFFFFF !important;
}

footer h3 {
    margin-bottom: 1.5rem !important;
    /* mb-6 equivalent */
}

footer ul li {
    position: relative;
    padding-left: 0 !important;
}

footer ul li a {
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    position: relative;
}

footer ul li a i {
    position: absolute !important;
    left: -18px !important;
    top: 52% !important;
    transform: translateY(-50%) !important;
    opacity: 0 !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
}

footer ul li a:hover {
    transform: translateX(18px) !important;
}

footer ul li a:hover i {
    opacity: 1 !important;
    left: -15px !important;
}

/* Social Icons glass circle style */
footer .flex.space-x-4.pt-2 a {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 9999px !important;
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

footer .flex.space-x-4.pt-2 a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-3px) scale(1.1) !important;
}

/* Contact Icons Circular backdrops */
footer ul li i.fa-map-marker-alt,
footer ul li i.fa-envelope,
footer ul li i.fa-phone {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 9999px !important;
    width: 34px !important;
    height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 12px !important;
    transition: all 0.3s ease !important;
    color: #FFFFFF !important;
    flex-shrink: 0 !important;
}

footer ul li:hover i.fa-map-marker-alt,
footer ul li:hover i.fa-envelope,
footer ul li:hover i.fa-phone {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.08) !important;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2) !important;
    margin: 1.5rem 0 !important;
}

footer .text-center p {
    color: #FFFFFF !important;
    font-size: 0.8rem !important;
}

.glow-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.15), rgba(255,255,255,0.2)) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 32px rgba(44, 166, 164, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 -1px 0 rgba(255, 255, 255, 0.2) !important;
    border-radius: 1.5rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.glow-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(44, 166, 164, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 -1px 0 rgba(255, 255, 255, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.25), rgba(255,255,255,0.3)) !important;
}

.glow-card h3 {
    color: #1F2937 !important;
}

.glow-card p {
    color: #6B7280 !important;
}

/* Overriding icon circular backdrops */
.glow-card .w-12.h-12 {
    background: linear-gradient(135deg, rgba(44, 166, 164, 0.15), rgba(56, 189, 248, 0.15)) !important;
    color: #2CA6A4 !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(44, 166, 164, 0.2) !important;
}

.glow-card a {
    color: #2CA6A4 !important;
    opacity: 1;
}

.glow-card a:hover {
    color: #1F8A8A !important;
}

.glow-card .w-12.h-12 i {
    color: #2CA6A4 !important;
}

/* Navbar scrolled state */
#navbar.scrolled {
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

#navbar.scrolled .nav-link {
    color: #111827 !important;
}

#navbar.scrolled .nav-link:hover {
    color: #2CA6A4 !important;
}

#navbar .border-white\/10 {
    border-color: rgba(0, 0, 0, 0.05) !important;
}

/* Float animation keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(0.98);
    }
}

@keyframes float-fast {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-slow 7s ease-in-out infinite;
}

.animate-float-fast {
    animation: float-fast 4s ease-in-out infinite;
}

.cursor-blinking {
    border-color: #2CA6A4 !important;
    animation: cursor-blink .75s step-end infinite;
}

@keyframes cursor-blink {
    from, to {
        border-color: transparent
    }

    50% {
        border-color: #2CA6A4;
    }
}

/* Carousel Slide Overrides */
#hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 20;
}
.dot-active {
    background-color: #2CA6A4 !important;
    width: 1.5rem !important;
}
.split-item {
    will-change: transform, opacity;
}

/* ICON BOX FIX (Why Choose Section) */
#why-choose-us .glow-card .w-12.h-12 {
    background: #FFFFFF !important;
    border: 2px solid #2CA6A4 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(44, 166, 164, 0.15) !important;
    color: #2CA6A4 !important;
    transition: all 0.3s ease !important;
}

/* ICON COLOR */
#why-choose-us .glow-card .w-12.h-12 i {
    color: #2CA6A4 !important;
}

/* HOVER EFFECT */
#why-choose-us .glow-card:hover .w-12.h-12 {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 35px rgba(44, 166, 164, 0.25) !important;
    background: #2CA6A4 !important;
    border-color: #2CA6A4 !important;
}

#why-choose-us .glow-card:hover .w-12.h-12 i {
    color: #FFFFFF !important;
}

/* Service Cards - Bottom to Top Fill Animation */
#services .glow-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

#services .glow-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, #2CA6A4 0%, #1F8A8A 100%);
    transition: height 0.5s ease-in-out;
    z-index: 0;
}

#services .glow-card:hover::before {
    height: 100%;
}

#services .glow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 166, 164, 0.3);
}

#services .glow-card > * {
    position: relative;
    z-index: 1;
}

#services .glow-card:hover h3 {
    color: white !important;
}

#services .glow-card:hover i {
    color: white !important;
}

#services .glow-card:hover .w-12.h-12 {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: white !important;
}

#services .glow-card:hover .w-12.h-12 i {
    color: white !important;
}

/* CTA Button Icon Animation */
@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.icon-animate {
    animation: arrow-bounce 1.5s ease-in-out infinite;
}

/* Premium CTA Buttons */
.premium-btn-primary {
    background: linear-gradient(135deg, #1F8A8A 0%, #2CA6A4 100%);
    box-shadow: 0 20px 40px rgba(44, 166, 164, 0.3), 0 0 0 1px rgba(255,255,255,0.1);
}

.premium-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.premium-btn-primary:hover::before {
    left: 100%;
}

.premium-btn-primary:hover {
    background: linear-gradient(135deg, #1F8A8A 0%, #2CA6A4 100%);
    box-shadow: 0 20px 40px rgba(44, 166, 164, 0.3), 0 0 0 1px rgba(255,255,255,0.1);
}

.premium-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.premium-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 166, 164, 0.1) 0%, rgba(31, 138, 138, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.premium-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(44, 166, 164, 0.3);
    box-shadow: 0 10px 30px rgba(44, 166, 164, 0.1);
}

/* Testimonials Center Card 3D Pop Effect */
.testimonials-slider .swiper-slide {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.testimonials-slider .swiper-slide-active {
    transform: scale(1.08) translateZ(50px) !important;
    z-index: 10 !important;
}

.testimonials-slider .swiper-slide-active .glow-card {
    box-shadow: 0 25px 50px rgba(44, 166, 164, 0.25), 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid rgba(44, 166, 164, 0.3) !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.8)) !important;
}

.testimonials-slider .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.95) !important;
    opacity: 0.7 !important;
}

/* Typing Animation */
.typing-text {
    position: relative;
    display: inline-block;
}

.typing-text::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #2CA6A4;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Pop-up animation for first image card */
.image-pop-up {
    animation: popUp 4s ease-in-out infinite;
}

@keyframes popUp {
    0%, 100% { 
        transform: scale(1) translateY(0px);
        box-shadow: 0 25px 50px rgba(44, 166, 164, 0.25);
    }
    50% { 
        transform: scale(1.05) translateY(-10px);
        box-shadow: 0 35px 70px rgba(44, 166, 164, 0.4);
    }
}



