/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f172a;
}

.navbar{
    position:fixed;
    width:100%;
    top:0;
    padding:18px 8%;
    background:rgba(0,0,0,0);
    backdrop-filter:blur(1px);
    z-index:1000;
}

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.logo img{
    height:42px;
}

/* LINKS */
.nav-links{
    display:flex;
    gap:25px;
}

.nav-item{
    text-decoration:none;
    color:whitesmoke;
    font-weight:500;
    position:relative;
    transition:.3s;
}

/* underline */
.nav-item::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:0%;
    height:2px;
    background:whitesmoke;
    transition:.3s;
}

.nav-item:hover::after,
.nav-item.active::after{
    width:100%;
}

/* CTA */
.nav-btn a{
    padding:10px 22px;
    background:linear-gradient(135deg,#4f46e5,#7c3aed);
    color:white;
    border-radius:8px;
    text-decoration:none;
}

/* HAMBURGER */
.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:25px;
    height:3px;
    background:whitesmoke;
    transition:.3s;
}

/* overlay */
.nav-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(2px);
    opacity:0;
    pointer-events:none;
    transition:.3s;
}

/* MOBILE */
@media(max-width:992px){

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:260px;
        height:100vh;
        background:rgba(255,255,255,.85);
        backdrop-filter:blur(15px);
        flex-direction:column;
        padding:90px 30px;
        gap:25px;
        transition:.45s cubic-bezier(.77,0,.18,1);
    }

    .nav-links.active{
        right:0;
    }

    .nav-overlay.active{
        opacity:1;
        pointer-events:auto;
    }

    .nav-item{
        color:#111;
        font-size:18px;
    }

    .nav-btn{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    /* hamburger morph */
    .hamburger.active span:nth-child(1){
        transform:rotate(45deg) translate(5px,5px);
    }

    .hamburger.active span:nth-child(2){
        opacity:0;
    }

    .hamburger.active span:nth-child(3){
        transform:rotate(-45deg) translate(6px,-6px);
    }
}
/* HERO SECTION */
.hero {
    padding-top: 50px;
    padding-bottom: 20px;
    min-height: 120vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* Animated Glow Background */
.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79,70,229,0.25) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: glowMove 8s ease-in-out infinite alternate;
}

@keyframes glowMove {
    0% { transform: translate(0,0); }
    100% { transform: translate(-40px,40px); }
}

.hero-container {
    width: 100%;
    padding: 0 8%;
    display: flex;
    align-items: left;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* LEFT SIDE */
.hero-left {
    flex: 1;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 20px;
    opacity: 1;
    transform: translateY(0);
}

.hero-text {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 30px;
    max-width: 550px;
    opacity: 1;
    transform: translateY(0);
}

/* Fade Up Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(79,70,229,0.3);
}
.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Animation */
.pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(79,70,229,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(79,70,229,0); }
    100% { box-shadow: 0 0 0 0 rgba(79,70,229,0); }
}
/* ===============================
   HERO KEYWORDS AUTO SCROLL
================================= */

.hero-keywords {
    margin-top: 40px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.keywords-track {
    display: inline-flex;
    gap: 40px;
    animation: scrollKeywords 20s linear infinite;
}

/* Vertical line between words */
.keywords-track span {
    font-size: 18px;
    font-weight: 600;
    color: white;
    position: relative;
    padding-right: 40px;
}

.keywords-track span::after {
    content: "|";
    position: absolute;
    right: 10px;
    color: #9ca3af;
}

/* Remove last separator visually */
.keywords-track span:last-child::after {
    display: none;
}

/* Animation */
@keyframes scrollKeywords {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* ===========================
   HERO RESPONSIVE FIX
=========================== */

@media (max-width: 992px) {

    .hero {
        min-height: auto !important;
        padding: 120px 0 80px;
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 6%;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 16px;
        max-width: 100%;
        margin: 0 auto 25px;
    }

    .hero-btn {
        display: inline-block;
        width: 100%;
        max-width: 300px;
    }

    .hero-keywords {
        margin-top: 25px;
    }

    .keywords-track span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .hero-title {
        font-size: 24px;
    }

    .hero-text {
        font-size: 15px;
    }

}



/* VIDEO BACKGROUND */
.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

/* overlay for readability */
.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

/* keep content above video */
.hero-container{
    position:relative;
    z-index:2;
}

/* text color white on video */
.hero-title,
.hero-text{
    color:white;
}
/* WHAT WE DO SECTION */
/* WHAT WE DO SECTION */
.what-section {
    padding: 60px 8%;
    background:  #0f172a;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #eff1f5;
    margin-bottom: 15px;
    padding-top: 10px;
}

.section-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #4f46e5;
    margin-bottom: 30px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    position: relative;
    height: 250px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Dark Overlay */
.service-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.6) 100%
    );
    transition: 0.4s ease;
}

