:root{
    --primary:#6A0DAD;
    --secondary:#D946EF;
    --gold:#D4AF37;
    --white:#ffffff;
    --text:#111;
    --bg:#ffffff;
}

html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
    font-family:'Poppins', sans-serif;
}

img, video{
    max-width:100%;
    height:auto;
    display:block;
}

/* HERO */

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.4);
    z-index:1;
}

/* VIDEO */

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

/* OVERLAY */

.overlay{

    background:
    linear-gradient(
        rgba(20,0,30,0.45),
        rgba(0,0,0,0.45)
    );

    z-index:1;
}

/* TOP BAR */
.top-bar{
    position:absolute;
    top:0;
    width:100%;
    padding:18px 50px;
    z-index:5;
    color:white;
    font-size:13px;
    letter-spacing:1px;
}

/* NAVBAR */

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}
.luxury-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
}




/* NAV LINKS */
.nav-left,
.nav-right{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}


/* MOBILE */
.luxury-nav{
    background:transparent;
    z-index:9999;
}

/* LOGO FIX */
.logo img{
    height:60px;
    width:auto;
}

/* FIX HAMBURGER VISIBILITY */
.navbar-toggler{
    border:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}

/* MAKE LINKS CLEAN */
.navbar-nav .nav-link{
    color:#111;
    font-weight:500;
}

.navbar-nav .nav-link:hover{
    color:var(--gold);
}

    .nav-left,
    .nav-right{
        width:100%;
        display:none;
        flex-direction:column;
        background:rgba(20,0,33,0.95);
        margin-top:20px;
        padding:20px;
        border-radius:15px;
        text-align:center;
        gap:20px;
    }

    .nav-left.active,
    .nav-right.active{
        display:flex;
    }

    /* ✅ FIXED LOGO (MOBILE SAFE) */
    .logo{
        position:static;
        transform:none;

        display:flex;
        align-items:center;
        justify-content:center;

        margin:auto;
        z-index:999;
    }

    .logo img{
        height:45px;
        width:auto;
        display:block;
    }
}

body{
    padding-top:80px;
}

/* LINKS */
.nav-left a,
.nav-right a{
    text-decoration:none;
    color:white;

    font-size:15px;
    font-weight:500;

    transition:0.3s;
}

.nav-left a:hover,
.nav-right a:hover{
    color:var(--gold);
}

/* LOGO (DESKTOP DEFAULT) */
.logo{
    position:absolute;
    left:50%;
    transform:translateX(-50%);

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:999;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
}

/* HERO CONTENT */
.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    padding:20px;
}


/* MAIN TEXT */

.hero-content h1{
    font-family:'Great Vibes', cursive;

    font-size:7rem;
    font-weight:400;

    line-height:1;

    margin-bottom:30px;
}

/* FRAME */

.hero-frame{
    border:4px solid white;

    padding:40px 90px;

    position:relative;
}

/* BUTTON */

.hero-frame a{
    text-decoration:none;

    background:#1b0f1f;

    color:white;

    padding:18px 45px;

    letter-spacing:3px;
    font-size:13px;
    font-weight:600;

    display:inline-block;

    transition:0.3s;
}

.hero-frame a:hover{
    background:#ff00cc;
}



/* TITLE */

.about{
    background: linear-gradient(
        to bottom,
        #ffffff,
        #f8f4ff
    );
    padding: 100px 0;
}

.about-title{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:70px;
}

.about-title span{
  color:var(--gold);
    font-weight:600;
    letter-spacing:2px;
    font-size:14px;
}

.about-title h2{
    font-size:3rem;
    color:#1a1a1a;
    margin:20px 0;
    line-height:1.2;
}

.about-title p{
    color:#666;
    line-height:1.8;
}


.about-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.grid-box{
    position:relative;
    height:450px;
    background-size:cover;
    background-position:center;
    overflow:hidden;
}
.content{
    position:absolute;
    bottom:30px;
    left:25px;
    right:25px;
    color:white;
    z-index:2;
}

.content h2{
    font-size:2rem;
    margin-bottom:10px;
    color:#d4af37;
}

.content p{
    font-size:15px;
    line-height:1.7;
    color:#f1f1f1;
}

/* MOBILE */

