@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&display=swap');

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Afacad", sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 18px;
}


a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

ul {
    list-style: none;
}



/* Header Container */
.madds-header {
    width: 100%;
    position: relative;
    z-index: 10;
    margin-bottom: -120px;
}

.container {
    max-width: 80%;
    margin: auto;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;

}


.about-us .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}


/* Logo */
.logo img {
    height: 100px;
    object-fit: contain;
    padding: 3px 0 0;
}


/* SIDE MENU BASE */
.side-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 300px;
    height: 100%;
    background: #111;
    padding: 20px;
    transition: 0.4s ease;
    overflow-y: auto;
    z-index: 9999;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9990;
}

/* MOBILE MENU ITEMS */
.mobile-item {
    margin-bottom: 2px;
}

.mobile-link {
    font-family: "Afacad", sans-serif;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 12px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.mobile-link .arrow {
    transition: 0.3s;
}

/* SUBMENU COLLAPSE/EXPAND */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    padding-left: 10px;
}

/* OPENED SUBMENU */
.mobile-submenu.open {
    max-height: 100vh;
    opacity: 1;
    overflow-y: clip;
}

.mobile-submenu.open .mobile-link:hover {
    color: #dc89fa;
}

.mobile-submenu.open>a:hover {
    color: #eebeff;
}

.mobile-submenu a {
    display: block;
    padding: 8px 0;
    color: #ddd;
    text-decoration: none;
}



/* NAVIGATION */
.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}


.nav ul li>a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 5px;
    position: relative;
    white-space: nowrap;
}

/* Top & Bottom gradient borders */

.nav ul li>a::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}



.nav ul li>a::after {
    bottom: 0;
    transform-origin: left;

}

/* Hover animation */
.nav ul li>a:hover::after {
    transform: scaleX(1);

}

/* Active animation */
.nav ul li>a.active::after {
    transform: scaleX(1);
}



.mega-dropdown .mega-left h1 {
    line-height: 18px;
}

.mega-dropdown .mega-left h1 {
    color: #000;
    font-size: 1.5rem;
}

.mega-dropdown .mega-left h1 a {
    color: #000;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.25s ease;
}



.mega-dropdown .mega-left h1 a:hover {
    background: linear-gradient(90deg, #B51BB5 0%, #F0A400 35.58%, #AC20BC 65.87%, #43D2E0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 1.5rem;
}


.mega-dropdown .mega-left h1 a.no-gradient-hover:hover {
    color: #B51BB5;
    /* choose a fallback color */
}

.mega-columns .col a {
    color: #000;
    transition: all 0.3s ease;
    transform: translateX(5px);
}



.mega-columns .col a:hover {
    text-decoration: none;
    transform: translateX(15px);

}

.mega-columns .col a:hover .ab-icon img {
    animation: bounceIcon 0.6s ease forwards;

}

@keyframes bounceIcon {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0px);
    }
}

.mega-columns .col a:hover h2 {
    background: linear-gradient(90deg, #B51BB5 0%, #F0A400 35.58%, #AC20BC 65.87%, #43D2E0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-decoration: none;
}



/* DROPDOWN */
.dropdown {
    position: relative;
    padding: 40px 10px;
}

.dropdown-menu {
    position: absolute;
    top: 89px;
    left: 0;
    background: #ccc;
    min-width: 180px;
    padding: 12px 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
    transition-delay: 0s;
    /* closes immediately */
    border-radius: 0px;
}

/* SHOW WITH DELAY */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition-delay: 0.25s;
    z-index: 1;
    /* <<< OPEN DELAY HERE */
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #000;
    font-size: 15px;
}


/* RIGHT SIDE ACTIONS */
.quote-btn {
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, #b900ff, #0058ff);
    font-size: 15px;
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
    transition: 0.4s;

}