.service-card:hover .overlay {
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.8) 100%
    );
}

/* Arrow Top Right */
.arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.4s ease;
    z-index: 2;
}

.service-card:hover .arrow {
    transform: translateX(6px) rotate(270deg);
}

/* Title Always Visible */
/* Title - Always Visible */
.card-title {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 2;
    transition: transform 0.4s ease;
}

.card-title h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Description */
.card-desc {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    color: #e5e7eb;
    font-size: 14px;
    line-height: 1.6;
    z-index: 2;
}

/* Hover Effect */
.service-card:hover .card-title {
    transform: translateY(-40px);
}

.service-card:hover .card-desc {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   WHAT WE DO RESPONSIVE FIX
=========================== */

@media (max-width: 992px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        height: 280px;
    }

    .what-section {
        padding: 70px 6%;
    }
}

@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 260px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 18px;
    }

}
/* =========================================
   PREMIUM MOBILE OPTIMIZATION FIX
   (No animation changes)
========================================= */

/* Improve hero spacing on tablets */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-container {
        padding: 0 6%;
    }
}

/* Mobile phones */
@media (max-width: 768px) {

    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-container {
        padding: 0 5%;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }

    /* Keywords spacing */
    .hero-keywords {
        margin-top: 30px;
    }

    .keywords-track span {
        font-size: 14px;
        padding-right: 25px;
    }
}

/* Small phones */
@media (max-width: 480px) {

    .hero-title {
        font-size: 24px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero {
        padding-top: 110px;
    }

    /* Reduce glow background size */
    .hero::before {
        width: 350px;
        height: 350px;
    }
}


/* =========================================
   WHAT WE DO MOBILE IMPROVEMENT
========================================= */

@media (max-width: 992px) {

    .what-section {
        padding: 80px 6%;
    }

    .service-card {
        height: 280px;
    }
}

@media (max-width: 768px) {

    .what-section {
        padding: 70px 5%;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        height: 300px;
    }

    .card-title h2 {
        font-size: 18px;
    }

    .card-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .service-card {
        height: 260px;
    }

    .card-title {
        left: 20px;
        right: 20px;
    }

    .card-desc {
        left: 20px;
        right: 20px;
    }
}
/* ===============================
   OUR PRINCIPLES – BACKGROUND IMAGE
================================= */

.principles-section {
    position: relative;
    padding: 80px 8%;
    color: white;
    overflow: hidden;

    background: url('https://res.cloudinary.com/dkhmpija5/image/upload/v1772097538/WhatsApp_Image_2026-02-26_at_2.47.25_PM_lqaave.jpg') center/cover no-repeat;
}

/* Dark overlay for readability */
.principles-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    z-index: 0;
}

/* Keep content above overlay */
.principles-section * {
    position: relative;
    z-index: 1;
}
.principles-header {
    text-align: center;
    margin-bottom: 50px;
}

.principles-header h2 {
    font-size: 34px;
}

/* Accordion container */
.accordion {
    max-width: 900px;
    margin: auto;
}

/* Each item */
.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    cursor: pointer;
    transition: 0.3s ease;
    outline: none;
}

