﻿@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Fraunces:ital,wght@0,500;0,600;0,700;1,600&display=swap');

:root {
    --accent: #3b82f6; /* or any color you want */
}

*,
*:after,
*:before {
    box-sizing: border-box;
}



body {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #f8f3eb;
    color: #484847;
    overscroll-behavior: none;
}

img {
    display: block;
    max-width: 100%;
}

.responsive-wrapper {
    width: 95%;
    max-width: 1900px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 100px;
}

.header {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.header-middle {
    display: none;

    @media (min-width: 1200px) {
        display: block;
    }
}

.header-right {
    display: flex;
    align-items: center;
}

.header-nav {
    display: none;

    @media (min-width: 1200px) {
        display: block;
    }
}

.header-link {
    color: #000;
    text-decoration: none;
    margin-left: .75rem;
    margin-right: .75rem;
    display: none;
    font-weight: 500;
    display: inline-block;
    &--button

{
    background-color: #000;
    color: #fff;
    padding: .5rem 1.25rem;
}

@media (min-width: 1200px) {
}

}

.header-menu-button {
    margin-left: .75rem;
    border: 0;
    padding: 0;
    background-color: transparent;
    font: inherit;
    position: relative;
    padding-right: 30px;
    font-weight: 500;
    &:after, &:before

{
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: currentcolor;
    right: 0;
    top: 8px;
}

&:after {
    top: 16px;
    width: 12px;
    right: 8px;
}

}

.page-title {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    justify-content: center;
    h1

{
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    position: relative;
    &:after

{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    bottom: -3px;
    height: 2px;
    background-color: currentcolor;
}

}
}

.magazine-layout {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-row-gap: 2rem;
}

.magazine-column {
    padding: 0 1.5rem;
    grid-column: span 5;

    @media (min-width: 1200px) {
        grid-column: span 1;
        border-right: 1px solid #CCC;
        &:last-child {
            border-right: none;
        }
    }

    &:nth-child(2)

{
    @media (min-width: 1200px) {
        grid-column: span 2;
    }
}

}

.article {
    & + .article

{
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #ccc;
}

}

.article-img > img{
    width:100%;
}
.article-link {
    font-size: 26px;
    color: inherit;
    text-decoration: none;
}

.article-title {
    font-family: "Fraunces", serif;
    font-weight: 900;
    line-height: 1.25;
    color: #000;
    &--large

{
    font-size: 2rem;
    & + *

{
    margin-top: 1.5rem;
}

}

&--medium {
    font-size: 1.5rem;
    & + *

{
    margin-top: 0.75rem;
}

}

&--small {
    font-size: 1.25rem;
    & + *

{
    margin-top: 0.75rem;
}

}
}

.article-link {
    color: inherit;
}

.mark {
    background-color: #fabea1;
    &--secondary

{
    background-color: #c2dddf;
}

&--tertiary {
    background-color: #F8E177;
}

}

.article-excerpt,
.article-creditation {
    font-size: 1.125rem;
    line-height: 1.4;
    p + p

{
    margin-top: 1.5rem;
}

}

.article-author {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.article-author-img {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background-color: #323232;
    overflow: hidden;
    background-blend-mode: multiply;
    img

{
}

& + .article-author-info {
    margin-left: 0.5rem;
}

}

.article-author-info {
    line-height: 1.375;
    dl

{
    margin-top: 0.25em;
}

dt {
    font-weight: 600;
}

dd {
    font-size: 0.875em;
}

}

.article-category {
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
    svg

{
    max-width: 1.5rem;
    margin-right: .5rem;
    vertical-align: middle;
}

}

.article-podcast-player {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    margin-top: 1.25rem;
}

.podcast-play-button {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 12px;
    border: 0;
    background-color: #000;
    margin-right: .5rem;
    svg

{
    max-width: 1rem;
    max-height: 1rem;
    fill: #FFF;
}

}

.podcast-progression {
    flex: 1;
    height: 8px;
    border-radius: 99em;
    background-color: #D9D4CD;
    background-image: linear-gradient(to right, #F99970 30%, #D9D4CD 30%, #D9D4CD 100%)
}

.podcast-time {
    font-weight: 500;
    font-size: 1.125rem;
    margin-left: .5rem;
}

:focus {
    outline: 0;
}




/*new css*/
.parallax {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("https://t3.ftcdn.net/jpg/03/77/83/14/360_F_377831486_8IAT1dLkSWFmbT9VYIZbQzlMtYzbio7g.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax > h1 {
    color: white;
    font-size: 8em;
}

    .parallax > h1 > span {
        background: linear-gradient(rgba(0, 0, 0, 0) 65%, rgba(255, 255, 255, 0.3) 35%)
    }

.screen {
    height: 100vh;
    position: absolute;
    width: 100%;
    top: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, black 95%);
}

/* Wrapper styling for a clean layout */
.nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    padding-top: 80px;
}

    /* Base tab button styling */
    .nav-tabs .nav-link {
        border: none;
        color: #444;
        font-weight: 600;
        padding: 12px 25px;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
        position: relative;
        font-size: 1rem;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        letter-spacing: 0.5px;
    }

        /* Hover effects */
        .nav-tabs .nav-link:hover {
            color: #ff2e63;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 46, 99, 0.2);
        }

        /* Active tab styling */
        .nav-tabs .nav-link.active {
           
            color: darkblue;
            transform: translateY(-3px);
        }

            /* Optional: little glow effect under active tab */
            .nav-tabs .nav-link.active::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 50%;
                transform: translateX(-50%);
                width: 50%;
                height: 4px;
                background: #5093f7;
                border-radius: 10px;
            }

/* Make it responsive */
@media (max-width: 576px) {
    .nav-tabs .nav-link {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

.first-desp-section {
    padding: 5rem 1rem 5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 18px;
    margin-bottom: 1rem;
    color: black;
}
.heading-text {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 18px;
    color: #01022E;
}
.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

    .image-wrapper img {
        border-radius: 1rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        object-fit: cover;
    }

.img1 {
    position: absolute;
    top: 0;
    left: 30%;
    transform: translateX(-50%);
    width: 220px;
    height: 300px;
    animation: float 6s ease-in-out infinite;
}

.img2 {
    position: absolute;
    top: 80px;
    right: 0;
    width: 200px;
    height: 270px;
    animation: float 5s ease-in-out infinite;
}

.img3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 250px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

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

@media(max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .image-wrapper {
        height: 300px;
    }
}


.scroll-container {
    overflow: hidden;
    cursor: grab;
    scroll-behavior: smooth;
    white-space: nowrap;
}
    .scroll-container.active {
        cursor: grabbing;
    }
    .scroll-container .infinite-scroll-wrapper {
        overflow: hidden;
        width: 100%;
        position: relative;
    }
.infinite-scroll-content {
    display: flex;
    align-items: center;
}
.infinite-scroll-wrapper .infinite-scroll-content {
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    animation: scroll 50s linear infinite;
    width: 100%;
    gap: 16px;
}

.infinite-scroll-wrapper .infinite-scroll-items {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    gap: 16px;
}

.infinite-scroll-items .item-wrap {
    position: relative;
    min-width: 238px;
    height: 315px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.item-wrap {
    flex: 0 0 auto;
    margin: 10px;
    text-align: center;
}
    .item-wrap::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50%; /* adjust coverage */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
        pointer-events: none;
        z-index: 1;
    }

.item-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

    /* 📝 Text stays top-left */
    .item-wrap .text {
        position: absolute;
        top: 10px;
        left: 10px;
        color: #fff;
        font-weight: bold;
        font-size: 1rem;
        background: rgba(0, 0, 0, 0.4); /* optional text bg for readability */
        padding: 5px 10px;
        z-index: 2; /* stays above shadow */
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    }
.item-wrap:hover img {
    transform: scale(1.05);
}

@media (min-width: 1024px) {
    .infinite-scroll-wrapper:hover .infinite-scroll-content {
        animation-play-state: paused;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
.cards-section {
    --x-distance: -50px;
    --y-distance: 14px;
    --angle: 7deg;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    background: #ffffff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06);
    padding: 2rem 1rem;
}

.card-deck {
    display: flex;
    justify-content: center;
    align-items: end;
}

.card {
    width: 200px;
    height: 300px;
    display: grid;
    place-items: center;
    font-size: 80px;
    transition: transform .4s;
    border-radius: 12px;
    margin: 0;
}

    .card:not(:first-child) {
        margin-left: var(--x-distance);
    }

    .card:nth-child(1) {
        z-index: 0;
        color: #f2ada9;
        background: #2a3ea6;
        transform: rotate(calc(var(--angle) * -2)) translateY(calc(var(--y-distance) * 3));
    }

    .card:nth-child(2) {
        z-index: 1;
        color: #faf267;
        background: #56b274;
        transform: rotate(calc(var(--angle) * -1)) translateY(var(--y-distance));
    }

    .card:nth-child(3) {
        z-index: 2;
        color: #56b274;
        background: #2a3ea6;
    }

    .card:nth-child(4) {
        z-index: 3;
        color: #eb4a30;
        background: #f2ada9;
        transform: rotate(var(--angle)) translateY(var(--y-distance));
    }

    .card:nth-child(5) {
        z-index: 4;
        color: #f2ada9;
        background: #eb4a30;
        transform: rotate(calc(var(--angle) * 2)) translateY(calc(var(--y-distance) * 3));
    }

    .card:hover {
        transform: translateY(-10px);
    }

        .card:hover ~ .card {
            transform: translateX(calc(var(--x-distance) * -1));
        }

/* extra page space so scroll can occur */
.spacer {
    height: 200vh;
}



/*new css*/


/* Career Gallery Container */
.career__gallery {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
}

.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

.line {
    position: relative;
}




/* Row and Column Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
    flex: 1 0 0%;
}

/* Header List */
.career__gallery ul {
    text-align: center;
    margin-bottom: 20px;
    padding: 0;
}

    .career__gallery ul li {
        display: inline-block;
        font-weight: 500;
        font-size: 36px;
        line-height: 1;
        color: #000 !important;
        position: relative;
        padding-right: 20px;
        margin-right: 20px;
    }

        .career__gallery ul li::after {
            content: "";
            width: 3px;
            height: 3px;
            position: absolute;
            right: 0;
            bottom: 29px;
            background-color: #000;
        }
.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0px !important;
    padding-right: 0px !important;
}


/* Image Wrappers */
.career__gallery-img {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 700px;
}

    /* Images */
    .career__gallery-img img {
        width: 100%;
        height: auto;
        display: block;
        transform: translateY(0);
        transition: transform 0.3s ease-out;
        will-change: transform;
        object-fit: cover;
        border-radius: 12px;
    }

    /* Multiple images in last column */
    .career__gallery-img:last-child {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

/* Responsive */
@media (max-width: 991px) {
    .career__gallery-img {
        height: auto;
    }

    .career__gallery ul li {
        font-size: 28px;
    }

    .career__gallery p {
        font-size: 20px;
    }
}
@import "compass";

.grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.block-33 {
    width: 33%;
    float: left;
    margin-top: 40px;
}

.gutter {
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
}

.clear {
    clear: both;
    display: block;
}

.parallax-img {
    width: 100%;
}


.line-3 {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    background: var(--white-4);
}
.line::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--white-4);
}

.career__gallery {
    overflow: hidden;
}
    .career__gallery ul {
        text-align: center;
        margin-bottom: 20px;
    }
      
            

    .career__gallery p {
        max-width: 850px;
        margin: 0 auto;
        position: relative;
        z-index: 3;
        text-align: center;
        line-height: 1.75;
    }
li {
    list-style: none;
    position: relative;
    z-index: 1;
}

/*second css*/

hr {
    border-bottom: 1px solid #000;
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}


/* General Section Styling */
.faq__area-4 .row {
    align-items: flex-start; /* Keep Bootstrap's default flex */
}

.faq__sec-title {
    margin-bottom: 40px;
}
/* Section Layout Fix */
.faq__area-4 .row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.faq__area-4 .col-xxl-8,
.faq__area-4 .col-xxl-4 {
    padding: 15px;
}

.sec-subtile-6 {
    font-size: 18px;
    color: #fff;
    background: #222;
    padding: 5px 16px;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid #444;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.accordion-button:hover {
    color: #0b0c0e !important;
}
    .sec-title-6 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
}

.faq__sec-title p {
    line-height: 1.75;
    margin-bottom: 25px;
    width: 95%;
    color: black;
    font-size: 18px;
    text-align: justify;
}

.btn-view {
    font-weight: 500;
    font-size: 18px;
    padding: 10px 20px;
    background: #66a7c9;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .btn-view:hover {
        background: #2571cf;
        transform: translateY(-2px);
        color: white;
    }

/* Accordion Styling */
.faq__list-4 .accordion {
    background: #c9daff;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #333;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    background: #6782bd;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .accordion-item:hover {
        background: #6782bd;
    }
/* Accordion Header/Button */
.accordion-button {
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 20px;
    border: none;
    transition: all 0.3s ease;
}

    .accordion-button:focus {
        box-shadow: none;
        outline: none;
    }
.accordion-body > p {
    color: white;
    line-height: 1.75;
}
.accordion-button:not(.collapsed) {
    color: white;
    background: #6782bd;
    border-bottom: 1px solid #4052cd;
}

    /* Accordion Icon (Right Side) */
.accordion-button::after {
    content: "+";
    font-size: 28px;
    color: #fff;
    margin-left: auto;
    background-image:none !important;
    transition: transform 0.3s ease, color 0.3s ease;
}

    .accordion-button:not(.collapsed)::after {
        content: "-";
        color: White;
        transform: rotate(180deg);
    }

/* Accordion Body */
.accordion-body {
    padding: 15px 20px;
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
    border-top: 1px solid #333;
    background: #6782bd;
}

/* Decorative Shapes */
.faq__img6-1, .faq__img6-2 {
    position: absolute;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}


.wave-section {
    position: relative;
    height: 100vh;
    background: #000; /* Optional for contrast */
    overflow: hidden;
}

canvas {
    position: absolute; /* not fixed! */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

.letsTalkGraphics {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .letsTalkGraphics > h2 {
        text-transform: uppercase;
        margin: 0 auto;
        font-size: 40px;
        letter-spacing: 6px;
        text-shadow: 0 0 10px rgba(255,255,255,0.5);
    }


/*lets get started section css*/
/* SECTION STYLING */
.get-started-section {
    background: linear-gradient(135deg, #ffffff, #a1c4fd, #86b6f1, #a1c4fd);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    color: #fff;
    padding: 100px 20px;
    position: relative;
    overflow: visible; /* ✅ FIX: allow shapes to be seen */
    font-family: "Poppins", sans-serif;
}

    /* Soft Glow Circles in Background */
    .get-started-section::before,
    .get-started-section::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: #bae9ff;
        border-radius: 50%;
        filter: blur(90px);
        z-index: 0;
    }

    .get-started-section::before {
        bottom: 104px;
        left: -100px;
    }

    .get-started-section::after {
        bottom: -100px;
        right: -100px;
    }

    /* CONTAINER LAYOUT */
    .get-started-section .container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 50px;
        position: relative;
        z-index: 2;
    }

/* TEXT SIDE */
.text-side {
    flex: 1;
}

    .text-side h1 {
        font-size: 52px;
        margin-bottom: 20px;
        font-weight: bold;
        line-height: 1.2;
    }

    .text-side p {
        font-size: 20px;
        margin-bottom: 30px;
        color: black;
        max-width: 450px;
    }

/* BUTTON STYLING */
.send-btn {
    background: #fff;
    color: #4f46e5;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

    .send-btn:hover {
        background: #f4f4f4;
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }

/* IMAGE SIDE */
.image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* PHONE RINGING ANIMATION */
/* FIX SVG CLIPPING */
.phone-ringing {
    width: 220px;
    height: 220px;
    position: relative;
    animation: floatPhone 3s ease-in-out infinite;
    overflow: visible; /* ✅ Allows rings to grow outside */
}

    .phone-ringing svg {
        width: 100%;
        height: auto;
        overflow: visible; /* ✅ Prevent clipping */
    }

/* ANIMATED GRADIENT BACKGROUND */
.get-started-section {
    background: #f1fdff;
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    color: #fff;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
/* RINGS ANIMATION */
.ring {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    opacity: 0.6;
    transform-origin: 50% 50%;
    animation: ringPulse 2.5s infinite ease-out;
}

.ring1 {
    animation-delay: 0s;
    stroke: #fff;
}

.ring2 {
    animation-delay: 0.7s;
    stroke: #4f46e5;
}

/* PHONE SHAKE */
.phone {
    transform-origin: center;
    animation: phoneWiggle 0.6s infinite ease-in-out;
}

/* RING PULSE */
@keyframes ringPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
        stroke: #fff;
    }

    50% {
        opacity: 0.4;
        stroke: #93c5fd;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
        stroke: #4f46e5;
    }
}

/* PHONE WIGGLE */
@keyframes phoneWiggle {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(6deg);
    }

    75% {
        transform: rotate(-4deg);
    }
}

/* FLOATING ANIMATION */
@keyframes floatPhone {
    0%, 100% {
        transform: translateY(0);
    }

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

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .get-started-section .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .text-side h1 {
        font-size: 40px;
    }

    .text-side p {
        font-size: 18px;
        margin: 0 auto 30px;
    }

    .phone-ringing {
        width: 180px;
    }
}

/* DECORATIVE VECTOR SHAPES */
.decorative-shape {
    position: absolute;
    width: 250px; /* ✅ Smaller so it fits inside */
    opacity: 0.3;
    z-index: 1; /* ✅ Behind content */
    pointer-events: none;
}

.top-shape {
    top: -50px;  /* ✅ Positioned inside view */
    left: -50px;
}

.bottom-shape {
    bottom: -50px;
    right: -50px;
}

.decorative-shape svg {
    width: 100%;
    height: auto;
}

/* Subtle float animation */
.decorative-shape svg path {
    animation: waveFloat 6s ease-in-out infinite alternate;
}

@keyframes waveFloat {
    0% { transform: translateY(0); opacity: 0.3; }
    100% { transform: translateY(15px); opacity: 0.5; }
}


/*Video section*/

/* SECTION */
.insights-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 56px 24px;
    margin: 28px auto;
    max-width: var(--max-width);
    box-shadow: 0 10px 30px rgba(12, 18, 25, 0.06);
}

    /* decorative SVGs */
    .insights-section .svg-shape {
        position: absolute;
        pointer-events: none;
        opacity: 0.95;
        will-change: transform;
        transform-origin: center;
    }

.shape-top-left {
    left: -135px;
    top: -40px;
    width: 240px;
    height: 240px;
    transform: rotate(-12deg)
}

.shape-top-right {
    right: -70px;
    top: -60px;
    width: 260px;
    height: 260px;
    transform: rotate(6deg)
}

.shape-bottom-left {
    left: -50px;
    bottom: -50px;
    width: 220px;
    height: 220px;
    transform: rotate(25deg)
}

.shape-bottom-right {
    right: -102px;
    bottom: -40px;
    width: 200px;
    height: 200px;
    transform: rotate(-18deg)
}

/* Layout */
/* Layout */
.video-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.video-card-wrapper {
    width: 49%; /* each video + headline container */
    display: flex;
    flex-direction: column;
}

.video-headline {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
    padding: 26px;
}

.video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #000;
    transition: background 0.3s;
}

