/*=========================
RESET
==========================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background: #000;
}
html{
    scroll-behavior:smooth;
}
/* :root {
    --what-we-do-title:#c9a35c;
    --what-we-do-features:#c9a35c;
    --what-we-do-preview-heading : #c9a35c;
} */
 :root {
    --primary-color: #c9a35c;
    --bg-1:#05070C;
    --bg-2:#0A0F18;
    --bg-3:#0E1625;
    --bg-4:#13233D;
    --primary-blue:#2E73D8;
    --secondary-blue:#4A9BFF;
    --light-blue:#6CCBFF;
    --gold:#C9A35C;
    --text:#F4F5F7;
    --text-light:#B7C2D0;
}
/*=========================
NAVBAR
==========================*/

header {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 999;
}

#heroSection {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 25px 60px;

    /* Remove background */
    background: none;
    backdrop-filter: none;
}

/*=========================
LOGO
==========================*/

.logo {
    position: absolute;
    left: 60px;
}

.logo img {
    width: 180px;
    /* Increased logo size */
    height: auto;
    transition: .4s;
}

.logo img:hover {
    transform: scale(1.08);
}

/*=========================
NAVIGATION
==========================*/

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 65px;
    list-style: none;
}

.nav-links li {
    display: flex;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    transition: .35s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: #ff5ce8;
    transition: .35s ease;
}

.nav-links a:hover {
    color: #ff79ef;
}

.nav-links a:hover::after {
    width: 100%;
}




/*=========================
HAMBURGER
==========================*/

.menu-btn {
    display: none;
    position: absolute;
    right: 30px;
    top: 28px;
    font-size: 38px;
    color: #fff;
    cursor: pointer;
    z-index: 1002;
    transition: .4s;
}


/*=========================
HERO
==========================*/

#heroSection {

    position: relative;

    width: 100%;

    height: 100vh;

    overflow: hidden;

}

#heroVideo {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

/* Dark overlay */

.overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .28);

}

/*=========================
CONTENT
==========================*/

#contentOverlay {

    position: absolute;

    top: 58%;

    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;

    opacity: 0;

    transition: 1.2s;

}

#contentOverlay.show {

    opacity: 1;

}

#contentOverlay h1 {

    font-size: 85px;

    font-family: 'Cinzel', serif;

    font-weight: 700;
    
    color: var(--text);

    letter-spacing: 3px;

    margin-bottom: 20px;

}

#contentOverlay p {

    font-size: 23px;
    font-family: 'Cinzel', serif;
    line-height: 1.8;
    color:#fff;
    font-weight: 300;

}

/* tag line bold coloring for content and klick */
.hero-tagline {
    font-weight: 2000; /* Extra Bold */
    font-size: 1.2rem; /* Optional: Increase size */
    line-height: 1.5;
}

.hero-tagline .highlight {
    color: var(--secondary-blue);
    font-weight: 900;
}
/*=========================
RESPONSIVE
==========================*/

@media(max-width:992px) {

    .logo {
        left: 30px;
    }

    .logo img {
        width: 150px;
    }

    .nav-links {
        gap: 35px;
    }

    .nav-links a {
        font-size: 18px;
    }


    #contentOverlay h1 {

        font-size: 60px;

    }

}

@media(max-width:768px) {

    header {
        top: 15px;
    }

    #contentOverlay {
        top: 60%;
    }

    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        font-size: 38px;
        line-height: 1;
        color: #fff;
        cursor: pointer;
        z-index: 1002;
        transition: .4s;
    }

    .menu-btn:hover {
        transform: translateY(-50%) rotate(90deg);
    }

    .logo {
        position: absolute;
        left: 25px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        height: 100%;
    }

    .logo img {
        width: 200px;
        height: auto;
        display: block;
    }

    .navbar {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 25px;
        min-height: 90px;
    }


    /* Full Screen Navigation */

    .nav-links {

        position: fixed;

        top: 0;
        left: -100%;

        width: 100%;
        height: 100vh;

        background: rgba(6, 15, 46, .95);

        backdrop-filter: blur(12px);

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 45px;

        transition: .5s ease;

        z-index: 1000;
    }

    /* Active */

    .nav-links.active {

        left: 0;

    }

    .nav-links li {

        list-style: none;

    }

    .nav-links a {

        font-size: 32px;

        color: #fff;

        letter-spacing: 2px;

        transition: .35s;

    }

    .nav-links a:hover {

        color: #ff72e8;

        transform: scale(1.08);

    }
}

@media(max-width:480px) {

    .navbar {
        min-height: 80px;
        padding: 18px 20px;
    }

    .logo {
        left: 20px;
    }

    .logo img {
        width: 180px;
        /* Larger logo on small mobiles */
        max-width: 60vw;
        height: auto;
    }

    header {
        top: 12px;
    }

    #contentOverlay {
        top: 62%;
    }

    .menu-btn {
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 34px;
    }


    header {
        top: 12px;
    }

    #contentOverlay {
        top: 62%;
    }
}

/*==================================
BIG IDEA SECTION
==================================*/