/* Subheading */
.accordion-item h3 {
    font-size: 18px;
    transition: 0.3s ease;
}

/* Hidden content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.accordion-content p {
    margin-top: 12px;
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Hover or Focus (for mobile tap) */
.accordion-item:hover .accordion-content,
.accordion-item:focus .accordion-content {
    max-height: 200px;
    opacity: 1;
}

.accordion-item:hover h3,
.accordion-item:focus h3 {
    color: #4f46e5;
}

/* Mobile */
@media(max-width:768px){
    .principles-section {
        padding: 60px 6%;
    }

    .accordion-item h3 {
        font-size: 16px;
    }
}
/* ===============================
   WHOM WE SERVE – CINEMATIC EXPAND
================================= */
.serve-section {
    padding: 20px 6%;
    background: #0f172a;
    color: white;
}

.serve-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

/* ROW – 4 IN ONE LINE */
.serve-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.serve-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.6s ease;
}

/* Image */
.serve-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Dark overlay */
.serve-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.4),
        transparent
    );
}

/* INITIAL — bottom center */
.serve-content {
    position: absolute;
    left: 50%;
    top:85%;
    transform: translate(-50%, 0);
    width: 80%;
    text-align: bottom;
    z-index: 2;
    transition: transform 0.6s ease;
}

/* HOVER — move to center */
.serve-card:hover .serve-content,
.serve-card:focus-within .serve-content {
    transform: translate(-100%, -100%);
}

/* Heading alignment fix */
.serve-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    min-height: 48px;
}

/* Paragraph hidden initially */
.serve-content p {
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

/* Hover blur */
.serve-card:hover img,
.serve-card:focus-within img {
    filter: blur(6px) brightness(0.7);
}

/* ⭐ HOVER → CENTER */
.serve-card:hover .serve-content,
.serve-card:focus-within .serve-content {
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Paragraph reveal */
.serve-card:hover .serve-content p,
.serve-card:focus-within .serve-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Hover lift */
.serve-card:hover {
    transform: translateY(-8px);
}

/* RESPONSIVE */
@media(max-width:1200px){
    .serve-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px){
    .serve-row {
        grid-template-columns: 1fr;
    }

    .serve-card {
        height: 350px;
    }
}


/* ============================= */
/* WHY CHOOSE US - EXECUTIVE */
/* ============================= */

.why-section {
    position: relative;
    padding: 60px 8%;
    background: #0f172a; /* executive slate navy */
    overflow: hidden;
}

/* Subtle Background Accent */
.why-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 20% 30%,
        rgba(99,102,241,0.08),
        transparent 55%
    );
    pointer-events: none;
}

.why-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    z-index: 2;
}

.why-title {
    text-align: center;
    font-size: 36px;
    color: #f8fafc;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================= */
/* CARD */
/* ============================= */

.why-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);

    border-radius: 16px;
    padding: 24px 36px;
    margin-bottom: 20px;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Hover Elevation */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

/* ============================= */
/* Mouse Reactive Glow (Subtle) */
/* ============================= */

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(
        400px circle at var(--x) var(--y),
        rgba(99,102,241,0.15),
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.why-card:hover::before {
    opacity: 1;
}

/* ============================= */
/* LEFT SIDE */
/* ============================= */

.why-left {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 45%;
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

/* ============================= */
/* RIGHT SIDE */
/* ============================= */

.why-right {
    width: 50%;
}

.why-card h2 {
    color: #f1f5f9;
    font-size: 17px;
    font-weight: 600;
}

.why-card p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width: 992px) {

    .why-card {
        flex-direction: column;
        text-align: center;
        padding: 22px;
    }

    .why-left,
    .why-right {
        width: 100%;
    }

    .why-left {
        justify-content: center;
        margin-bottom: 15px;
    }
}
/* Light Sweep Effect */
.why-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-25deg);
    transition: 0.8s;
}

/* Hover Effects */
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(79,70,229,0.3);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover::after {
    left: 130%;
}

/* ============================= */
/* LEFT SIDE */
/* ============================= */