.video-card:hover .play-button {
    background: rgba(255,255,255,1);
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.UttarMahaImg {
    background-image: url('../images/backgroundimg/background-video-insight-news02.png');
    left: 0;
    top: 0;
}

.ZillaParisadImg {
    background-image: url('../images/backgroundimg/background-video-insight-news.jpg');
    right: 0;
    top: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .video-card-wrapper {
        width: 100%;
        margin-bottom: 20px;
    }
}

    /* video card */
    /*.video-card {
    position: relative;
    width: 44%;
    margin:auto;
    height: 100%;
    min-height: 480px;
    border-radius: var(--card-radius);
    overflow: hidden;
    background-image: url('../images/onlinenewsimg/video_background_img.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}


.lead {
    font-size: 16px;
    font-weight: normal;
}
    .video-card video {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover
    }*/
    /* Ensure iframe fills the card */
    /*.video-card iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    position: absolute;
    inset: 0;*/ /* top:0, right:0, bottom:0, left:0 */
    /*}*/
    /* Overlay covers the full card */
    /*.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(https://prmgroup.in/wp-content/uploads/2022/10/sddefault.jpg);
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: opacity 0.6s ease;*/ /* fade effect */
    /*}

    .video-overlay.hide {
        opacity: 0;
        pointer-events: none;
    }*/
    /* Play button styling remains the same */
    /*.play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 8px 20px rgba(59,130,246,0.18);
    cursor: pointer;
    transition: transform .18s ease;
    z-index: 3;
}
    .play-btn:hover {
        transform: scale(1.06)
    }

    .play-btn svg {
        width: 28px;
        height: 28px;
        fill: var(--accent)
    }*/
    /* Center the section */
    /*.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    position: relative;
    margin: 50px 0;
}*/
    /* Video wrapper */
    /*.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;*/ /* you can adjust */
    /*aspect-ratio: 16/9;*/ /* keeps same size for image & iframe */
    /*border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}*/
    /* Background image */
    /*.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;*/ /* fills without distortion */
    /*border-radius: 12px;
    display: block;
}*/
    /* iframe styling */
    /*.video-wrapper iframe {
    width: 100%;
    height: 421px;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;*/ /* Disable interaction until play */
    /*opacity: 0;*/ /* Hidden initially */
    /*transition: opacity 0.3s ease;
}*/
    /* Play button in center */
    /*.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}*/
    /* Play triangle */
    /*.play-button::before {
        content: '';
        display: block;
        margin-left: 5px;
        width: 0;
        height: 0;
        border-left: 20px solid white;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }*/
    /* Hover effect to pause/play */
    /*.video-wrapper:hover .play-button {
    background: rgba(0,0,0,0.8);
}*/
    /* info column */
    .info {
        padding: 18px 12px;
    }

.eyebrow {
    display: inline-block;
    background: #eff6ff;
    color: var(--accent);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px
}

h2 {
    margin: 14px 0 12px;
    font-size: 28px;
    line-height: 1.05;
    color: #0f172a
}

p.lead {
    color: var(--muted);
    margin: 0 0 18px
}

.features {
    display: flex;
    gap: 12px;
    flex-direction: column;
    margin-top: 8px
}

.feature {
    display: flex;
    gap: 12px;
    align-items: flex-start
}
    .feature .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: linear-gradient(180deg, var(--accent, #3b82f6), #60a5fa);
        margin-top: 6px;
    }

    .feature strong {
        display: block;
        font-size: 15px
    }

    .feature span {
        font-size: 14px;
        color: var(--muted)
    }




/* responsive */
@media (max-width:880px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insights-section {
        padding: 36px 18px
    }

    h2 {
        font-size: 22px
    }
}

@media (max-width:420px) {
    .play-btn {
        width: 64px;
        height: 64px
    }
}
/* NEWS SECTION */
.news-section {
    max-width: 1200px; /* control max container width */
    margin: 60px auto;
    padding: 0 20px;
}

.news-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
    color: #0f172a;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.news-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    height: 250px; /* FIXED HEIGHT */
    display: flex;
    align-items: center;
    justify-content: center;
}

    .news-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* keep aspect ratio */
        transition: transform 0.3s ease;
    }