.big-idea {

    width: 100%;
    color: #fff;
    padding: 140px 8%;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(rgba(5, 5, 5, .82), rgba(5, 5, 5, .88)),
        url("/images/dp-3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

.big-idea::before {

    content: "";
    position: absolute;
    top: 80px;
    left: 8%;
    width: 90px;
    height: 3px;
    background:var(--secondary-blue);

}

.big-idea-container {

    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 90px;
    align-items: center;

}

/* LEFT */

.section-tag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 600;
}

.idea-left h2 {

    font-family: 'Cinzel', serif;
    font-size: 65px;
    line-height: 1.18;
    font-weight: 700;

}
/* Multiple words secondary blue color targeting*/
.idea-right .content-highlight,
.idea-left .content-highlight,
.section-title,
.purpose-content h2 span,
.closing strong,
.what-we-do-title span {
    color: var(--secondary-blue);
}

/* RIGHT */

.idea-right {

    border-left: 2px solid rgba(255, 255, 255, .12);
    padding-left: 45px;

}

.idea-right p {

    font-size: 22px;
    line-height: 2;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 28px;
    font-weight: 300;

}

.highlight-text {

    color: #fff !important;
    font-size: 28px !important;
    line-height: 1.7 !important;
    font-weight: 500;

}

.highlight-text strong {

    color: #E7C47A;

}

/*=========================
TABLET
=========================*/

@media(max-width:992px) {

    .big-idea {

        padding: 100px 8%;

    }

    .big-idea-container {

        grid-template-columns: 1fr;
        gap: 60px;

    }

    .idea-left h2 {

        font-size: 52px;

    }

    .idea-right {

        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, .15);
        padding-left: 0;
        padding-top: 35px;

    }

    .idea-right p {

        font-size: 20px;

    }

    .highlight-text {

        font-size: 24px !important;

    }

}

/*=========================
MOBILE
=========================*/

@media(max-width:768px) {

    .big-idea {

        padding: 80px 7%;

    }

    .big-idea::before {

        width: 70px;
        top: 55px;

    }

    .idea-left h2 {

        font-size: 40px;
        line-height: 1.25;

    }

    .idea-right p {

        font-size: 18px;
        line-height: 1.9;

    }

    .highlight-text {

        font-size: 21px !important;

    }

}

/*=========================
SMALL MOBILE
=========================*/

@media(max-width:480px) {

    .big-idea {

        padding: 70px 6%;

    }

    .idea-left h2 {

        font-size: 32px;

    }

    .section-tag {

        font-size: 12px;
        letter-spacing: 3px;

    }

    .idea-right p {

        font-size: 16px;

    }

    .highlight-text {

        font-size: 18px !important;

    }

}

/*=========================
SECTION 3
==========================*/
.purpose-section {
  padding: 140px 8%;
    position: relative;
    overflow: hidden;
}



.purpose-section::before {

    content: "";
    position: absolute;
    width: 700px;

    height: 700px;
    border-radius: 50%;
    /* background: radial-gradient(#ff4fd8 0%, transparent 70%); */
    background-image: url("/images/galaxy-space-blast.jpg");
    opacity: .12;
    top: -300px;
    right: -250px;

}

.purpose-container {

    max-width: 1450px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;

}

/* IMAGE */

.purpose-image {

    position: relative;

}

.purpose-image img {

    width: 100%;
    border-radius: 28px;
    display: block;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .45);

}

/* CONTENT */

.section-title {

    /* color: #ff67df; */
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;

}

.purpose-content h2 {

    font-family: 'Cinzel', serif;
    font-size: 60px;
    color: #fff;
    line-height: 1.2;
    margin: 20px 0 35px;

}

.intro {

    color: #d8d8d8;
    font-size: 22px;
    line-height: 1.9;
    margin-bottom: 45px;

}

.features {

    display: grid;
    gap: 28px;

}

.feature {

    display: flex;
    gap: 22px;

    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(15px);

    padding: 28px;

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .4s;

}
/* What Makes Us Different cards hover color */
.feature:hover {

    transform: translateY(-8px);

    border-color: var(--bg-4);

}
/* What Makes Us Different icons styling */
.icon {

    min-width: 62px;
    height: 62px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    background:var(--secondary-blue);

    color: #fff;

    font-weight: 700;

}

.feature h3 {

    color: #fff;
    margin-bottom: 8px;

}

.feature p {

    color: #cfcfcf;
    line-height: 1.7;

}

.closing {

    margin-top: 45px;

    color: #fff;

    font-size: 24px;

    line-height: 1.8;

}

/*====================
Responsive
====================*/

@media(max-width:992px) {

    .purpose-container {

        grid-template-columns: 1fr;

    }

    .purpose-content h2 {

        font-size: 48px;

    }

}

@media(max-width:768px) {

    .purpose-section {

        padding: 90px 7%;

    }

    .purpose-content h2 {

        font-size: 38px;

    }

    .intro {

        font-size: 18px;

    }

    .closing {

        font-size: 20px;

    }

}

@media(max-width:480px) {

    .purpose-content h2 {

        font-size: 32px;

    }

    .feature {

        padding: 20px;

    }

    .icon {

        width: 52px;
        height: 52px;

    }

}

/*======================================================
SECTION 4 SERVICES
======================================================*/

.services-section {

    position: relative;
    padding: 140px 8%;
    background: #050505;
    overflow: hidden;

}

/*======================================================
BACKGROUND
======================================================*/

.gradient-orb {

    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
    z-index: 0;

}

.orb1 {

    width: 420px;
    height: 420px;

    background: #ff4fd8;

    top: -120px;
    left: -150px;

}

