* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

        /* Custom cursor */
.cursor {
    width: 24px;
    height: 24px;
    border: 2px solid rgb(241, 186, 5);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999999;
    box-shadow:
        0 0 10px rgba(241, 186, 5, 0.7),
        0 0 20px rgba(241, 186, 5, 0.5);
}

.cursor-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    z-index: 999998;
}
@media (max-width: 768px) {
    .cursor,
    .cursor-bg {
        display: none !important;
    }

    body {
        cursor: auto !important;
    }
}
body { background-color: #ffffff; }



.navbar-custom {
    background-color: #FFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.logo {
    width: 120px;
    transition: transform 0.4s ease;
}

.logo:hover {
    transform: scale(1.08);
}

.navbar-custom .nav-link {
    color: #000;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: #F7941E;
    transform: translateY(-2px);
}

.navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #F7941E;
    transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background-color: #F7941E;
    border: none;
    border-radius: 30px;
    padding: 10px 22px;
    transition: all 0.3s ease;
}

.nav-btn a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
}

.nav-btn:hover {
    background-color: #df6502;
    transform: scale(1.08);
}

.animate-btn {
    box-shadow: 0 0 10px rgba(247, 148, 30, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 8px rgba(247, 148, 30, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(247, 148, 30, 0.7);
    }

    100% {
        box-shadow: 0 0 8px rgba(247, 148, 30, 0.4);
    }
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.navbar-custom.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    /*   backdrop-filter: blur(8px); */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease-in-out;
}


@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-custom .nav-link {
        display: block;
        padding: 10px 0;
        text-align: center;
    }

    .nav-btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}

.services-link::after {
    display: none !important;
}


/* dropdown section */

.nav-item {
    position: relative;
}

.nav-item .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 6px;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 9999;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333 !important;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #f3f3f3;
}


.nav-item:hover>.dropdown-menu {
    display: block;
}


.navbar-collapse {
    overflow: visible !important;
}


.nav-item.open>.dropdown-menu {
    display: block !important;
}


.nav-item.open i {
    transform: rotate(180deg);
    transition: 0.3s;
}





/* head Section */



.hero-layered {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.video-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    border-radius: 25px;
    z-index: 1;
/*     animation: float 10s infinite ease-in-out alternate;
 */    transition: all 0.5s ease;
}

.layer1 {
    width: 100%;
    height: 100%;
    z-index: 1;
    animation-delay: 0s;
    border: 3px solid rgba(255, 255, 255, 0.05);
}

.layer2 {
    width: 80%;
    height: 80%;
    z-index: 2;
    animation-delay: 1s;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.08), inset 0 0 25px rgba(255, 255, 255, 0.05);
}

.layer3 {
    width: 60%;
    height: 60%;
    z-index: 3;
    animation-delay: 2s;
    border: 2px solid #f7941e;
    box-shadow: 0 0 30px rgba(247, 148, 30, 0.3), inset 0 0 20px rgba(247, 148, 30, 0.2);
}

.video-layer video,
.video-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .video-layer:hover video,
.video-layer:hover img {
   
} */

/* .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    pointer-events: none; 
    opacity: 0; 
    transition: opacity 0.4s ease;
    z-index: 2; 
}
.short-card:hover .overlay {
    opacity: 1;
} 
 */

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #fff;
    padding: 0 20px;
/*     animation: fadeUp 2s ease-in-out;
 */}

.head-text {
    font-size: 1.8rem;
    font-weight: 800;
  font-family: 'Oooh Baby', cursive;
    font-size: 48px;   
  font-size: 18px;
    line-height: 1;
    text-transform: titlecase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}


.sub-text {
    font-weight: 600;
    font-size: 1.5rem;
    font-style: italic;
    color: #ffdc91;
    margin-bottom: 25px;
}