@media(max-width:991px){
    .about-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .about-grid{
        grid-template-columns:1fr;
    }

    .grid-box{
        height:350px;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-content h2 {
    font-size: 2rem;
  }
}
.about-container {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CEO SECTION */

.ceo-section{
padding:100px 8%;
background:#ffffff;
}

.ceo-container{
display:flex;
align-items:center;
gap:70px;
max-width:1200px;
margin:auto;
flex-wrap:wrap;
}

.ceo-image{
flex:1;
}

.ceo-image img{
width:100%;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.ceo-content{
flex:1;
}

.ceo-content span{
color:#D4AF37;
font-weight:700;
letter-spacing:3px;
font-size:14px;
text-transform:uppercase;
}

.ceo-content h2{
margin:15px 0;
font-size:42px;
color:#5B2C83;
}

.ceo-content h4{
color:#D4AF37;
margin-bottom:25px;
font-weight:600;
}

.ceo-content p{
line-height:1.9;
margin-bottom:18px;
color:#555;
font-size:16px;
}

@media (max-width:768px){

    .ceo-container{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .ceo-image,
    .ceo-content{
        width:100%;
    }

    .ceo-image img{
        width:100%;
        max-width:350px;
        height:auto;
        display:block;
        margin:auto;
    }

    .ceo-content h2{
        font-size:2rem;
    }

    .ceo-content h4{
        font-size:1.1rem;
    }

    .ceo-content p{
        text-align:left;
    }

}

/* ACHIEVEMENTS */

.achievements{
padding:100px 8%;
background:#f8f8f8;
text-align:center;
}

.achievements h2{
color:#d4af37;
font-size:42px;
margin-bottom:50px;
}

.achievement-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.achievement-card{
background:#ffffff;
padding:40px 20px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.4s ease;
border-top:4px solid #D4AF37;
}

.achievement-card:hover{
transform:translateY(-8px);
}

.achievement-card h3{
color:#D4AF37;
font-size:32px;
margin-bottom:10px;
}

.achievement-card p{
color:#555;
font-size:15px;
}

@media (max-width:768px){

    .achievement-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .achievement-card{
        width:100%;
        padding:30px 20px;
    }

    .achievement-card h3{
        font-size:28px;
    }

    .achievement-card p{
        font-size:14px;
    }

}


/* MOBILE */

@media(max-width:768px){

```
.ceo-container{
    flex-direction:column;
    gap:40px;
}

.ceo-content{
    text-align:center;
}

.ceo-content h2{
    font-size:34px;
}

.achievements h2{
    font-size:34px;
}
```

}


/* SERVICES SECTION */
.services{
    width:100%;
    padding:100px 8%;
    background:#ffffff;
}

/* TITLE */
.services-title{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:70px;
}

.services-title span{
  color:var(--gold);
    font-weight:600;
    letter-spacing:2px;
    font-size:14px;
}

.services-title h2{
    font-size:3rem;
    color:#1a1a1a;
    margin:20px 0;
    line-height:1.2;
}

.services-title p{
    color:#666;
    line-height:1.8;
}

/* GRID (FIXED RESPONSIVE STRUCTURE) */
.services-container{
    display:grid;
    grid-template-columns:repeat(3, minmax(320px, 1fr));
    gap:30px;
}

/* CARD */
.service-card{
    position:relative;
    min-height:550px;
    overflow:hidden;
    border-radius:20px;
    background-size:cover;
    background-position:center;
    cursor:pointer;
    transition:transform .4s ease;
}

/* OVERLAY */
.service-card .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(15,0,30,.85),
        rgba(168,85,247,.15)
    );
    transition:.4s ease;
}

/* CONTENT */
.service-content{
    position:absolute;
    left:25px;
    right:25px;
    bottom:30px;
    color:#fff;
    z-index:2;
}

.service-content h3{
    font-size:28px;
    margin-bottom:15px;
    line-height:1.2;
}

.service-content p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:20px;
}

/* HOVER */
.service-card:hover{
    transform:translateY(-10px);
}

.service-card:hover .overlay{
    background:linear-gradient(
        to top,
        rgba(15,0,30,.95),
        rgba(255,0,170,.35)
    );
}

/* Responsive */
@media (max-width:1200px){
    .services-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){
    .services-container{
        grid-template-columns:1fr;
    }

    .service-card{
        min-height:500px;
    }
}
.services-more{
    text-align:center;
    margin-top:50px;
}

.see-more-btn{
    display:inline-block;
    padding:14px 35px;

    background:var(--gold);
    color:#111;

    text-decoration:none;
    font-weight:600;

    border-radius:50px;

    transition:0.3s ease;
}

.see-more-btn:hover{
    transform:translateY(-5px);
    background:#f5d27a;
}
/* =========================
   RESPONSIVE FIX (IMPORTANT)
========================= */

@media(max-width:1200px){
    .services-container{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:768px){
    .services-container{
        grid-template-columns:1fr;
    }

    .service-card{
        height:350px;
    }

    .services-title h2{
        font-size:2rem;
    }
}

/* CONTENT */


/* IMAGE ZOOM */

.service-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:inherit;
    background-size:cover;
    background-position:center;
    transition:0.7s ease;
}

.service-card:hover::before{
    transform:scale(1.1);
}

/* RESPONSIVE */

@media(max-width:1100px){

    .services-container{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:700px){

    .services-title h2{
        font-size:2.2rem;
    }

    .services-container{
        grid-template-columns:1fr;
    }

}



/* TESTIMONIALS */

.testimonials{
    width:100%;
    padding:100px 8%;

        background: linear-gradient(
    135deg,
    #FFFFFF,
    #FAF8F2
);
    );
}

/* TITLE */

.testimonial-title{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:70px;
}

.testimonial-title span{
    color:var(--gold);
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
}

.testimonial-title h2{
    color:white;
    font-size:3rem;
    margin:20px 0;
    line-height:1.2;
}

.testimonial-title p{
    color:#d1d1d1;
    line-height:1.8;
}

/* GRID */

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.testimonial-card{
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.08);

    padding:40px 30px;
    border-radius:25px;

    transition:0.5s ease;
}