.orb2 {

    width: 500px;
    height: 500px;

    background: #5f6fff;

    bottom: -180px;
    right: -150px;

}

.services-container {

    position: relative;
    z-index: 2;

    max-width: 1500px;
    margin: auto;

}

/*======================================================
HEADING
======================================================*/

.services-heading {

    max-width: 760px;
    margin: 0 auto 90px;
    text-align: center;

}

.section-label {

    display: inline-block;

    color: #ff67df;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 20px;

}

.services-heading h2 {

    color: #fff;

    font-family: 'Cinzel', serif;

    font-size: 72px;

    line-height: 1.15;

    margin-bottom: 30px;

}

.services-heading h2 span {

    color: #ff67df;

}

.services-heading p {

    color: #bfbfbf;

    font-size: 21px;

    line-height: 1.9;

}

/*======================================================
GRID
======================================================*/

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 35px;

}

/*======================================================
CARDS
======================================================*/

.service-card {

    position: relative;

    padding: 45px;

    background:
        rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 28px;

    backdrop-filter: blur(18px);

    overflow: hidden;

    transition: .45s;

}

.card-number {

    color: #ffffff22;

    font-size: 60px;

    font-weight: 700;

    margin-bottom: 20px;

}

.card-icon {

    width: 80px;
    height: 80px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    background: linear-gradient(135deg,
            #ff5ce8,
            #7958ff);

}

.card-icon i {

    color: #fff;

    font-size: 32px;

}

.service-card h3 {

    color: #fff;

    font-size: 28px;

    line-height: 1.4;

    margin-bottom: 20px;

    font-weight: 600;

}

.service-card p {

    color: #c8c8c8;

    line-height: 1.9;

    font-size: 17px;

    margin-bottom: 35px;

}

.service-card a {

    color: #ff67df;

    text-decoration: none;

    font-weight: 600;

    font-size: 17px;

}

/*======================================================
FEATURED CARD
======================================================*/

.featured {

    border: 1px solid rgba(255, 92, 232, .35);

}

.featured-tag {

    position: absolute;

    top: 25px;

    right: 25px;

    background: #ff67df;

    color: #fff;

    padding: 8px 18px;

    border-radius: 40px;

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 700;

}

/*======================================================
CTA
======================================================*/

.services-cta {

    margin-top: 120px;

    text-align: center;

    padding: 90px 60px;

    border-radius: 35px;

    background:
        linear-gradient(135deg,
            rgba(255, 92, 232, .12),
            rgba(92, 110, 255, .12));

    border: 1px solid rgba(255, 255, 255, .08);

}

.cta-content span {

    color: #ff67df;

    letter-spacing: 4px;

    font-size: 14px;

    text-transform: uppercase;

}

.cta-content h2 {

    margin: 25px 0;

    color: #fff;

    font-size: 58px;

    font-family: 'Cinzel', serif;

    line-height: 1.2;

}

.cta-content p {

    color: #d3d3d3;

    max-width: 780px;

    margin: auto;

    line-height: 1.9;

    font-size: 20px;

}

.cta-btn {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 45px;

    padding: 18px 42px;

    border-radius: 60px;

    background: #ff5ce8;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    font-size: 18px;

}

/*======================================================
TABLET
======================================================*/

@media(max-width:1100px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .services-heading h2 {

        font-size: 58px;

    }

}

/*======================================================
MOBILE
======================================================*/

@media(max-width:768px) {

    .services-section {

        padding: 90px 7%;

    }

    .services-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .services-heading {

        margin-bottom: 60px;

    }

    .services-heading h2 {

        font-size: 40px;

    }

    .services-heading p {

        font-size: 18px;

    }

    .service-card {

        padding: 35px;

    }

    .card-icon {

        width: 70px;
        height: 70px;

    }

    .card-icon i {

        font-size: 28px;

    }

    .service-card h3 {

        font-size: 24px;

    }

    .cta-content h2 {

        font-size: 36px;

    }

    .cta-content p {

        font-size: 17px;

    }

    .services-cta {

        padding: 60px 30px;

    }

}

/*======================================================
SMALL MOBILE
======================================================*/

@media(max-width:480px) {

    .services-heading h2 {

        font-size: 32px;

    }

    .service-card {

        padding: 28px;

    }

    .card-number {

        font-size: 45px;

    }

    .card-icon {

        width: 60px;
        height: 60px;

    }

    .card-icon i {

        font-size: 24px;

    }

    .service-card h3 {

        font-size: 21px;

    }

    .cta-content h2 {

        font-size: 28px;

    }

    .cta-btn {

        padding: 15px 30px;

        font-size: 16px;

    }

}

/* section 4 part 2 code starts */
/*=====================================================
PREMIUM HOVER EFFECTS
======================================================*/

/* Smooth animation */

.service-card,
.card-icon,
.cta-btn,
.service-card a,
.gradient-orb {

    transition: all .45s ease;

}

/*----------------------------------------------------*/
/* CARD GLOW BORDER */
/*----------------------------------------------------*/

.service-card::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 28px;

    padding: 1px;

    background:
        linear-gradient(135deg,
            rgba(255, 92, 232, .45),
            rgba(99, 102, 241, .35),
            rgba(255, 92, 232, .15));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    opacity: 0;

    transition: .45s;

}