.news-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.news-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #000;
    font-size: 28px;
}

.news-item:hover img {
    transform: scale(1.1);
}

.news-item:hover .news-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.news-item:hover .news-icon {
    opacity: 1;
    transform: scale(1);
}

/*banner css*/
.wrap-banner {
    position: relative;
    width: 100%;
    height: 55vh; /* Adjust height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#your-element-selector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.wrap-banner h2 {
    position: relative;
    z-index: 1; /* Ensure text is on top */
    color: #fff; /* Make text visible over background */
    font-size: 42px;
    text-align: center;
    font-weight: bold;
    margin-top: 40px;
}

#gallery > section.CultureThatInspires.first-desp-section.animateEveryTime.animate-in > div > div:nth-child(1) > p:nth-child(2) {
    text-align: justify;
    font-size: 18px;
    line-height: 1.75;
}
#gallery > section.CultureThatInspires.first-desp-section.animate-in.animateEveryTime > div > div:nth-child(1) > p:nth-child(3) {
    text-align: justify;
    font-size: 18px;
    line-height: 1.75;
}


#mainNav > ul > li:nth-child(4) > a {
    color: #fff !important;
    font-weight: bold;
    background: #07388e;
    border-radius: 7px;
}



@keyframes growLineinout {
    0% {
        width: 0%;
    }

    50% {
        width: 30px;
    }

    100% {
        width: 0%;
    }
}



.info .line {
    height: 3px;
    background: #07388e;
    width: 0px;
    animation: growLineinout 2s linear infinite;
    border-radius: 4px;
}

.info .sub-title {
    display: flex;
    font-size: 16px !important;
    align-items: center;
    gap: 10px;
    color: #17428f;
}

@keyframes growLineinout {
    0% {
        width: 0%;
    }

    50% {
        width: 30px;
    }

    100% {
        width: 0%;
    }
}


@media only screen and (min-width: 200px) and (max-width: 700px) {
    .wrap-banner {
        height: 279px;
    }
    #header .container{
        gap:10px;
    }
    .vanta-canvas {
        height: 100% !important;
    }

    .wrap-banner {
        height: 397px;
    }

    .vanta-canvas {
        width: 457px;
        height: 397px;
    }
}