.btn2 {
    background: linear-gradient(135deg, #f7941e, #ffb347);
    color: #fff;
    border: none;
    border-radius: 35px;
    padding: 16px 50px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(247, 148, 30, 0.6);
    transition: all 0.4s ease;
    animation: pulse 3s infinite ease-in-out;
}

.btn2:hover {
    background: linear-gradient(135deg, #df6502, #ff974f);
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(247, 148, 30, 0.9);
}


@keyframes float {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -52%) scale(1.05);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(247, 148, 30, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 35px rgba(247, 148, 30, 0.8);
    }
}

@keyframes borderGlow {

    0%,
    100% {
        box-shadow: 0 0 25px rgba(247, 148, 30, 0.5), inset 0 0 15px rgba(247, 148, 30, 0.3);
    }

    50% {
        box-shadow: 0 0 45px rgba(247, 148, 30, 0.8), inset 0 0 30px rgba(247, 148, 30, 0.6);
    }
}

.layer3 {
    animation: float 10s infinite ease-in-out alternate, borderGlow 4s infinite ease-in-out;
}

@media (max-width: 991px) {
    .head-text {
        font-size: 2rem;
    }

    .sub-text {
        font-size: 1.1rem;
    }

    .btn2 {
        font-size: 1rem;
        padding: 12px 30px;
    }

    .layer2 {
        width: 85%;
        height: 85%;
    }

    .layer3 {
        width: 70%;
        height: 70%;
    }
}

@media (max-width: 767px) {
    .hero-layered {
        height: 80vh;
    }

    .head-text {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .sub-text {
        font-size: 1rem;
    }

    .btn2 {
        font-size: 0.9rem;
        padding: 10px 24px;
    }

    .layer2 {
        width: 90%;
        height: 90%;
    }

    .layer3 {
        width: 80%;
        height: 80%;
    }
}



/* info Section */



.info-wrapper {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to right, #f5f3f3 0%, #fff4da 35%, #f5c663 70%, #000000 100%);
    position: relative;
}

.info-text-block {
    color: #222;
    z-index: 2;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #173E84;
    border-left: 5px solid #F7941E;
    padding-left: 15px;
}

.section-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    color: #F7941E;
    margin-top: 10px;
}

.info-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.2rem;
}

.info-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    transition: all 0.4s ease;
    max-width: 70%;
}

.info-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.05);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.info-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.15), transparent 70%);
    z-index: -1;
}

.info-image-wrapper:hover .info-image {
    transform: scale(1.03);
    filter: brightness(1.15);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.3rem;
    }

    .section-subtitle {
        font-size: 1.4rem;
    }

    .info-paragraph {
        font-size: 1.1rem;
    }

    .info-image-wrapper {
        max-width: 75%;
    }
}