/*----------------------------------------------------*/
/* CARD SHINE */
/*----------------------------------------------------*/

.service-card::after {

    content: "";

    position: absolute;

    top: -120%;

    left: -60%;

    width: 80%;

    height: 260%;

    background:
        linear-gradient(transparent,
            rgba(255, 255, 255, .12),
            transparent);

    transform: rotate(28deg);

    transition: .8s;

}

/*----------------------------------------------------*/
/* CARD HOVER */
/*----------------------------------------------------*/

.service-card:hover {

    transform:
        translateY(-14px);

    background:

        rgba(255, 255, 255, .08);

    border-color:

        rgba(255, 92, 232, .35);

    box-shadow:

        0 20px 45px rgba(0, 0, 0, .35),

        0 0 30px rgba(255, 92, 232, .15);

}

.service-card:hover::before {

    opacity: 1;

}

.service-card:hover::after {

    left: 150%;

}

.service-card:hover .card-icon {

    transform:

        rotate(-8deg) scale(1.08);

    box-shadow:

        0 0 30px rgba(255, 92, 232, .35);

}

.service-card:hover h3 {

    color: #ff7ce9;

}

.service-card:hover a {

    letter-spacing: 1px;

}

/*=====================================================
ICON GRADIENT
======================================================*/

.card-icon {

    background:

        linear-gradient(135deg,

            #ff5ce8,

            #8c52ff,

            #4d79ff);

    background-size: 250%;

    animation:

        gradientMove 6s linear infinite;

}

@keyframes gradientMove {

    0% {

        background-position: 0%;

    }

    100% {

        background-position: 250%;

    }

}

/*=====================================================
CTA BUTTON
======================================================*/

.cta-btn {

    position: relative;

    overflow: hidden;

    box-shadow:

        0 12px 30px rgba(255, 92, 232, .25);

}

.cta-btn::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background:

        linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, .35),

            transparent);

    transition: .7s;

}

.cta-btn:hover {

    transform:

        translateY(-5px);

    box-shadow:

        0 15px 45px rgba(255, 92, 232, .45);

}

.cta-btn:hover::before {

    left: 120%;

}

/*=====================================================
FEATURED CARD
======================================================*/

.featured {

    background:

        linear-gradient(180deg,

            rgba(255, 92, 232, .08),

            rgba(255, 255, 255, .05));

    box-shadow:

        0 0 35px rgba(255, 92, 232, .12);

}

.featured-tag {

    animation:

        pulseTag 2s infinite;

}

@keyframes pulseTag {

    0% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.08);

    }

    100% {

        transform: scale(1);

    }

}

/*=====================================================
FLOATING BACKGROUND
======================================================*/

.orb1 {

    animation:

        floatOne 9s ease-in-out infinite;

}

.orb2 {

    animation:

        floatTwo 11s ease-in-out infinite;

}

@keyframes floatOne {

    0% {

        transform:

            translate(0, 0);

    }

    50% {

        transform:

            translate(40px, -35px);

    }

    100% {

        transform:

            translate(0, 0);

    }

}

@keyframes floatTwo {

    0% {

        transform:

            translate(0, 0);

    }

    50% {

        transform:

            translate(-45px, 35px);

    }

    100% {

        transform:

            translate(0, 0);

    }

}

/*=====================================================
LINK ANIMATION
======================================================*/

.service-card a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

}

.service-card a span {

    transition: .35s;

}

.service-card:hover a span {

    transform:

        translateX(8px);

}

/*=====================================================
SECTION FADE
======================================================*/

.services-section {

    animation:

        fadeSection 1.1s ease;

}

@keyframes fadeSection {

    from {

        opacity: 0;

        transform:

            translateY(60px);

    }

    to {

        opacity: 1;

        transform:

            translateY(0);

    }

}

/*=====================================================
RESPONSIVE
======================================================*/

@media(max-width:768px) {

    .service-card:hover {

        transform: none;

    }

    .service-card::after {

        display: none;

    }

    .cta-btn:hover {

        transform: none;

    }

}

/* section 4 part 2 code ends */


/* What we do styling starts */
/*==================================================
WHAT WE DO - SECTION & LEFT PANEL CSS
==================================================*/

.what-we-do-section {
    width: 100%;
    background: var(--bg);
    padding: 60px 4%;
    position: relative;
    overflow: hidden;
}

.what-we-do-container {
    max-width: 1440px;
    margin: auto;
    display: grid;
    grid-template-columns: 40% 57%;
    gap: 40px;
    align-items: start;
}

/*======================================
LEFT PANEL
======================================*/

.what-we-do-left {
    position: sticky;
    top: 80px;
}

.what-we-do-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.what-we-do-tag span {
    width: 35px;
    height: 1px;
    background: var(--gold);
    transition: .45s;
}

.what-we-do-tag p {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 600;
}

.what-we-do-title {
    color: white;
    font-size: 48px;
    line-height: 1.05;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: .45s;
}


.what-we-do-description {
    margin-top: 22px;
    color: white;
    font-size: 15px;
    line-height: 24px;
    max-width: 440px;
}

/* Hover Effects */
.what-we-do-left:hover .what-we-do-tag span {
    width: 60px;
}

.what-we-do-left:hover .what-we-do-title {
    letter-spacing: .8px;
}

.klick-word {
    display: inline-block;
    transform: skewX(-12deg);
    transform-origin: left center;
}