.quote-btn:hover {
    background: linear-gradient(90deg, #B51BB5 0%, #F0A400 35.58%, #AC20BC 65.87%, #43D2E0 100%);
    background-size: 400% 400%;
    animation: waveGradient 12s ease infinite;
}


.icon-btn {
    margin-left: 15px;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 20px;

}


/* SIDE MENU */
.side-menu {
    position: fixed;
    right: -350px;
    top: 0;
    width: 335px;
    height: 100%;
    background: #111;
    padding: 30px 25px;
    transition: 0.4s;
    z-index: 999;
}

.side-menu ul {
    margin-top: 40px;
    list-style: none;
}

.side-menu ul li {
    padding: 18px 0;
}

.side-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.close-btn {
    width: 35px;
    height: 35px;
    font-size: 25px;
    border: none;
    background: #333;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
}

/* DARK OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 900;
}


/* ---- MEGA DROPDOWN ---- */
.mega-dropdown {
    padding: 40px 10px;

}



/* MEGA MENU CONTAINER */
.mega-menu {
    position: absolute;
    left: 0;
    top: 106px;
    background: #fff;
    padding: 40px 40px;
    display: flex;
    gap: 5px;
    opacity: 0;
    min-width: 100%;
    width: 100%;
    z-index: 1;
    visibility: hidden;
    transform: translateX(20px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

}

/* SHOW MEGA MENU */
.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

/* LEFT SECTION */
.mega-left {
    width: 190px;
}


.mega-left h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
}

.mega-left h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #000;
}

/* COLUMNS */
.mega-columns {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: space-around;
}

.col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.col a {
    font-size: 15px;
    color: #000;
    text-decoration: none;
}

/* Hover effect */
.col a:hover {
    text-decoration: underline;
}

.col>h2 {
    color: #6d16a6;
    font-size: 22px;
    white-space: nowrap;
}

.col a h2 {
    font-size: 20px;
    white-space: nowrap;
    color: #000000;
    font-weight: normal;
}

.header-actions {
    display: flex;
    align-items: center;
}

.boldmenu a h2 {
    font-weight: bold;
}


.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    top: 6px;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-slider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 1400px;
}

.slide {
    display: none;
    animation: fade 1s ease-in-out;
    text-align: left;
}

.slide h1 {
    font-size: 4rem;
    font-weight: 500;
}

.slide p {
    font-size: 2rem;
    width: 42rem;
}

.slide.active {
    display: block;
}

.btn-now {
    background: transparent;
    padding: 15px 40px;
    border: 1px solid #fff;
    margin: 20px 0;
    color: #fff;
    cursor: pointer;
    transition: 0.4s;
}

.btn-now:hover {
    background-color: #fff;
    color: #000;
}


.maincontent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.small-hd ul {
    list-style: none;
    font-size: 2rem;
}