.why-left {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 45%;
}

/* Floating Icon */
.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.why-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

/* ============================= */
/* RIGHT SIDE */
/* ============================= */

.why-right {
    width: 50%;
}

.why-card h2 {
    color: #ffffff;
    font-size: 18px;
}

.why-card p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:992px){
    .why-card {
        flex-direction: column;
        text-align: center;
    }

    .why-left,
    .why-right {
        width: 100%;
    }

    .why-left {
        justify-content: center;
        margin-bottom: 15px;
    }
}
/* ============================= */
/* LEVEL 3 EFFECTS */
/* ============================= */

/* Scroll Initial State */
.why-card {
    opacity: 0;
    transform: translateY(40px);
}

/* Mouse Glow Effect */
.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(
        600px circle at var(--x) var(--y),
        rgba(79,70,229,0.25),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.why-card:hover::before {
    opacity: 1;
}

/* Subtle Parallax Background */
.why-overlay {
    animation: moveGlow 15s infinite alternate ease-in-out;
}

/* Tech Particle Background */
.why-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.2;
    pointer-events: none;
}
/* ============================= */
/* LEVEL 4 - ELITE EFFECTS */
/* ============================= */

/* Enable 3D GPU */
.why-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.2s ease;
}

/* Advanced Mouse Glow */
.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(
        500px circle at var(--x) var(--y),
        rgba(79,70,229,0.35),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.why-card:hover::before {
    opacity: 1;
}

/* Dynamic Gradient Border */
.why-card {
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(#111827, #111827) padding-box,
        linear-gradient(120deg, #4f46e5, #7c3aed, #06b6d4) border-box;
}

/* Subtle Background Parallax */
.why-overlay {
    animation: moveGlow 20s infinite alternate ease-in-out;
}

/* Tech Grid Layer */
.why-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    pointer-events: none;
}
/* ULTRA PREMIUM CTA SECTION */
.cta-section {
    padding: 150px 8%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    color: white;
    
}

/* Animated Moving Glow */
/* CTA SECTION WITH BACKGROUND IMAGE */
.cta-section {
    position: relative;
    padding: 150px 8%;
    text-align: center;
    color: white;
    overflow: hidden;

    background: url('https://investingnews.com/media-library/robot-hand-touching-human-hand-with-a-spark-in-between.jpg?id=33553684&width=2000&height=1500&coordinates=138%2C0%2C139%2C0') center/cover no-repeat;
}

/* Dark Overlay for readability */
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85),
        rgba(30, 41, 59, 0.85)
    );
    z-index: 1;
}

/* Optional subtle animated glow */
.cta-section::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(79,70,229,0.3), transparent 70%);
    top: -200px;
    right: -200px;
    animation: glowMove 10s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes glowMove {
    0% { transform: translate(0,0); }
    100% { transform: translate(-80px,60px); }
}

/* Make content above overlay */
.cta-container {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media(max-width:768px){
    .cta-section{
        padding:100px 6%;
    }
}

.cta-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
}

/* CTA BUTTON (White version) */
.cta-buttons .hero-btn {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-radius: 12px;
}

/* SOCIAL ICONS */
.cta-social {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.4s ease;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
}

/* Individual Brand Colors on Hover */
.social.whatsapp:hover { background: #25D366; }
.social.facebook:hover { background: #1877F2; }
.social.instagram:hover { 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social.twitter:hover { background: #151516; }
.social.linkedin:hover { background: #0A66C2; }

.social:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* MOBILE */
@media(max-width: 768px) {

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 15px;
    }

    .social {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
/* FOOTER */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 100px 8% 40px;
    position: relative;
}

/* Grid Layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

/* Logo */
.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #4f46e5;
}

/* SOCIAL */
.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: 0.4s ease;
}

.footer-social a:hover {
    background: #4f46e5;
    transform: translateY(-5px);
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
    color: #94a3b8;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer {
        padding: 70px 8% 30px;
    }
}
body {
    border: 5px solid rgb(251, 245, 245) !important;
}