/*==================================================
RESPONSIVENESS (MEDIA QUERIES)
==================================================*/

@media (max-width: 1200px) {
    .what-we-do-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .what-we-do-left {
        position: relative;
        top: 0;
    }

    .what-we-do-title {
        font-size: 40px;
    }

    .what-we-do-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 40px 5%;
    }

    .what-we-do-tag p {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .what-we-do-title {
        font-size: 32px;
    }

    .what-we-do-description {
        font-size: 14px;
        line-height: 22px;
        margin-top: 16px;
    }
}

/* whatwe do styling ends */

/* what we do left panel styling starts */
/*==================================================
WHAT WE DO - SERVICES
==================================================*/

.what-we-do-service {

    display:grid;
    grid-template-columns:
        55px
        70px
        minmax(220px,1fr)
        28px;
    column-gap:22px;

}

.what-we-do-services::-webkit-scrollbar {
    display: none;
}

.what-we-do-service {
    display: grid;
    grid-template-columns: 70px 70px 1.8fr 2fr 40px;
    align-items: center;
    gap: 20px;
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: .45s cubic-bezier(.19, 1, .22, 1);
}

.what-we-do-service:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.what-we-do-service-number {
    color: #6c6c6c;
    font-size: 17px;
    letter-spacing: 2px;
    transition: .45s cubic-bezier(.19, 1, .22, 1);
}

.what-we-do-service-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background:#ffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .45s cubic-bezier(.19, 1, .22, 1);
}

.what-we-do-service-icon img {
    width: 100%;
    transition: .45s cubic-bezier(.19, 1, .22, 1);
}

.what-we-do-service-title {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
    transition: .45s cubic-bezier(.19, 1, .22, 1);
}

.what-we-do-service-arrow{

    justify-self:end;

    font-size:24px;

    color:var(--secondary-blue);

    transition:.35s ease;

}

.what-we-do-service:hover .what-we-do-service-arrow{

    transform:translateX(4px);

    color:var(--secondary-blue);

}
/*==========================
BOTTOM BLUE LINE
==========================*/

.what-we-do-service::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background:var(--secondary-blue);
    transition: .6s;
}

/*==========================
LIGHT SWEEP
==========================*/

.what-we-do-service::after {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(201, 163, 92, .08),
            transparent);
    transition: 1s cubic-bezier(.19, 1, .22, 1);
}

/*==========================
HOVER
==========================*/

.what-we-do-service:hover {
    background:rgba(201,163,92,.08);
    /*padding-left: 15px; */ /* services shaking when user hover on it  */
}

.what-we-do-service:hover::before {
    width: 100%;
}

.what-we-do-service:hover .what-we-do-service-number{
    color:var(--secondary-blue);
}

.what-we-do-service:hover .what-we-do-service-title{
    color:var(--secondary-blue);
}

.what-we-do-service:hover::after {
    left: 120%;
}

.what-we-do-service:hover .what-we-do-service-arrow {
    color: var(--secondary-blue);
    transform: translateX(8px);
}

.what-we-do-service:hover .what-we-do-service-icon {
    background: var(--secondary-blue);
}

.what-we-do-service:hover .what-we-do-service-icon img {
    filter: brightness(0);
}

/*==========================
ACTIVE
==========================*/

.what-we-do-service.active {
    padding-left: 25px;
    background: linear-gradient(90deg,
            rgba(201, 163, 92, .08),
            transparent 60%);
}

.what-we-do-service.active::before {
    width: 100%;
}

.what-we-do-service.active .what-we-do-service-number {
    color: var(--secondary-blue);
}

.what-we-do-service.active .what-we-do-service-title {
    color: var(--secondary-blue);
}

.what-we-do-service.active .what-we-do-service-icon {
    background: var(--secondary-blue);
}

.what-we-do-service.active .what-we-do-service-icon img {
    filter: brightness(0);
}

.what-we-do-service.active .what-we-do-service-arrow {
    color: var(--secondary-blue);
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width:1400px) {

    .what-we-do-services {
        margin-top: 70px;
    }

    .what-we-do-service {
        grid-template-columns: 60px 60px 1fr 35px;
        gap: 18px;
        padding: 28px 0;
    }

    .what-we-do-service-number {
        font-size: 16px;
    }

    .what-we-do-service-icon {
        width: 50px;
        height: 50px;
    }

    .what-we-do-service-icon img {
        width: 22px;
    }

    .what-we-do-service-title {
        font-size: 22px;
    }

    .what-we-do-service-arrow {
        font-size: 24px;
    }

}

@media (max-width:1200px) {

    .what-we-do-services {
        margin-top: 60px;
    }

    .what-we-do-service {
        grid-template-columns: 55px 55px 1fr 30px;
        gap: 18px;
        padding: 26px 0;
    }

    .what-we-do-service-number {
        font-size: 15px;
    }

    .what-we-do-service-icon {
        width: 48px;
        height: 48px;
    }

    .what-we-do-service-icon img {
        width: 20px;
    }

    .what-we-do-service-title {
        font-size: 20px;
    }

    .what-we-do-service-arrow {
        font-size: 22px;
    }

}
/* ============= What we do services cards tab and mobile responsiveness starts ============ */
@media (max-width:992px){

    .what-we-do-service{

        display:grid;
        grid-template-columns:55px 65px 1fr 35px;

        align-items:center;

        column-gap:18px;

        padding:26px 18px;

    }

    .what-we-do-service-title{

        font-size:18px;

        white-space:nowrap;

        overflow:hidden;

        text-overflow:ellipsis;

        line-height:1.2;

    }

    .what-we-do-service-icon{

        width:48px;
        height:48px;

        display:flex;
        justify-content:center;
        align-items:center;

    }

    .what-we-do-service-icon img{

        width:22px;

    }

    .what-we-do-service-arrow{

        justify-self:end;

        font-size:22px;

    }

}