@media (max-width: 767px) {
    .info-wrapper {
        flex-direction: column;
        background: linear-gradient(to bottom, #ffffff 0%, #fff5e2 50%, #000000 100%);
        padding: 50px 20px;
    }

    .info-text-block {
        text-align: center;
        padding: 0;
    }

    .section-title {
        font-size: 2.1rem;
        border-left: none;
        border-bottom: 4px solid #F7941E;
        display: inline-block;
        padding-bottom: 5px;
    }

    .section-subtitle {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .info-paragraph {
        font-size: 1.15rem;
        line-height: 1.8;
    }

    .info-image-wrapper {
        max-width: 80%;
        margin-top: 35px;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .info-image {
        border-radius: 20px;
    }
}



/* Services Section */



.services-header {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 60px;
}

.heading-main {
    font-size: 3.2rem;
    font-weight: 800;
    color: #173e84;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    animation: fadeInDown 1.2s ease;
}

.heading-main::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: #f7941e;
    border-radius: 2px;
    animation: growLine 1.5s ease;
}

.heading-sub {
    display: block;
    font-size: 1.6rem;
    color: #f7941e;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 15px;
    letter-spacing: 3px;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes growLine {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 100px;
        opacity: 1;
    }
}

.card-section {
    padding: 40px 60px 100px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 50px;
}

.card {
    width: 420px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-bottom: 5px solid #f7941e;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.card-content {
    padding: 30px 30px 40px;
    text-align: center;
}

.card-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #173e84;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 1200px) {
    .card {
        width: 360px;
    }

    .card-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 991px) {
    .heading-main {
        font-size: 2.6rem;
    }

    .heading-sub {
        font-size: 1.3rem;
    }

    .card-section {
        gap: 40px;
    }

    .card {
        width: 85%;
        max-width: 500px;
    }

    .card-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .services-header {
        margin-top: 60px;
        margin-bottom: 30px;
    }

    .heading-main {
        font-size: 2.2rem;
    }

    .heading-sub {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .card-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 30px 20px 80px 40px;
    }

    .card {
        width: 95%;
        max-width: 420px;
    }

    .card img {
        height: 220px;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }

    .card-content p {
        font-size: 1rem;
    }
}

.clients-header {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.clients-header p {
    font-size: 3rem;
    font-weight: 800;
    color: #173e84;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.clients-header p::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #f7941e;
    border-radius: 3px;
}

.clients-header span {
    display: block;
    max-width: 800px;
    margin: 20px auto 0;
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
}



/* SECTION */
.clients-section {
  padding: 50px 0;
  background: #fff;
  overflow: hidden;
}

/* HEADER */
.clients-header {
  text-align: center;
  margin-bottom: 30px;
}

.clients-header p {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.clients-header span {
  color: #555;
  max-width: 800px;
  margin: auto;
  display: block;
}

/* SLIDER */
.clients-slider1 {
  display: flex;
  gap: 40px;
  width: max-content;
animation: clientsScroll 45s linear infinite;
}

/* LOGO */
.client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-logo img:hover {
  transform: scale(1.1);
}

/* ANIMATION */
@keyframes clientsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER (OPTIONAL) */
.clients-section:hover .clients-slider1 {
  animation-play-state: paused;
}


.clients-slider:hover {
    animation-play-state: paused;
}

/* CLIENT LOGO CARD */
.client-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    will-change: transform;
}

/* HOVER EFFECT */
.client-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

/* LOGO IMAGE */
.client-logo img {
    max-width: 85%;
    max-height: 70%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

/* IMAGE HOVER */
.client-logo:hover img {
    filter: grayscale(0%);
}

/* INFINITE SCROLL ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* blog Section */


.blog-section {
    background: #FFF;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

@keyframes floatShape {
    from {
        transform: translateY(0) rotate(0);
    }

    to {
        transform: translateY(-20px) rotate(15deg);
    }
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header p {
    font-size: 2.8rem;
    font-weight: 800;
    color: #173e84;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    animation: fadeInDown 1s ease;
}

.blog-header p::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #f7941e;
    border-radius: 2px;
}

.blog-header span {
    display: block;
    font-size: 1.1rem;
    color: #555;
    margin-top: 15px;
    animation: fadeInUp 1s ease 0.2s both;
}

.blog-row {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.blog-row::-webkit-scrollbar {
    height: 8px;
}

.blog-row::-webkit-scrollbar-thumb {
    background: #f7941e;
    border-radius: 10px;
}

.blog-row::-webkit-scrollbar-track {
    background: #eee;
}

.blog-card {
    flex: 0 0 31%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp 1s ease both;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #173e84;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: #f7941e;
}

.blog-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.blog-btn {
    display: inline-block;
    background-color: #f7941e;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.blog-btn:hover {
    text-decoration: none;
    color: white;
    background-color: #df6502;
    box-shadow: 0 0 15px rgba(247, 148, 30, 0.6);
}

.blog-card {
    animation: floatCard 6s ease-in-out infinite alternate;
}

@keyframes floatCard {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-6px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 991px) {
    .blog-card {
        flex: 0 0 45%;
    }
}

@media (max-width: 767px) {
    .blog-card {
        flex: 0 0 85%;
    }

    .blog-header p {
        font-size: 2.2rem;
    }

    .blog-section {
        padding: 70px 10px;
    }
}



/* team section */



.team-section {
    padding: 80px 20px;
    background: #FFF;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.team-heading {
    font-size: 40px;
    margin-bottom: 10px;
    color: #173E84;
    font-weight: 800;
}

.team-subheading {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 36px;
    justify-items: center;
}

.team-card {
    perspective: 1500px;
    /* for 3D hover effect */
    width: 100%;
    max-width: 300px;
}

.team-card-inner {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.team-btn {
    margin-top: 40px;
    display: inline-block;
    background-color: #f7941e;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.team-btn:hover {
    color: white;
    text-decoration: none;
    background-color: #df6502;
    box-shadow: 0 0 15px rgba(247, 148, 30, 0.6);
}

.team-card-inner img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    transition: transform 0.4s;
}

.team-text {
    color: #173E84;
}

.team-card-inner h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #111;
}

.team-card-inner p {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
}

/* Social Icons */
.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s;
}

.team-social a {
    font-size: 20px;
    color: #555;
    transition: color 0.3s;
}

.team-social a:hover {
    color: #ff6600;
}

/* Hover Effects */
.team-card-inner:hover {
    transform: rotateY(10deg) translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.team-card-inner:hover img {
    transform: scale(1.15) rotateZ(-5deg);
}

.team-card-inner:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Text */
@media(max-width:768px) {
    .team-heading {
        font-size: 32px;
    }

    .team-subheading {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .team-card-inner {
        padding: 25px 15px;
    }

    .team-card-inner img {
        width: 140px;
        height: 140px;
    }

    .team-card-inner h3 {
        font-size: 20px;
    }

    .team-card-inner p {
        font-size: 14px;
    }
}




/* Shorts Section */



.shorts-section {
    background: linear-gradient(to right, #fff9ef, #ffe3b0);
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #173E84;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}


.section-title::before {
    display: none;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #F7941E;
    margin: 10px auto 0;
    border-radius: 5px;
}

.section-subtitle {
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.short-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    max-width: 90%;
    margin: 0 auto;
}

.short-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.short-video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    background-color: #000;
}

/* .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
} */

.overlay p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.short-card:hover .overlay {
    opacity: 1;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.4rem;
    }

    .short-card {
        max-width: 95%;
    }
}

@media (max-width: 767px) {
    .shorts-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .short-card {
        max-width: 100%;
        border-radius: 15px;
    }

    .overlay p {
        font-size: 1rem;
    }
}


/* futter section */

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #F7941E, #173E84);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.social-icon i {
    z-index: 1;
    transition: transform 0.4s ease;
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon:hover i {
    transform: scale(1.2);
}

.social-icon.facebook:hover {
    text-decoration: none;
    background: #3b5998;
}

.social-icon.instagram:hover {
    text-decoration: none;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.linkedin:hover {
    text-decoration: none;
    background: #0077b5;
}

.social-icon.whatsapp:hover {
    text-decoration: none;
    background: #25D366;
}

@media (max-width: 767px) {
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.footer {
    background: url('(Footer.png).jpg') no-repeat center center/cover;
    position: relative;
    color: #fff;
    padding: 80px 20px 30px;
    overflow: hidden;
}


.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(50 48 48 / 61%);
    z-index: 0;
}

@keyframes fadeBg {
    0% {
        filter: brightness(0.85) saturate(1);
    }

    50% {
        filter: brightness(1) saturate(1.1);
    }

    100% {
        filter: brightness(0.85) saturate(1);
    }
}

.footer {
    animation: fadeBg 15s ease-in-out infinite;
}

.footer-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 25px;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f4f4f4;
    max-width: 320px;
}

.futter-num {
    text-decoration: none;
    color: white;
}

.futter-num:hover {
    text-decoration: none;
    color: white;
}

.futter-mail {
    text-decoration: none;
    color: white;
}

.futter-mail:hover {
    text-decoration: none;
    color: white;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-col h4:hover::after {
    width: 80px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #f4f4f4;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.contact-info li {
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #fff;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    font-size: 0.9rem;
    color: #eee;
}

@media (max-width: 991px) {
    .footer-row {
        gap: 30px;
    }

    .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 767px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .footer-about {
        margin: 0 auto 20px;
    }
}



/* whatsapp icon */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 6px 6px 8px #999;
    z-index: 100;
}

.float:hover {
    color: white;
}

.my-float {
    margin-top: 16px;
}

/* font */

.font-link {
    font-family: "Momo Trust Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

.font-link2 {
    font-family: "Momo Trust Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

.font-link3 {
    font-family: "Momo Trust Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

.font-link4 {
    font-family: "Momo Trust Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}


/* Base card */


.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.hero-card p {
    margin: 15px 0 0;
    color: #444;
    line-height: 1.5;
}

/* Card 1 circle shape */


/* Card 2 blob shape */


/* Card 3 angled shape */
.card3 .angle-shape {
    width: 100px;
    height: 100px;
    background: #4ECDC4;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.15;
}


/* Card styling */


.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Video fills the card completely */

/* ======================= */
/* HERO CARDS SECTION CLEAN */
/* ======================= */

/* Import Google Fonts (put at very top of your CSS) */
@import url('https://fonts.googleapis.com/css2?family=Ohh+Baby&family=Montserrat:wght@400;500;600&display=swap');

/* Hero section titles */
.hero-title {
    font-family: 'Ohh Baby', cursive;
    font-size: 3rem;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.1);
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.5px;
    text-align: center;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
    letter-spacing: 0.3px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
}

/* Container for hero cards */
.hero-cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

/* General Hero Card */
.hero-card {
    flex: 1 1 200px;         /* responsive width */
    min-width: 200px;
    max-width: 300px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease both, floatCard 6s ease-in-out infinite alternate;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* Video inside hero cards */
.hero-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

/* Specific heights for cards */
.card1, .card3 { height: 420px; }
.card2 { height: 610px; }

/* Column container for Card 2 + Button Card */


/* Button Card */
.button-card {
    background-color:#283891 ;
    color: #f79320;
    height: 140px;
    min-height: 140px;
    max-height: 140px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.button-card .card-text {
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.button-card .btn2 {
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: white;
    color: #6c63ff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-card .btn2:hover {
    background: #feca57;
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-card { flex: 1 1 45%; }
    .card2-column { gap: 8px; }
}

@media (max-width: 767px) {
    .hero-card { flex: 1 1 85%; }
    .button-card { height: 120px; min-height: 120px; max-height: 120px; }
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Video inside the card */
.hero-card video {
    width: 100%;
    /* full width of the card */
    height: 100%;
    /* full height of the card */
    object-fit: cover;
    /* cover entire card area */
    display: block;
    border-radius: inherit;
    /* match card's rounded corners */
}



/* Column for Card 2 + Button Card */
.card2-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* space between Card 2 and button card */
}

/* General card styling */
.hero-card {
    flex: 1 1 200px;
    min-width: 240px;
    max-width: 300px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Video cards */
.hero-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

/* Specific height adjustments */
.card1,
.card3 {
    height: 420px;
    /* full height */
}

.card2 {
    height: 410px;
    /* half height */
}

/* Button card */
.button-card {
/*     background: linear-gradient(135deg, #6c63ff, #ff6b6b);
 */    color: white;
    height: 100px;
    /* same as Card 2 for balance */
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.button-card .card-text {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.button-card .btn2 {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: white;
    color: #6c63ff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-card .btn2:hover {
    background: #feca57;
    color: #fff;
}



/* General card styling */
.hero-card {
    flex: 1 1 200px;
    min-width: 420px;
    max-width: 620px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-card1 {
    flex: 1 1 200px;
    min-width: 370px;
    max-width: 470px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-card1 video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.18);
}

/* Video cards */
.hero-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

/* Specific height adjustments */
.card1,
.card3 {
    height: 520px;
    
    /* full height */


    
}

/* Button card with smaller height */
.button-card {
     background-color:#283891 ;
    color: #f79320;
    
    height: 140px;
    /* smaller height */
    min-height: 140px;
    /* ensure flex doesn't stretch it */
    max-height: 140px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertically center content */
    align-items: center;
    box-sizing: border-box;
    /* padding included in height */
}

.button-card .card-text {
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
}

.button-card .btn2 {
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background-color: #f79320;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-card .btn2:hover {
    background: #feca57;
    color: #fff;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* fixes jump */
}

.dropdown-item:hover {
    color: #ffb84d !important;
    /* light orange */
    text-decoration: underline;

}

.head-text {
    font-family: 'Oooh Baby', sans-serif;
    /* stylish heading font */
    font-weight: 700;
    font-size: 48px;
    /* adjust size as needed */
    color: #283891;
    /* black color */
    line-height: 1.2;
    letter-spacing: 1px;
}

.sub-text {
    font-family: 'Roboto', sans-serif;
    /* clean subtext font */
    font-weight: 400;
    font-size: 20px;
    color: #000;
    /* black color */
    margin-top: 10px;
    letter-spacing: 0.5px;
}

/* Reset body styles */


/* Container for text */
.text-container {
  text-align: center;
  margin-top: 50px;
}

/* Headline */
.text-container {
  text-align: center;
  margin-top: 50px;
}

/* Typewriter text */
.head-text, .sub-text {
  font-family: 'Arial', sans-serif;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  font-weight: bold;
  border-right: 2px solid black; /* cursor */
  padding-right: 2px;
}
#head-text {
    font-size: clamp(30px, 6vw, 50px) !important;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #f79320;
   font-family: 'Oooh Baby', cursive;
    font-size: 55px;
 /*  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); */
}
#sub-text {
    font-size: clamp(15px, 4vw, 25px) !important;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 15px;
  color: #283891;
  font-family: 'Poppins', sans-serif;
/*   text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
 */}

/* Font sizes */
.head-text { font-size: 2.5rem; color: #000; }
.sub-text { font-size: 1.5rem; color: #000; margin-top: 10px; }

/* Blinking cursor */
/* @keyframes blink {
  0%, 50%, 100% { border-color: black; }
  25%, 75% { border-color: transparent; }
} */
.cursor-blink {
  animation: blink 0.8s step-start infinite;
}




.banner {
  background: #fff; /* white background */
  color: #111; /* dark text */
  text-align: center;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
}

.banner h1 {
  font-size: 3rem;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: 1px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat {
  background :#f79320; /* light gray card background */
  padding: 30px 40px;
  border-radius: 15px;
  min-width: 180px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.stat .count {
  font-size: 3rem;
  font-weight: bold;
  color: #283891;
  display: block;
}

.stat p {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #333;
}
/* MOBILE VIEW — show only card2 + button card */
@media (max-width: 768px) {

    /* Hide Card 1 */
    .card1 {
        display: none !important;
    }

    /* Hide Card 3 */
    .card3 {
        display: none !important;
    }

    /* Show card2 column (video + button) full width */
    .card2-column {
        width: 100%;
        display: flex !important;
    }

    /* Make card2 full width */
    .card2 {
        display: block !important;
        width: 100%;
    }

    /* Show button card */
    .button-card {
        display: flex !important; 
        width: 100%;
    }

    /* Optimize video size on mobile */
    .hero-card1.card2 video {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}
/* SECTION */
.client-section {
  padding: 50px 0;
  background: #FFF;
  overflow: hidden;
}

/* HEADER */
.clients-header {
  text-align: center;
  margin-bottom: 30px;
}

.clients-header p {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.clients-header span {
  max-width: 800px;
  display: block;
  margin: 0 auto;
  color: #555;
}

/* SLIDER WRAPPER */
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* TRACK */
.slide-track {
  display: flex;
  width: calc(360px * 20); /* slide width × total slides */
  animation: scroll 45s linear infinite;
}

/* SLIDE */
.slide {
  width: 360px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

/* IMAGE */
.slide img {
  width: 330px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.slide img:hover {
  transform: scale(1.1);
}

/* INFINITE SCROLL ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-360px * 10)); /* only original slides */
  }
}

/* OPTIONAL: PAUSE ON HOVER */
.slider:hover .slide-track {
  animation-play-state: paused;
}