/* HOVER */

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#ff4fd8;
    box-shadow:0 10px 40px rgba(255,0,170,0.2);
}

/* QUOTE */

.quote{
    font-size:5rem;
    line-height:1;
    color:#ff4fd8;
    margin-bottom:10px;
}

/* TEXT */

.testimonial-card p{
    color:#f1f1f1;
    line-height:1.9;
    margin-bottom:30px;
}

.testimonial-more{
    text-align:center;
    margin-top:50px;
}

.see-more-btn{
    display:inline-block;
    padding:14px 35px;

    background:var(--gold);
    color:#111;

    text-decoration:none;
    font-weight:600;

    border-radius:50px;

    transition:0.3s ease;
}

.see-more-btn:hover{
    transform:translateY(-5px);
    background:#f5d27a;
}
/* CLIENT */

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

/* IMAGE */

.client img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #ff4fd8;
}

/* INFO */

.client-info h4{
    color:white;
    margin-bottom:5px;
}

.client-info span{
    color:#cfcfcf;
    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .testimonial-container{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .testimonial-title h2{
        font-size:2.2rem;
    }

}


/* CONTACT SECTION */

.contact{
    width:100%;
    padding:100px 8%;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;

    background:linear-gradient(
        135deg,
        #140021,
        #250038
    );
}

/* LEFT SIDE */

.contact-content span{
    color:var(--gold);
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
}

.contact-content h2{
    color:white;
    font-size:3.2rem;
    margin:20px 0;
    line-height:1.2;
}

.contact-content p{
    color:#d1d1d1;
    line-height:1.9;
    margin-bottom:40px;
}

/* INFO */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-box h4{
    color:white;
    margin-bottom:8px;
}

.info-box p{
    color:#cfcfcf;
}

/* FORM */

.contact-form{
  background:var(--gold);
   color:#111;
    padding:40px;
    border-radius:25px;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.08);
}

/* INPUTS */

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:none;
    outline:none;

    background:rgba(255,255,255,0.08);
    color:white;

    border-radius:12px;
    font-size:15px;
}

/* TEXTAREA */

.contact-form textarea{
    height:160px;
    resize:none;
}

/* PLACEHOLDER */

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#cfcfcf;
}

/* BUTTON */

.contact-form button{
    padding:18px;
    border:none;
    border-radius:50px;

    background:linear-gradient(
        135deg,
        #6a0dad,
        #ff4fd8
    );

    color:white;
    font-size:16px;
    font-weight:600;

    cursor:pointer;
    transition:0.5s ease;
}

/* HOVER */

.contact-form button:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 40px rgba(255,0,170,0.3);
}

/* RESPONSIVE */