/*==================================================
MOBILE
==================================================*/

@media (max-width:768px){

    .what-we-do-service{

        display:grid;

        grid-template-columns:40px 48px 1fr 22px;

        align-items:center;

        column-gap:12px;

        padding:18px 14px;

        min-height:78px;

    }

    .what-we-do-service-number{

        font-size:13px;

    }

    .what-we-do-service-icon{

        width:42px;
        height:42px;

        display:flex;

        justify-content:center;

        align-items:center;

        margin:0;

    }

    .what-we-do-service-icon img{

        width:20px;

    }

    .what-we-do-service-title{

        font-size:15px;

        line-height:1.2;

        white-space:nowrap;

        overflow:hidden;

        text-overflow:ellipsis;

        margin:0;

    }

    .what-we-do-service-description{

        display:none;

    }

    .what-we-do-service-arrow{

        justify-self:end;

        font-size:18px;

        margin:0;

        transform:none !important;

    }

    .what-we-do-service:hover{

        padding:18px 14px;

    }

    .what-we-do-service.active{

        padding:18px 14px;

    }

}

/* @media (max-width:480px) {

    .what-we-do-services {
        margin-top: 25px;
    }

    .what-we-do-service {
        display: grid;
        grid-template-columns: 38px 45px 1fr 25px;
        align-items: center;
        gap: 12px;
        padding: 18px 0;
    }

    .what-we-do-service-number {
        font-size: 13px;
    }

    .what-we-do-service-icon {
        width: 42px;
        height: 42px;
    }

    .what-we-do-service-icon img {
        width: 18px;
    }

    .what-we-do-service-title {
        font-size: 16px;
        line-height: 1.4;
    }


    .what-we-do-service-arrow {
        font-size: 18px;
    }

    .what-we-do-service:hover,
    .what-we-do-service.active {
        padding-left: 8px;
    }

} */
/* ============= What we do services cards tab and mobile responsiveness starts ============ */

/* what we do left panel styling ends */


/* desktop divider starts */
/*=========================================
DESKTOP CENTER DIVIDER
=========================================*/

@media (min-width: 1200px){

    .what-we-do-container{
        position: relative;
    }

    .what-we-do-container::after{
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 40%;
        transform: translateX(20px); /* Half of your column gap (40px) */
        width: 1px;
        background: linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,.08) 8%,
            rgba(201,163,92,.25) 50%,
            rgba(255,255,255,.08) 92%,
            transparent
        );
    }

}
/* desktop divider ends */

/* What we do right panel styling starts */
/*=========================================
RIGHT PANEL
=========================================*/

.what-we-do-preview{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:45px;
    transition:.5s ease;
}

.what-we-do-preview.animate{

    opacity:0;

    transform:translateY(60px);

}
/*=========================================
TOP HEADER
=========================================*/

.what-we-do-preview-header{
    display:grid;
    grid-template-columns:140px 1fr;
    gap:45px;
    align-items:flex-start;
}

.what-we-do-preview-count{
    display:flex;
    align-items:flex-end;
    gap:10px;
    line-height:1;
}

.what-we-do-preview-count .current{
    font-size:82px;
    font-weight:600;
    color:var(--secondary-blue);
    font-family:"Cormorant Garamond",serif;
}

.what-we-do-preview-count .divider{
    color:var(--secondary-blue);
    font-size:30px;
    margin-bottom:12px;
}

.what-we-do-preview-count .total{
    color:var(--secondary-blue);
    font-size:24px;
    margin-bottom:12px;
}

.what-we-do-preview-heading{
    display:flex;
    flex-direction:column;
}