.about-section {
    background: linear-gradient(90deg, #B51BB5 0%, #F0A400 35.58%, #AC20BC 65.87%, #43D2E0 100%);
    background-size: 400% 400%;
    animation: waveGradient 12s ease infinite;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.about-wrapper {
    position: relative;
    padding: 3rem;
}

/* Flex Box */
.about-wrapper {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.about-img,
.about-content {
    flex: 1;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Headings */
.about-content h1 {
    font-size: 3rem;
    font-weight: normal;
    padding: 1rem 0;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: normal;
    padding: 1rem 0;
}

/* FIXED Responsive Border */
.about-section::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 65%;
    max-width: 100%;
    height: 68%;
    border: 5px solid transparent;
    border-image: linear-gradient(90deg, #ffffff 0%, #F0A400 35.58%, #AC20BC 65.87%, #ffffff 100%) 1;
    animation: waveGradient 12s ease infinite;
    z-index: -1;
    pointer-events: none;
    box-sizing: border-box;
}



.idea-content {
    color: #000;
    font-weight: normal;
}


.idea-content h1 {
    padding: 1rem 0;
}


.btn {
    display: inline-block;
    margin: 20px 0;
    padding: 12px 30px;
    background: linear-gradient(90deg, #B217BA, #2A7BFF);
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;

    /* smooth animation */
    transition:
        background-position 0.6s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
    background-size: 200% 100%;
    background-position: left center;
    will-change: transform;
}

.btn:hover {
    background-position: right center;
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}



.section {
    padding: 2rem 0;
}






.background-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-wrapper .background img {
    float: inline-end;
    margin-top: 0rem;
    margin-left: 0rem;
    margin-right: 10rem;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(80px) scale(0.95);
    position: absolute;
    width: 70%;
    height: 70%;

}

.parallax-content {
    position: absolute;
    padding: 0% 0 0 10%;
    max-width: 900px;
    color: #000000;
    opacity: 0;

}


.main-parallax {
    background: url(../images/parallax-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    color: #000;
    display: flex;
    justify-content: center;

}



.section-parallax {
    position: relative;
    inset: 0;
    min-height: 300vh;
    background: #8596bd;

}

.idea-content {
    width: 50%;
    max-width: 600px;
    z-index: 10;
}

.idea-img {
    width: 50%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.idea-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}


.section-8 .background-wrapper {
    position: relative !important;
}


.spe {
    color: #fff;
    font-weight: normal;
    background: linear-gradient(180deg, #511396 0%, #080A2B 100%);
    font-size: 1.2rem;
    padding: 5rem 0;
}

.spe-content {
    margin-right: 5rem;
}


.spe-img {
    display: flex;
    justify-content: center;
}

.spe-content h1 {
    font-size: 4rem;
    font-weight: normal;
}

.spe-content p {
    padding: 1rem 0;
}

/* Card Wrapper */
.hover-card {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    font-weight: normal;
    margin: 0 10px;

}

/* -----------------------------
   FIRST LAYER (DEFAULT VISIBLE)
   Moves UP on hover
------------------------------- */
.hover-card-first {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    padding: 25px;
    color: #fff;
    transition: transform 0.45s ease-in-out;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    animation: fade 1s ease-in-out;
}


.hover-card-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(to top, rgba(183, 0, 255, 0.9), rgba(1, 103, 255, 0.9));

    padding: 25px;
    color: #fff;
    transition: transform 0.45s ease-in-out;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    animation: fade 1s ease-in-out;
}



.hover-card h2 {
    font-size: 3rem;
}

.hover-card:hover .hover-card-first,
.hover-card:hover .hover-card-overlay {
    transform: translateY(-100%);
    animation: fade 0.45s ease-in-out;
}


.hover-expand-btn {
    margin-top: 20px;
    padding: 15px 40px;
    border: 1.5px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hover-expand-btn:hover {
    background: linear-gradient(90deg, #ffffff, #d4d4d4);
    transform: translateY(-5px);
    color: #000;
}



.mt-5 {
    margin-top: 3rem;
}


@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    background: white;
    opacity: 0.4;
    border-radius: 50%;
    cursor: pointer;
}

.hero-dots .dot.active {
    opacity: 1;
}


.main-header {
    background: #501395;
}



.other-slider {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;

}

/* Background Image */
.other-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark Overlay */
.other-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

/* Content Wrapper */
.about-hd {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: #fff;
    z-index: 2;
    width: 80%;
    padding: 0 10px;
    z-index: 0;
}

/* Title */
.about-hd h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Breadcrumb */
.text-hd ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-hd ul li {
    font-size: 1.1rem;
    opacity: 0.9;
}


.wrapper {
    display: flex;
    width: 85%
}

.content {
    flex: 1;
    padding: 60px;
    position: relative;
    overflow: hidden;
    background: #ffffffbf;
}

.main-cont {
    display: flex;
}

.text-cont,
.content-img {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text {
    position: absolute;
    opacity: 0;
    transform: translateX(-50px);
    transition: 0.5s ease;
}

.text.active {
    opacity: 1;
    transform: translateX(0);
}

.text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.text .line {
    opacity: 0;
    transform: translateY(15px);
    margin-bottom: 10px;
}

.text.active .line {
    animation: reveal 0.6s forwards;
}

.text.active .line:nth-child(2) {
    animation-delay: 0.2s;
}

.text.active .line:nth-child(3) {
    animation-delay: 0.4s;
}

.text.active .line:nth-child(4) {
    animation-delay: 0.6s;
}


@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-parallax .tabs {
    display: flex;
    justify-content: space-between;
}

.main-parallax .tab {
    flex: 1;
    writing-mode: vertical-rl;
    text-align: center;
    color: #fff;
    /* font-weight: bold; */
    cursor: pointer;
    transition: 0.3s;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 28px;
    letter-spacing: 5px;
    background: linear-gradient(to top, rgba(183, 0, 255, 0.9), rgba(1, 103, 255, 0.9));
}


.main-parallax .tab:nth-child(1),
.main-parallax .tab:nth-child(2),
.main-parallax .tab:nth-child(3),
.main-parallax .tab:nth-child(4),
.main-parallax .tab:nth-child(5),
.main-parallax .tab:nth-child(6),
.main-parallax .tab:nth-child(7) {
    background: linear-gradient(to top, rgba(183, 0, 255, 0.9), rgba(1, 103, 255, 0.9));
}



.main-parallax .tab.active {
    filter: brightness(1.2);
    background: linear-gradient(to top, rgb(32 115 255), rgb(0 58 175));
}

/* Mobile */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
    }

    .slide h1 {
        font-size: 1.8rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .maincontent {
        align-items: flex-start;
        flex-direction: column;
    }



    /* Layout */
    .wrapper {
        flex-direction: column;
        width: 100%;
    }

    .content {
        position: relative;
        min-height: auto;
    }

    .main-cont {
        flex-direction: column;
    }

    .text-cont,
    .content-img {
        width: 76%;
    }

    .content-img {
        margin-top: 20px;
    }

    /* Text animation positioning */
    .text {
        transform: translateY(20px);
    }

    .text.active {
        transform: translateY(0);
    }

    .text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .text .line {
        font-size: 14px;
    }

    /* Tabs */
    .main-parallax .tabs {
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .main-parallax .tabs::-webkit-scrollbar {
        display: none;
    }

    .main-parallax .tab {
        writing-mode: horizontal-tb;
        font-size: 14px;
        letter-spacing: 0px;
        padding: 15px 10px;
        height: auto;
        white-space: nowrap;
    }
}



/* start Swiper */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.swiper-slide img {
    display: block;
    width: 100%;
}



.spe .swiper-scrollbar-drag {
    background: #fff !important;

}

.spe .swiper-scrollbar {
    background: #ffffff5d;
}

.swiper-slide.swiper-slide-next:nth-child(2) {
    transform: translateX(20%);
}

.swiper-slide.swiper-slide-active:first-child {
    transform: translateX(30%);
    z-index: 1;
}

.swiper-slide {
    z-index: 1;
}

.spe .swiper-button-next,
.spe .swiper-button-prev {
    color: #fff !important;
}


.managed .swiper-button-next,
.managed .swiper-button-prev,
.managed .swiper-scrollbar {
    display: none;
}



/* End Swiper */



.customized {
    background: #F9F9F9;
    padding: 5rem 0;
    color: #000;
    font-weight: normal;
}

.container-div {
    max-width: 80%;
    margin: auto;
    padding: 0px;
    position: relative;
}

.costomized-head {
    text-align: center;

}

.costomized-head span {
    font-size: 3rem;
    position: relative;
    padding-left: 30px;
    /* space for icon */
    display: inline-block;
    color: #4A128C;
}

.costomized-head span::before {
    content: url("../images/circul-icon.png");
    position: absolute;
    left: 0;
    top: 26%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
}

.costomized-head h2 {
    font-size: 3rem;
    font-weight: normal;
}


.custom-tabs {
    padding: 60px 0;
    background: #f9f9f9;
}

.tabs-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* LEFT TABS */
.tab-list {
    list-style: none;
    padding: 0rem 5rem;
    width: 45%;
}

.tab-list .tab {
    padding: 18px 0;
    font-size: 2rem;
    border-bottom: 1px solid #e1e1e1;
    cursor: pointer;
    color: #bcbcbc;
    transition: color 0.3s ease;
    display: block;
    position: relative;
}

/* Default arrow */
.tab-list .tab::after {
    font-family: "Font Awesome 6 Free";
    content: "\f061";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-50px);
    font-size: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* ACTIVE TAB */
.tab-list .tab.active {
    font-weight: 600;
    background: linear-gradient(90deg, #B51BB5 0%, #F0A400 35.58%, #43D2E0 65.87%, #43D2E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ACTIVE ARROW */
.tab-list .tab.active::after {
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-50%) translateX(-25px);
}


/* RIGHT CONTENT */
.tab-content-wrapper {
    flex: 1;
    position: relative;
    min-height: 450px;
}

.tab-content {
    position: absolute;
    transition: opacity 0.5s ease;
    width: 100%;
    top: 0;
    text-align: center;
    visibility: hidden;
    opacity: 0;
}

.tab-content.active {
    position: relative;
    visibility: visible;
    opacity: 1;
}

/* IMAGE */
.tab-image {
    max-width: 800px;
    width: 100%;
    display: block;
    margin: 0 auto 20px;
}

/* DESCRIPTION */
.tab-desc {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 0 20px;
}

/* BUTTON */
.expand-btn {
    display: inline-block;
    margin: 25px 0;
    background: #3F01FA;
    color: #fff;
    padding: 12px 38px;
    text-decoration: none;
    font-size: 1rem;
}


.expand-btn:hover {
    background: #9f01fa;
}





/* Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Modal Box */
.modal-box {
    background: #ffffff;
    color: #000;
    width: 28%;
    max-width: 90%;
    padding: 35px 40px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.3s ease;


}

.modal-box h2 {
    padding: 20px 0;
    font-size: 2rem;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: -5px;
    right: -5px;
    cursor: pointer;
    font-size: 26px;
    font-weight: bold;
    background: linear-gradient(120deg, #b900ff, #0058ff);
    color: #ffffff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 2;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.submit-btn {
    padding: 18px 20px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    margin: 22px auto;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: linear-gradient(120deg, #b900ff, #0058ff);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* RESPONSIVE */
@media(max-width: 900px) {
    .tabs-container {
        display: block;
        align-items: center;
    }

    .tab-list {
        width: 100%;
        display: flex;
        justify-content: flex-start;

        overflow-x: auto;
        white-space: nowrap;
        padding: 0;
    }

    .tab {
        border-bottom: none;
        padding: 10px;
    }



}


.managed {
    background: linear-gradient(180deg, #2D0F62 0%, #102CBA 100%);
    padding: 5rem 0;
    color: #fff;
    font-weight: normal;
    height: 78vh;
}


.swiper-horizontal {
    position: absolute;
    margin: 5rem 0 0;
    z-index: 9;
    height: 34rem;
}



.managed .swiper-scrollbar-drag {
    background: #1329AF !important;

}

.managed .swiper-scrollbar {
    background: #cecece;
}


.technologies {
    padding-top: 18rem;
    height: 46rem;
    color: #000;
}

.swiper-slide img {
    display: block;
    width: 180px;
    height: 180px;
    object-fit: cover;
}



.technologies .swiper-horizontal {
    height: auto;
}



.technologies .swiper-slide.swiper-slide-active:first-child,
.technologies .swiper-slide.swiper-slide-next:nth-child(2) {
    transform: translateX(0%);
}



/* CTA Section */
.cta {
    background-image: url("../images/cta-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 0;
    position: relative;
    color: #fff;
    animation: bgMove 3s ease-in-out infinite alternate;
}

@keyframes bgMove {
    0% {
        background-position: center;
    }

    100% {
        background-position: center top;
    }
}


/* Heading */
.cta h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

/* Paragraph */
.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}


.cta-width {
    width: 50rem;
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 14px 52px;

    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #102CBA;
    color: #fff;
}


/* CTA Section */
.cta-about {
    background-image: url("../images/cta-about.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    position: relative;
    color: #fff;
    animation: bgMove 3s ease-in-out infinite alternate;
}

/* Heading */
.cta-about h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1.2;

}

/* Paragraph */
.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-about {
    text-align: center;
}


.expreanss {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 4rem 0 0;
    text-align: center;
}

.expreanss div {
    transition: transform 0.3s ease;
}

.expreanss div:hover {
    transform: translateY(-8px);
}

.expreanss h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
}

.expreanss p {
    font-size: 16px;
    color: #ffffff;
}

.ab-img img {
    width: 100%;
}


.costomized-head {
    flex: 1;
    min-width: 320px;
}




.costomized-head p.expand {
    max-height: 500px;
}



/* Right Icons List */

.whychooes {
    color: #000;
    padding: 60px 0;
}

.left-align {
    text-align: left;
}

.chooes-div {
    flex: 1;
    min-width: 330px;
    display: grid;
    gap: 25px;
}

.realtime {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    background: #f7f9ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.realtime:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.real-content h3 {
    margin-bottom: 6px;
    font-size: 20px;
    color: #122ab2;
}


.ab-div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: #000000;
    padding: 0 0 20px;
}

.ab-icon {
    width: 60px;
    margin-right: 10px;
}

.ab-icon img {
    width: 100%;
    display: block;
    transition: 0.4s ease;
}

.ab-topcont {
    width: 98%;
}

.ab-topcont h2 {
    font-size: 22px;
}

.specialisation .col .ab-icon {
    width: 45px;
    margin-right: 10px;
}

.specialisation .ab-div {
    align-items: center;
    padding: 0;
}

.border-left-1 {
    position: relative;
    padding-left: 25px;
}

.border-left-1::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 2px;
    height: 118%;
    background: #f3f3f3;
}




.contact-form {
    width: 60%;
    padding: 0 10px;
}

.contact-text {
    width: 100%;
    padding: 20px;
    background: linear-gradient(100deg, #a200ff, #0058ff);
    border-radius: 10px;
    margin: 0rem 0rem 1.5rem;
    color: #fff;
    font-size: 20px;
    box-shadow: 0px 5px 12px #747474;
}

.contact-text .add-div .icon-add svg {
    width: 22px;
    height: 22px;
}


.contact-text .add-div {
    padding: 0.5rem 0;
}

.contact-text .add-div .icon-add {
    width: 50px;
    height: 50px;
    padding: 5px;
    background: linear-gradient(90deg, #000000, #000d25);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border-radius: 100%;
}

.cont-div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 30px;
}

.contact-col {
    margin: 0 0 0 1rem;
}

.contact-col img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5px 12px #747474;
}

.butterfly {
    position: absolute;
    top: -63px;
    left: -194px;
    z-index: 999;
    height: 56rem;
}


.flipflop {
    width: 100%;
    height: 600px;
    perspective: 2000px;
}

.flip-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}

.flipflop:hover .flip-inner {
    transform: rotateY(180deg);
}

/* Common front/back styles */
.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* FRONT */
.flip-front {
    background: #f9f9f9;

}

/* BACK */
.flip-back {
    background: #f9f9f9;
    color: #131313;
    transform: rotateY(180deg);
    text-align: center;
}



/* Responsive */
@media (max-width: 992px) {
    .expreanss {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Layout */
    .wrapper {
        flex-direction: column;
        width: 100%;
    }

    .content {

        position: relative;
        min-height: auto;
    }

    .main-cont {
        flex-direction: column;
    }

    .content-img {
        margin-top: 20px;
    }

    /* Text animation positioning */
    .text {
        transform: translateY(20px);
    }

    .text.active {
        transform: translateY(0);
    }

    .text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .text .line {
        font-size: 14px;
    }

    /* Tabs */
    .main-parallax .tabs {
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .main-parallax .tabs::-webkit-scrollbar {
        display: none;
    }

    .main-parallax .tab {
        writing-mode: horizontal-tb;
        font-size: 14px;
        letter-spacing: 0px;
        padding: 15px 10px;
        height: auto;
        white-space: nowrap;
    }

    .about-section::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .expreanss {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Responsive */
@media (max-width: 768px) {
    .cta {
        padding: 60px 20px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .cta p {
        font-size: 16px;
    }
}


.testimonial {
    color: #000;
    text-align: center;
    padding: 3rem 0;
}

.testimonial h2 {
    font-size: 3rem;
    font-weight: normal;
}

.testimonial-bg {
    background: #0A0B2E;
    padding: 2rem;
    color: #fff;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.star-icon ul {
    list-style: none;
}

.star-icon ul li {
    display: inline;
    padding: 2px;
}

.star-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.test-content {
    text-align: left;
}

.signature {
    text-align: left;
}

.signature p {
    color: #FFD900;
}

.testimonial .swiper-slide.swiper-slide-active:first-child,
.testimonial .swiper-slide.swiper-slide-next:nth-child(2) {
    transform: translateX(0%);
}


.testimonial .swiper-horizontal {
    height: 25rem;
    margin-top: 0rem;
}


.main-blog {
    background: #F6F6F6;
    padding: 4rem 0;
    color: #000;
}

.blog-container {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.bl-div {
    background: #FFF;
    display: flex;
    width: 100%;
    padding-bottom: 6rem;
    flex-direction: column;
    align-items: center;
}

.blog-img {
    width: 100%;
}

.blog-img img {
    width: 100%;
}


.blog-content {
    width: 90%;
    height: 260px;
    background: #FFF;
    margin: -5rem;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.date-div {
    display: inline-flex;
    padding: 6px 18px 7px 17px;
    justify-content: center;
    align-items: center;
    background: #000;
    color: #fff;
}


footer {
    background: url(../images/ribon.png) no-repeat -20rem 20rem #0A0B2E;
    padding: 2rem 0 0;
}


.contact-div {
    background: linear-gradient(90deg, #B51BB5 0%, #F0A400 35.58%, #AC20BC 65.87%, #43D2E0 100%);
    background-size: 400% 400%;
    animation: waveGradient 12s ease infinite;
    padding: 1rem;
    display: flex;
    gap: 5px;
    justify-content: space-around;
}

@keyframes waveGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.add-div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer Wrapper */
.footer-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 60px 0;
    color: #fff;
}

/* Columns */
.footer-link .colume-4 {
    width: 23%;
    min-width: 250px;
}



/* Headings */
.footer-link .top-head h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #fff;
}

/* Paragraph */
.footer-link .link-list p {
    line-height: 1.6;
    color: #ccc;
}

/* Lists */
.footer-link .link-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link .link-list ul li {
    margin-bottom: 10px;
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
}


.footer-link .link-list ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link .link-list ul li a:hover {
    color: #fff;
    padding-left: 5px;
}


.copy-right {
    border-top: 1px solid #434343;
    padding: 1rem 0;
}

.social-media {
    display: flex;
    gap: 10px;
}

.icon-social {
    display: flex;
    width: 50px;
    height: 50px;
    padding: 12px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: 4px solid rgba(0, 38, 255, 0.12);
    background: #FFF;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Smooth hover effect */
.icon-social:hover {
    border-color: #b900ff;
    background: #b900ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.icon-social:hover svg path {
    fill: #ffffff;
}

.about-us {
    padding: 5rem 0;
    color: #000;
    background-color: #F5F5FF;
}

.container-col {
    max-width: 80%;
    margin: auto;
    padding: 0px;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    position: relative;
}

.about-us .costomized-head {
    text-align: left;
}

.ab-content {
    padding-left: 1rem;
}

.about-list {
    padding: 2rem 0;
}

.about-list ul li {
    position: relative;
    padding-left: 30px;
    /* space for icon */
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.about-list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    height: 21px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cpath d='M10.5 0L17.9246 3.07538L21 10.5L17.9246 17.9246L10.5 21L3.07538 17.9246L0 10.5L3.07538 3.07538L10.5 0Z' fill='%237311BD'/%3E%3Cpath d='M6.2 11.2L9 13.5L14 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-size: contain;
    background-repeat: no-repeat;
}

.about-us .costomized-head p {
    padding: 1rem 0;
}

.col-left-right {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}


.about-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.abt-icon {
    background: #fff;
    padding: 1rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin: 10px 0;
}

.about-company {
    color: #000;
    padding: 2rem 0;
    background: url("../images/explore-bg.png") center center no-repeat;
}

.center {
    text-align: center;
}

.cta-video img {
    width: 100%;
}

/* ---------------------------------------------------------
   RESPONSIVE NAVIGATION + HEADER LAYOUT
---------------------------------------------------------- */

/* TABLET & MOBILE */


@media(max-width: 1200px) {
    .nav ul {
        gap: 25px;
    }

    .about-section .container,
    .section .container {
        display: block;
    }




    .cta-width {
        width: 100%;
    }


    .contact-div {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .technologies {
        height: auto;
        padding: 3rem 0;
    }

    .testimonial .swiper-horizontal {
        height: 28rem;
    }




    .blog-content h2 {
        font-size: 1rem;
    }

    .expand-btn {
        padding: 12px 20px;
    }

    .madds-header {
        background: #401380;
        margin-bottom: -5px;
    }


}

@media(max-width: 1025px) {

    .nav {
        display: none;
    }

    .tab-list .tab {
        padding: 18px;
        font-size: 18px;
    }

    .tab-list {
        padding: 0;
    }
}

@media(max-width: 992px) {


    .nav {
        display: none;
    }

    .quote-btn {
        display: none;
    }


    .madds-header .container {
        padding: 12px 0px;
    }



    .icon-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
        margin-left: 10px;
    }




    .mega-dropdown {
        padding: 15px 0;
    }

    .mega-columns {
        flex-direction: column;
        gap: 18px;
    }

    .mega-left {
        width: 100%;
        margin-bottom: 15px;
    }

    .about-section .container,
    .section .container {
        display: block;
    }

    .cta-width {
        width: 100%;
    }


    .contact-div {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .technologies {
        height: auto;
        padding: 3rem 0;
    }

    .testimonial .swiper-horizontal {
        height: 28rem;
    }




    .blog-content h2 {
        font-size: 1rem;
    }

    .expand-btn {
        padding: 12px 20px;
    }

    .madds-header {
        background: #401380;
        margin-bottom: -5px;
    }

    .idea-img img {
        width: 100%;
    }

    .hover-card {
        width: 100%;
    }

    .blog-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .managed {
        height: 100%;
    }

    .copy-right .container {
        display: block;
    }

    .text-copy {
        text-align: center;
    }

    .social-media {
        margin-top: 1rem;
        justify-content: center;
    }

    .bl-div {

        margin-bottom: 1rem;
        width: 430px;
    }

    .swiper-slide.swiper-slide-active:first-child,
    .swiper-slide.swiper-slide-next:nth-child(2) {
        transform: translateX(0%);
    }

    .tab-image-icon {
        max-width: 340px;
        display: block;
        margin: 0 auto 20px;
    }

    .spe-content h1 {
        font-size: 3rem;
    }

    .spe-content {
        margin-right: 0;
    }

    .container-col {
        display: block;
    }

    .ab-content {
        padding: 4rem 0;
    }

    .tab-list .tab::after {
        display: none;
    }

    .hover-card h2 {
        font-size: 20px;
    }

    .hover-card p {
        font-size: 10px;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

/* ---------- MOBILE < 768px ---------- */
@media(max-width: 768px) {

    .footer-link {
        flex-direction: column;
        padding: 40px 20px;
    }

    .footer-link .colume-4 {
        width: 100%;
    }

    .madds-header .container {
        padding: 10px 15px;
        justify-content: space-between;
    }

    .logo img {
        height: 42px;
    }

    .icon-btn {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    /* Side menu optimization */
    .side-menu {
        width: 270px;
        right: -300px;
        padding: 25px 20px;
    }

    .side-menu ul li {
        padding: 15px 0;
    }

    .side-menu ul li a {
        font-size: 16px;
    }

    /* Mega menu headings */
    .mega-left h3 {
        font-size: 20px;
    }

    .mega-left h4 {
        font-size: 16px;
    }

    .col a {
        font-size: 14px;
    }


}



@media only screen and (min-width: 769px) {
    .swiper-slide:first-child {
        transition: transform 100ms;
    }

    .swiper-slide:first-child img {
        transition: box-shadow 500ms;
    }

    .swiper-slide:nth-child(2) {
        transition: transform 100ms;
    }



    .swiper[dir="rtl"] .swiper-slide.swiper-slide-active:first-child {
        transform: translateX(-50%);
    }

    .swiper[dir="rtl"] .swiper-slide.swiper-slide-next:nth-child(2) {
        transform: translateX(-55%);
    }

}

/* ---------- SMALL MOBILE < 520px ---------- */
@media(max-width: 520px) {

    .madds-header .container {
        padding: 8px 0px 0px;
    }

    .logo img {
        height: 60px;
    }

    .icon-btn {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .side-menu {
        width: 240px;
    }

    .side-menu ul li a {
        font-size: 15px;
    }

    .testimonial .swiper-horizontal {
        height: 30rem;
    }

    .tab-image-icon {
        max-width: 300px;
        display: block;
        margin: 0 auto 20px;
    }

    .madds-header {
        background: #401380;
        margin-bottom: -7px;
    }

    .bl-div {
        width: 100%;
    }

    .madds-header .container,
    .main-header .container {
        max-width: 98%;
    }

    .tab-list .tab {
        font-size: 1.2rem;
        padding: 1rem 0.5rem;
    }

    .container-div,
    .container-col {
        max-width: 90%;
    }

    .col-left-right {
        display: block;
    }

    .about-company .costomized-head h2 {
        font-size: 2rem;
    }

    .costomized-head span {
        padding-left: 22px;
    }

    .costomized-head span::before {
        width: auto;
    }

    .about-section::after {
        display: none;
    }

    .blog-content {
        height: 200px;
    }


    .background-wrapper .background img {
        float: none;
        width: 100%;
    }

    .section-8 .parallax-content {
        transform: translate3d(0px, 0px, 0px) !important;

    }


}