@media(max-width:991px){

    .contact{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .contact-content h2{
        font-size:2.3rem;
    }

    .contact-form{
        padding:25px;
    }

}
/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#ffffff;
    color:#111;
    overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#ffffff;
    color:white;
}

.navbar .logo{
    color:#ff4fd8;
}

.navbar nav a{
    color:white;
    margin-left:20px;
    text-decoration:none;
    font-size:14px;
}

.navbar nav a.active{
    color:#ff4fd8;
}

/* =========================
   HERO SECTION (FIXED)
========================= */
.about-hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 10%;
    background:url('images/about-hero.jpg') center/cover no-repeat;
}

.about-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(10, 0, 20, 0.65);
}

/* HERO LAYOUT */
.hero-container{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    width:100%;
    max-width:1200px;
}

/* LEFT CONTENT */
.hero-content{
    max-width:600px;
    color:#fff;
}

.tag{
    display:inline-block;
    font-size:12px;
    letter-spacing:3px;
    color:#ff4fd8;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:clamp(2.2rem, 4vw, 4rem);
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:16px;
    opacity:0.9;
    line-height:1.6;
    margin-bottom:25px;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    padding:12px 20px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

.btn.primary{
    background:#ff4fd8;
    color:#fff;
}

.btn.secondary{
    background:transparent;
    border:1px solid #fff;
    color:#fff;
}

/* STATS */
.stats{
    display:flex;
    gap:20px;
    margin-top:30px;
    flex-wrap:wrap;
}

.stat h3{
    color:#ff4fd8;
    font-size:22px;
}

/* RIGHT VISUAL */
.hero-visual{
    position:relative;
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-visual img{
    width:100%;
    max-width:400px;
    border-radius:15px;
}

/* floating card */
.floating-card{
    position:absolute;
    bottom:20px;
    left:20px;
    background:#fff;
    padding:15px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    max-width:220px;
}

/* =========================
   STORY SECTION
========================= */
.about-story{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    padding:100px 8%;
    align-items:center;
    background:#FFFFFF;
}

.about-text h2{
    font-size:2.5rem;
    color:#6a0dad;
    margin-bottom:20px;
}

.about-text p{
    margin-bottom:15px;
    line-height:1.8;
    color:#444;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

/* =========================
   VALUES
========================= */
.core-values{
    padding:100px 8%;
    background:#140021;
    text-align:center;
}

.core-values h2{
    color:white;
    font-size:2.5rem;
    margin-bottom:50px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.value-card{
    background:linear-gradient(135deg,#140021,#250038);
    padding:30px;
    border-radius:15px;
    border:1px solid rgba(212,175,55,0.3);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    transition:0.3s;
}
.value-card:hover{
    transform:translateY(-6px);
    border-color:#ff4fd8;
}

.value-card h3{
    color:#ff4fd8;
}

/* =========================
   MISSION / VISION
========================= */
.mission-vision{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    padding:100px 8%;
}

.mv-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    border-left:5px solid #6a0dad;
}

/* =========================
   TEAM
========================= */
.team-preview{
    padding:100px 8%;
    text-align:center;
    padding:100px 8%;
    background:#ffffff;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* =========================
   CTA
========================= */
.about-cta{
    padding:120px 8%;
    text-align:center;
    background:linear-gradient(135deg,#6a0dad,#ff4fd8);
    color:white;
}

/* =========================
   FOOTER
========================= */
.footer{
    padding:20px;
    text-align:center;
    background:#140021;
    color:white;
}

/* =========================
   RESPONSIVE FIXES
========================= */
@media(max-width:991px){

    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .stats{
        justify-content:center;
    }

    .about-story,
    .mission-vision{
        grid-template-columns:1fr;
        background:#FAF8F2;
    }

    .values-grid,
    .team-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){

    .values-grid,
    .team-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:2rem;
    }

    .floating-card{
        position:static;
        margin-top:15px;
    }
}
/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}

/* BODY */
body{
    background:#ffffff;
    color:#111;
    overflow-x:hidden;
}

/* NAVBAR */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#140021;
    color:white;
}

.navbar .logo{
    color:#ff4fd8;
}

.navbar nav a{
    color:white;
    margin-left:20px;
    text-decoration:none;
    font-size:14px;
}

.navbar nav a.active{
    color:#ff4fd8;
}

/* HERO */
.about-hero{
    height:70vh;
    background:url('images/about-hero.jpg') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.about-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(20,0,30,0.7);
}

.about-hero-content{
    position:relative;
    color:white;
    max-width:700px;
}

.about-hero-content h1{
    font-size:3rem;
    color:#d4af37;
}

.about-hero-content p{
    margin-top:15px;
    color:#e5e5e5;
}

/* STORY */
.about-story{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    padding:100px 8%;
    align-items:center;
}

.about-text h2{
    font-size:2.5rem;
    color:#d4af37;
    margin-bottom:20px;
}

.about-text p{
    margin-bottom:15px;
    line-height:1.8;
    color:#444;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

/* VALUES */
.core-values{
    padding:100px 8%;
    background:#FAF8F2;
    text-align:center;
}

.core-values h2{
    color:#d4af37;
    font-size:2.5rem;
    margin-bottom:50px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.value-card{
    background:rgba(255,255,255,0.06);
    padding:30px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,0.1);
    transition:0.4s;
}

.value-card:hover{
    transform:translateY(-8px);
    border-color:#ff4fd8;
}

.value-card h3{
    color:##d4af37;
    margin-bottom:10px;
}

.value-card p{
    color:#ddd;
    font-size:14px;
}

/* MISSION VISION */
.mission-vision{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    padding:100px 8%;
}

.mv-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    border-left:5px solid #6a0dad;
}

.mv-box h3{
    color:#d4af37;
    margin-bottom:10px;
}
.mv-box p{
  color: black;
  margin-bottom:10px;
  font-size: 15px;
}

/* TEAM */
.team-preview{
    padding:100px 8%;
    text-align:center;
}

.team-preview h2{
    font-size:2.5rem;
    margin-bottom:50px;
    color:#d4af37;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.team-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.team-card h4{
    margin-top:10px;
    color:#d4af37;
}

.team-card span{
    font-size:13px;
    color:#666;
}

/* CTA */
.about-cta{
    padding:120px 8%;
    text-align:center;
    background:linear-gradient(135deg,#6a0dad,#ff4fd8);
    color:white;
}

.about-cta h2{
    font-size:2.5rem;
    margin-bottom:20px;
    color:#d4af37;
}

.about-cta a{
    display:inline-block;
    padding:15px 30px;
    background:white;
    color:#6a0dad;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
}

/* FOOTER */
.footer{
    padding:20px;
    text-align:center;
    background:#140021;
    color:white;
}

/* RESPONSIVE */
@media(max-width:991px){
    .about-story,
    .mission-vision{
        grid-template-columns:1fr;
    }

    .values-grid,
    .team-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .values-grid,
    .team-grid{
        grid-template-columns:1fr;
    }

    .about-hero-content h1{
        font-size:2rem;
    }
}



.about-hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 10%;
  background:#FAF8F2;
  color:#222;
  overflow:hidden;
}

.about-hero .overlay{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,0,150,0.15), transparent 50%),
              radial-gradient(circle at bottom left, rgba(120,0,255,0.15), transparent 50%);
}

.hero-container{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  width: 100%;
  z-index: 2;
}

/* TEXT SIDE */
.hero-text{
  flex: 1;
}

.tag{
  font-size: 12px;
  letter-spacing: 3px;
  color: #ff4d8d;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-text h1{
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-text p{
  font-size: 16px;
  opacity: 0.85;
  max-width: 500px;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons{
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.btn{
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary{
  background: #ff4d8d;
  color: #fff;
}

.btn.secondary{
  border: 1px solid #fff;
  color: #fff;
}

/* STATS */
.stats{
  margin-top: 40px;
  display: flex;
  gap: 30px;
}

.stat h3{
  font-size: 24px;
  color: #d4af37;
}

/* VISUAL SIDE */
.hero-visual{
  flex: 1;
  position: relative;
}

.image-card img{
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.floating-card{
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  width: 220px;
  border: 1px solid rgba(255,255,255,0.1);
}

.floating-card h4{
  margin-bottom: 8px;
  color: #ff4d8d;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .hero-container{
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons{
    justify-content: center;
  }

  .stats{
    justify-content: center;
    flex-wrap: wrap;
  }

  .floating-card{
    position: static;
    margin-top: 20px;
  }
}






/* RESET */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body{
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

/* =========================
   HERO SECTION
========================= */

.services-hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 10%;
  background: linear-gradient(135deg, #0a0a0a, #1b001f);
  text-align: center;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,0,150,0.15), transparent 50%),
    radial-gradient(circle at bottom right, rgba(120,0,255,0.15), transparent 50%);
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.tag{
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #d4af37;
  margin-bottom: 20px;
}

.hero-content h1{
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p{
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
}
.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s ease;
    height:auto;
    display:flex;
    flex-direction:column;
}
.service-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}


.service-card h3{
    padding:20px 20px 10px;
    margin:0;
}


.service-card p{
    padding:0 20px 25px;
    margin:0;
    line-height:1.7;
}

/* BUTTON */
.cta-btn{
  display: inline-block;
  padding: 12px 24px;
  background: #ff4d8d;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn:hover{
  transform: translateY(-3px);
  background: #ff2f7a;
}

/* =========================
   SERVICES SECTION
========================= */

.services-section{
  padding: 100px 10%;
  background: #0f0f0f;
}

.section-header{
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2{
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.section-header p{
  opacity: 0.7;
  max-width: 600px;
  margin: auto;
}

/* GRID */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARDS */
.service-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.service-card:hover{
  transform: translateY(-10px);
  border-color: rgba(255,77,141,0.4);
}

.service-card h3{
  color: #d4af37;
  margin-bottom: 10px;
  font-size: 18px;
}

.service-card p{
  opacity: 0.8;
  line-height: 1.5;
  font-size: 14px;
}

/* =========================
   CTA SECTION
========================= */

.cta-section{
  padding: 100px 10%;
  background: #0a0a0a;
}

.cta-box{
  text-align: center;
  padding: 60px 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.cta-box h2{
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 15px;
}

.cta-box p{
  opacity: 0.7;
  margin-bottom: 25px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 900px){

  .services-grid{
    grid-template-columns: 1fr;
  }

  .services-hero{
    padding: 60px 6%;
  }

  .services-section,
  .cta-section{
    padding: 70px 6%;
  }
}

@media (max-width: 500px){


  .service-card{
    padding: 20px;
  }
}


/* TESTIMONIALS */

.testimonials{
    width:100%;
    padding:120px 8%;
    background:#0d0d0d;
    color:#fff;
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#ff00aa;
    font-size:0.9rem;
    letter-spacing:3px;
    font-weight:600;
}

.section-title h2{
    font-size:3rem;
    margin:15px 0;
}

.section-title p{
    color:#bbb;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* CONTAINER */

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/* CARD */

.testimonial-card{
    position:relative;
    padding:40px 30px;
    border-radius:25px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    transition:0.4s ease;
    overflow:hidden;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#ff00aa;
    box-shadow:0 15px 40px rgba(255,0,170,0.2);
}

/* QUOTE */

.quote-icon{
    font-size:5rem;
    color:#ff00aa;
    line-height:1;
    margin-bottom:20px;
}

/* TEXT */

.testimonial-card p{
    color:#ddd;
    line-height:1.9;
    margin-bottom:30px;
}

/* CLIENT */

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-info img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #ff00aa;
}

.client-info h4{
    font-size:1rem;
    margin-bottom:5px;
}

.client-info span{
    color:#aaa;
    font-size:0.9rem;
}

/* MOBILE */

@media(max-width:768px){

    .section-title h2{
        font-size:2.2rem;
    }

    .testimonials{
        padding:90px 5%;
    }

}



/* CONTACT SECTION */

.contact-section{
    width:100%;
    padding:120px 8%;
    background:#111;
    color:#fff;
}

/* CONTAINER */

.contact-container{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    margin-top:60px;
}

/* CONTACT INFO */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-box{
    background:rgba(255,255,255,0.05);
    padding:30px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    transition:0.4s ease;
}

.info-box:hover{
    transform:translateY(-5px);
    border-color:#ff00aa;
}

.info-box h3{
    margin-bottom:10px;
    color:#ff00aa;
}

.info-box p{
    color:#ccc;
    line-height:1.7;
}

/* FORM */

.contact-form{
    background:rgba(255,255,255,0.05);
    padding:40px;
    border-radius:25px;
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
}

.input-group{
    margin-bottom:25px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:none;
    outline:none;
    border-radius:12px;
    background:#1a1a1a;
    color:#fff;
    font-size:1rem;
}

.contact-form textarea{
    height:160px;
    resize:none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#888;
}

/* BUTTON */

.contact-form button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:12px;
    background:linear-gradient(90deg,#6a00ff,#ff00aa);
    color:#fff;
    font-size:1rem;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
}

.contact-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(255,0,170,0.3);
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* MOBILE */

@media(max-width:900px){

    .contact-container{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .contact-section{
        padding:90px 5%;
    }

    .contact-form{
        padding:30px 20px;
    }

    .section-title h2{
        font-size:2.2rem;
    }

}



/* BLOG SECTION */

.blog-section{
    width:100%;
    padding:120px 8%;
    background:#0d0d0d;
    color:#fff;
}

/* BLOG CONTAINER */

.blog-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-top:70px;
}

/* BLOG CARD */

.blog-card{
    background:rgba(255,255,255,0.04);
    border-radius:25px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.4s ease;
    backdrop-filter:blur(10px);
}

.blog-card:hover{
    transform:translateY(-10px);
    border-color:#ff00aa;
    box-shadow:0 15px 40px rgba(255,0,170,0.2);
}

/* IMAGE */

.blog-image{
    width:100%;
    height:250px;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.blog-card:hover .blog-image img{
    transform:scale(1.1);
}

/* CONTENT */

.blog-content{
    padding:30px;
}

.blog-tag{
    display:inline-block;
    margin-bottom:15px;
    padding:8px 16px;
    border-radius:50px;
    background:rgba(255,0,170,0.15);
    color:#ff00aa;
    font-size:0.85rem;
    font-weight:600;
}

.blog-content h3{
    font-size:1.4rem;
    margin-bottom:15px;
    line-height:1.5;
}

.blog-content p{
    color:#bbb;
    line-height:1.8;
    margin-bottom:25px;
}

/* LINK */

.blog-content a{
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:0.3s ease;
}

.blog-content a:hover{
    color:#ff00aa;
}

/* MOBILE */

@media(max-width:768px){

    .blog-section{
        padding:90px 5%;
    }

    .blog-content{
        padding:25px;
    }

    .blog-content h3{
        font-size:1.2rem;
    }

}





/* FOOTER */

.footer{
    background:#140021;
    color:white;
    padding-top:80px;
}

/* CONTAINER */

.footer-container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
    padding-bottom:50px;
}

/* BRAND */

.footer-box h2{
    font-size:2rem;
    color:#d4af37;
    margin-bottom:20px;
}

.footer-box p{
    color:#d6d6d6;
    line-height:1.8;
    font-size:15px;
}

/* HEADINGS */

.footer-box h3{
    margin-bottom:20px;
    font-size:1.2rem;
    color:#d4af37;
}

/* LINKS */

.footer-box a{
    display:block;
    color:#d6d6d6;
    text-decoration:none;
    margin-bottom:12px;
    transition:0.4s ease;
}

.footer-box a:hover{
    color:#ff4fd8;
    transform:translateX(5px);
}

/* SOCIALS */

.socials{
    display:flex;
    gap:15px;
}

.socials a{
    width:45px;
    height:45px;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:0.4s ease;
    font-size:18px;
}

.socials a:hover{
    background:linear-gradient(135deg,#6a0dad,#ff4fd8);
    transform:translateY(-5px);
}

/* BOTTOM */

.footer-bottom{
    border-top:1px solid #d4af37;
    text-align:center;
    padding:20px;
    margin-top:20px;
    color: #d4af37;
}
.footer-bottom p{
    color:#bdbdbd;
    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .footer-container{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .footer-container{
        grid-template-columns:1fr;
    }

}


/* PROJECT LAUNCH AGENCY CARD */

.coming-soon-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(145deg, #141414, #1f1f1f);
    transition: 0.4s ease;
}

.coming-soon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(140, 82, 255, 0.25);
}

.coming-badge {
    position: absolute;
    top: 15px;
    right: -40px;
    background: #8c52ff;
    color: white;
    padding: 8px 45px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.coming-soon-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
}

.coming-soon-card p {
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 20px;
}

.launch-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.launch-features li {
    color: #e4e4e4;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.launch-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #8c52ff;
}

.coming-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #8c52ff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
    font-weight: 600;
}

.coming-btn:hover {
    background: #a66cff;
    transform: scale(1.05);
}
/* LUXURY FINISH TOUCH */
a, button{
    transition:0.3s ease;
}

.hero-content h1{
    text-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.service-card:hover,
.testimonial-card:hover{
    transform:translateY(-8px);
}




/* ===============================
   WEALTHNATION ABOUT PAGE
================================ */


/* HERO */

.about-hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:100px 8%;
    position:relative;
    background:
    linear-gradient(
        135deg,
        rgba(20,0,33,.85),
        rgba(106,13,173,.75)
    ),
    url("images/about-hero.jpg") center/cover no-repeat;
    overflow:hidden;
}


.about-hero .overlay{
    display:none;
}


.hero-container{
    max-width:1200px;
    width:100%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    position:relative;
    z-index:2;
}


/* LEFT */

.hero-content{
    flex:1;
    color:white;
}


.tag{
    color:#D4AF37;
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;
}


.hero-content h1{

    font-size:clamp(2.5rem,5vw,4.5rem);
    line-height:1.1;
    margin:20px 0;
    font-weight:800;
}


.hero-description{

    max-width:520px;
    line-height:1.8;
    color:#eee;
}


/* BUTTONS */

.hero-buttons{

    display:flex;
    gap:15px;
    margin-top:30px;
}


.btn{

    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}


.btn.primary{

    background:#D4AF37;
    color:#111;
}


.btn.secondary{

    border:1px solid white;
    color:white;
}


/* STATS */

.stats{

    display:flex;
    gap:30px;
    margin-top:40px;
    flex-wrap:wrap;
}


.stat h3{

    color:#D4AF37;
    font-size:30px;
}


.stat p{

    color:#ddd;
}



/* IMAGE SIDE */

.hero-visual{

    flex:1;
    position:relative;
}


.image-card img{

    width:100%;
    max-width:450px;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}


.floating-card{

    position:absolute;
    bottom:-30px;
    left:-30px;
    background:white;
    padding:25px;
    border-radius:20px;
    width:230px;
}


.floating-card h4{

    color:#6A0DAD;
}



/* STORY */

.about-story{

    padding:100px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}


.about-text h2{

    color:#6A0DAD;
    font-size:3rem;
}


.about-text p{

    color:#555;
    line-height:1.8;
}


.about-image img{

    width:100%;
    border-radius:25px;
}



/* VALUES */


.core-values{

    padding:100px 8%;
    background:#140021;
    text-align:center;
}


.core-values h2{

    color:#D4AF37;
    font-size:3rem;
}


.values-grid{

    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}


.value-card{

    padding:35px 25px;
    border-radius:20px;
    background:white;
}


.value-card h3{

    color:#6A0DAD;
    margin-bottom:15px;
}


.value-card p{

    color:#555;
}



/* MISSION */

.mission-vision{

    padding:100px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}


.mv-box{

    padding:40px;
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-left:5px solid #D4AF37;
}


.mv-box h3{

    color:#6A0DAD;
}



/* CEO */


.ceo-section{

    padding:100px 8%;
}


.ceo-container{

    display:flex;
    align-items:center;
    gap:60px;
}


.ceo-image img{

    width:100%;
    max-width:450px;
    border-radius:25px;
}


.ceo-content h2{

    color:#6A0DAD;
    font-size:2.5rem;
}


.ceo-content span{

    color:#D4AF37;
}


.ceo-content p{

    color:#555;
    line-height:1.8;
}



/* ACHIEVEMENTS */


.achievements{

    padding:100px 8%;
    text-align:center;
    background:#FAF8F2;
}


.achievement-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}


.achievement-card{

    padding:40px;
    background:white;
    border-radius:20px;
    border-top:5px solid #D4AF37;
}



/* TEAM */


.team-preview{

    padding:100px 8%;
    text-align:center;
}


.team-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}


.team-card{

    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}


.team-card img{

    width:100%;
    height:280px;
    object-fit:cover;
}



/* CTA */

.about-cta{

    padding:120px 8%;
    text-align:center;
    background:linear-gradient(135deg,#6A0DAD,#D946EF);
}


.about-cta h2{

    color:white;
}



/* MOBILE */

@media(max-width:900px){

.hero-container,
.about-story,
.ceo-container,
.mission-vision{

    grid-template-columns:1fr;
    flex-direction:column;
}


.values-grid,
.team-grid{

    grid-template-columns:1fr 1fr;
}


}


@media(max-width:600px){

.values-grid,
.team-grid,
.achievement-grid{

    grid-template-columns:1fr;
}


.hero-buttons{

    flex-direction:column;
}


}