.preview-label{
    color:#9b9b9b;
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.what-we-do-preview-heading h2{
    color:var(--secondary-blue);
    font-size:54px;
    font-weight:500;
    line-height:1.1;
    margin-bottom:22px;
    font-family:"Cormorant Garamond",serif;
}

.what-we-do-preview-heading p{
    color:#9c9c9c;
    font-size:19px;
    line-height:1.9;
    max-width:760px;
}

/*=========================================
FEATURES
=========================================*/

.what-we-do-features{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:40px;
    width:100%;
}

.what-we-do-feature{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.what-we-do-feature img{
    width:72px;
    height:72px;
    object-fit:contain;
    display:block;
    padding:18px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
    margin-bottom:22px;
    transition:all .35s ease;
}
/* Brand and Content Strategy 3 ICONS COLOR */
.what-we-do-feature:hover img{
    background:var(--primary-color);
    transform:translateY(-6px) scale(1.08);
    box-shadow:0 6px 16px rgba(0,0,0,.10);
}

.what-we-do-feature h4{
    color:#fff;
    font-size:24px;
    font-weight:500;
    margin:0 0 14px;
}

.what-we-do-feature p{
    color:#9b9b9b;
    font-size:17px;
    line-height:1.8;
    margin:0;
}

/*=========================================
MAIN IMAGE
=========================================*/

.what-we-do-main-image{
    width:100%;
    height:560px;
    overflow:hidden;
    border-radius:22px;
}

.what-we-do-main-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.what-we-do-main-image:hover img{
    transform:scale(1.05);
}
/* zoomed out the main image code starts */
/*=========================================
MAIN PREVIEW IMAGE
=========================================*/

.what-we-do-preview-image{
    width:100%;
    height:500px;
    overflow:hidden;
    border-radius:20px;
    background:#111;
}

.what-we-do-preview-image img{
    width:92%;
    height:92%;
    object-fit:contain;
    object-position:center;
    display:block;
    margin:auto;
}


/* Responsiveness of its starts */
@media (max-width:1200px){

    .what-we-do-preview-image{
        height:450px;
    }

    .what-we-do-preview-image img{
        width:94%;
        height:94%;
    }

}

@media (max-width:992px){

    .what-we-do-container{
        display:flex;
        flex-direction:column;
    }

    .what-we-do-preview-image{
        height:400px;
    }

    .what-we-do-preview-image img{
        width:96%;
        height:96%;
    }

    /* testing tab version icons strts*/
        .what-we-do-features{
        grid-template-columns:repeat(3,1fr);
        gap:20px;
    }

    .what-we-do-feature img{
        width:42px;
        height:42px;
        display:block;
    }
    /* testing tab version icons ends */

}

@media (max-width:768px){

    .what-we-do-preview-image{
        height:320px;
        border-radius:16px;
    }

    .what-we-do-preview-image img{
        width:100%;
        height:100%;
    }

    /* brand positioning, audience research, content road map mobile version icons starts */
   .what-we-do-features{
        display:flex;
        flex-direction:column;
        gap:24px;
    }

    .what-we-do-feature{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
    }

    .what-we-do-feature img{
        width:60px;
        height:60px;
        min-width:60px;
        min-height:60px;

        padding:12px;

        display:block;
        object-fit:contain;
        object-position:center;

        background:#fff;
        border-radius:50%;

        margin-bottom:14px;
    }
     /* brand positioning, audience research, content road map mobile version icons ends */
}

@media (max-width:480px){

    .what-we-do-preview-image{
        height:250px;
    }

}
/* Responsiveness of its ends */
/* zoomed out the main iage code ends */
/*=========================================
GALLERY
=========================================*/

.what-we-do-gallery{
    display:grid;
    grid-template-columns:60px 1fr 60px;
    align-items:center;
    gap:18px;
}

.gallery-nav{
    width:48px;
    height:48px;
    border:none;
    background:transparent;
    color:#fff;
    font-size:34px;
    cursor:pointer;
    transition:.3s;
}

.gallery-nav:hover{
    color:#C9A35C;
}

.what-we-do-gallery-images{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:14px;
}

.what-we-do-gallery-images img{
    width:100%;
    height:95px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    border:2px solid transparent;
    transition:.4s;
}

.what-we-do-gallery-images img:hover{
    transform:scale(1.05);
}

.what-we-do-gallery-images img.active{
    border-color:#C9A35C;
}

/*=========================================
LAPTOP
=========================================*/

@media(max-width:1400px){

.what-we-do-preview-header{
    grid-template-columns:110px 1fr;
    gap:30px;
}

.what-we-do-preview-count .current{
    font-size:70px;
}

.what-we-do-preview-heading h2{
    font-size:46px;
}

.what-we-do-main-image{
    height:500px;
}

}

/*=========================================
TABLET
=========================================*/

@media(max-width:992px){

.what-we-do-preview{
    margin-top:70px;
}

.what-we-do-preview-header{
    grid-template-columns:1fr;
    gap:30px;
}

.what-we-do-preview-count{
    justify-content:flex-start;
}

.what-we-do-preview-count .current{
    font-size:64px;
}

.what-we-do-preview-heading h2{
    font-size:42px;
}

.what-we-do-preview-heading p{
    font-size:17px;
}

.what-we-do-features{
    display:flex;
    flex-direction:row;
    gap:20px;
}

/* service 1 brand & content stratergy 3 icons in tab and mobile responsiveness not displaying icons code start */
    .what-we-do-feature-icon{
        width:48px;
        height:48px;
        display:flex;
        justify-content:center;
        align-items:center;
        flex-shrink:0;
    }

    .what-we-do-feature-icon img{
        width:24px;
        height:24px;
        display:block;
        object-fit:contain;
    }
/* service 1 brand & content stratergy 3 icons in tab and mobile responsiveness not displaying icons code start */

.what-we-do-main-image{
    height:430px;
}

.what-we-do-gallery{
    grid-template-columns:45px 1fr 45px;
}

.what-we-do-gallery-images img{
    height:80px;
}

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:768px){

.what-we-do-preview{
    gap:35px;
}

.what-we-do-preview-count .current{
    font-size:54px;
}

.what-we-do-preview-count .divider,
.what-we-do-preview-count .total{
    font-size:18px;
    margin-bottom:8px;
}

.what-we-do-preview-heading h2{
    font-size:34px;
}

.what-we-do-preview-heading p{
    font-size:15px;
    line-height:1.8;
}

.what-we-do-feature img{
    width:34px;
}

.what-we-do-feature h4{
    font-size:20px;
}

.what-we-do-feature p{
    font-size:15px;
}

.what-we-do-main-image{
    height:320px;
}

.what-we-do-gallery{
    grid-template-columns:1fr;
    gap:20px;
}

.gallery-nav{
    display:none;
}

.what-we-do-gallery-images{
    grid-template-columns:repeat(5,90px);
    overflow-x:auto;
    padding-bottom:8px;
}

.what-we-do-gallery-images::-webkit-scrollbar{
    display:none;
}

.what-we-do-gallery-images img{
    width:90px;
    height:70px;
}

}
/* what we do right panel styling ends */


/* Our ecosystem styling starts */
/*==================================================
SECTION 5 : OUR ECOSYSTEM
==================================================*/

.ecosystem-section{
    width:100%;
    padding:120px 5%;
    background:var(--bg);
    overflow:hidden;
    position:relative;
}

.ecosystem-container{
    max-width:1450px;
    margin:auto;

    display:grid;
    grid-template-columns:40% 60%;
    gap:80px;
    align-items:center;
}

/*====================================
LEFT CONTENT
====================================*/

.ecosystem-tag p{
    color:var(--secondary-blue);
    letter-spacing:4px;
    font-size:13px;
    font-weight:600;
    margin-bottom:24px;
}

.ecosystem-title{
    color:#fff;
    font-family:"Cormorant Garamond",serif;
    font-size:64px;
    line-height:1.08;
    font-weight:500;
}

.ecosystem-title span,
.ecosystem-title em{
    color:var(--secondary-blue);
}

.ecosystem-description{
    color:#9f9f9f;
    font-size:18px;
    line-height:2;
    max-width:720px;
}

/*====================================
FLOW
====================================*/

.ecosystem-flow{

    position:relative;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin:70px 0 60px;

}

/* Connecting Line */

.flow-line{

    position:absolute;

    top:45px;

    left:8%;

    right:8%;

    height:2px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--secondary-blue),
        transparent
    );

    z-index:0;

}

/* Individual Step */

.flow-step{

    position:relative;

    z-index:2;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    width:170px;

}

/* Circle */

.flow-circle{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

    transition:.45s;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.flow-circle img{

    width:42px;

    transition:.45s;

}

.flow-step:hover .flow-circle{

    background:var(--secondary-blue);

    transform:translateY(-10px) scale(1.08);

}

.flow-step:hover img{

    filter:brightness(0);

}

.flow-step h4{

    color:#fff;

    font-size:22px;

    font-weight:500;

    margin-top:6px;

}

/*====================================
BOTTOM TEXT
====================================*/

.ecosystem-bottom-text{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

}

.text-block{

    padding:18px 30px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(12px);

    transition:.45s;

}

.text-block span{

    color:#d0d0d0;

    font-size:17px;

    letter-spacing:.3px;

}

.text-block:hover{

    border-color:var(--secondary-blue);

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.text-block.highlight{

    background:linear-gradient(
        135deg,
        rgba(201,163,92,.15),
        rgba(255,255,255,.03)
    );

    border-color:var(--secondary-blue);

}

.text-block.highlight span{

    color:var(--secondary-blue);

    font-weight:600;

}

/*====================================
LAPTOP
====================================*/

@media(max-width:1400px){

.ecosystem-title{

    font-size:56px;

}

.ecosystem-description{

    font-size:17px;

}

.flow-step{

    width:150px;

}

.flow-circle{

    width:82px;
    height:82px;

}

.flow-circle img{

    width:38px;

}

.flow-step h4{

    font-size:20px;

}

}

/*====================================
TABLET
====================================*/

@media(max-width:992px){

.ecosystem-container{

    grid-template-columns:1fr;

    gap:60px;

}

.ecosystem-title{

    font-size:48px;

}

.ecosystem-description{

    font-size:16px;

}

.ecosystem-flow{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

    justify-items:center;

}

.flow-line{

    display:none;

}

.flow-step{

    width:180px;

}

.ecosystem-bottom-text{

    flex-direction:column;

    align-items:center;

    gap:18px;

}

.text-block{

    width:100%;

    max-width:450px;

    text-align:center;

}

}

/*====================================
MOBILE
====================================*/

@media(max-width:768px){

.ecosystem-section{

    padding:80px 6%;

}

.ecosystem-title{

    font-size:38px;

    line-height:1.15;

}

.ecosystem-description{

    font-size:15px;

    line-height:1.8;

}

.ecosystem-flow{

    display:flex;

    flex-direction:column;

    gap:45px;

    margin:50px 0;

}

.flow-step{

    width:100%;

}

.flow-circle{

    width:75px;

    height:75px;

}

.flow-circle img{

    width:34px;

}

.flow-step h4{

    font-size:20px;

}

.text-block{

    width:100%;

    padding:16px 20px;

}

.text-block span{

    font-size:15px;

}

}

/*====================================
SMALL MOBILE
====================================*/

@media(max-width:480px){

.ecosystem-title{

    font-size:32px;

}

.flow-circle{

    width:68px;

    height:68px;

}

.flow-circle img{

    width:30px;

}

.flow-step h4{

    font-size:18px;

}

.text-block{

    border-radius:20px;

}

}
/* Our ecosystem styling ends */