/* Imports from the first CSS file */
@import 'https://unpkg.com/open-props' layer(design.system);
/* @import 'https://unpkg.com/open-props/normalize.dark.min.css' layer(base.normalize); */
@import 'https://www.unpkg.com/layout-craft@0.1.1/dist/utilities.css' layer(design.utilities);

html {
  scroll-behavior: smooth;
}

.void {
    width: 100%;
    height: 40vw;
    margin: auto;
    position: relative;
    margin-top:3.8vw;
    aspect-ratio: 1 / 1;
}

ul:hover * {
    animation-play-state: paused;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    height: 40vw;
    aspect-ratio: 1 / 1;
    /*outline: 2px dotted magenta;*/
    z-index: 1;
}
.card-list{
    --count: 8;
}
li {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    animation: rotateCW calc(var(--rotate-speed) * 1s) var(--easing) infinite;
}

.card {
    width: 27%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.6vw 2.4vw;
    gap: 8px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1), 0px 16px 32px rgba(0, 0, 0, 0.1);
    border-radius: 1.2vw;
    font-family: "Quicksand", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 0.8vw;
    line-height: 1vw;
    color: #535062;
    animation: rotateCCW calc(var(--rotate-speed) * 1s) var(--easing) infinite;
}

a {
    text-decoration: none;
    color: unset;
}

.model-name {
    font-weight: 500;
    font-size: 1.1vw;
    line-height: 150%;
    color: #170f5f;
    display: block;
}

svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Animation delays for rotating elements */
li:nth-child(2), li:nth-child(2) .card { animation-delay: calc((var(--rotate-speed)/var(--count)) * -1s); }
li:nth-child(3), li:nth-child(3) .card { animation-delay: calc((var(--rotate-speed)/var(--count)) * -2s); }
li:nth-child(4), li:nth-child(4) .card { animation-delay: calc((var(--rotate-speed)/var(--count)) * -3s); }
li:nth-child(5), li:nth-child(5) .card { animation-delay: calc((var(--rotate-speed)/var(--count)) * -4s); }
li:nth-child(6), li:nth-child(6) .card { animation-delay: calc((var(--rotate-speed)/var(--count)) * -5s); }
li:nth-child(7), li:nth-child(7) .card { animation-delay: calc((var(--rotate-speed)/var(--count)) * -6s); }
li:nth-child(8), li:nth-child(8) .card { animation-delay: calc((var(--rotate-speed)/var(--count)) * -7s); }

/* Keyframe animations */
@keyframes rotateCW {
    from { transform: translate3d(0px, -50%, -1px) rotate(-45deg); }
    to { transform: translate3d(0px, -50%, 0px) rotate(-315deg); }
}

@keyframes rotateCCW {
    from { transform: rotate(45deg); }
    to { transform: rotate(315deg); }
}

@keyframes pulseGlow {
    from { background-size: 60%; }
    to { background-size: 100%; }
}

/* Root variables and basic resets */
:root {
    /* Variables from the first CSS file */
    --surface-1: rgb(255, 255, 255);
    --surface-2: oklch(0.19 0 0);
    --surface-3: #ffffff;
    --text-1: white;
    --brand-1: #170F5F;
    --brand-2: oklch(0.77 0.1 90);
    --nav-block-size: 3.75rem;

    /* Variables from the second CSS file */
    --rotate-speed: 40;
    --count: 8;
    --easeInOutSine: cubic-bezier(0.37, 0, 0.63, 1);
    --easing: cubic-bezier(0.000, 0.37, 1.000, 0.63);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Quicksand", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Layer definitions from the first CSS file */
@layer base.normalize-overrides {
    :root {
        font-family: 'Inter', sans-serif;
    }

    @media (width >= 1024px) {
        :root {
            --nav-block-size: 4.625rem;
        }
    }

    html {
        scroll-padding-block-start: var(--nav-block-size);
    }
}
.Content {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 90vh;
}
.Hero
{
    width:80vw;
}

.Content > div {
  scroll-snap-align: start;
  height: 60vh; 
  padding:1vw;
}
/*.Wrapper{*/
/*    height:90vh;*/
/*}*/
.Visual {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-left:3vw;
  /*overflow: hidden;*/
}

.Visual img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.block {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  
}

.block.animate {
  opacity: 1;
  transform: translateY(0);
  width:40vw;
}
@layer base.containers {
    main {
        background-color: var(--surface-3);
        color: #170F5F;
    }

    .Hero {
        @media (width >= 1024px) {
            grid-template-columns: 1.5fr 1fr;
            --_gap: var(--size-10);
        }
    }
}

@layer base.components {
    .Visual {
        & img {
            inline-size: 100%;
            block-size: 100%;
            object-fit: cover;
            object-position: center center;
            background: var(--gradient-8);
        }

        @media (width >= 1024px) {
            position: fixed;
            inline-size: 62%;
            block-size: calc(100dvb - var(--size-9));
            inset-block-start: var(--size-9);

            > * {
                grid-area: 1/1;
            }

            & img {
                border-radius: inherit;
            }

            & picture {
                max-inline-size: 26vw;
                aspect-ratio: var(--ratio-square);
                border-radius: var(--radius-3);
                margin-top:-18vw;
            }
        }

        @media (1024px < width < 1440px) {
            & img {
                max-inline-size: 500px;
            }
        }

        @media (width < 1024px) {
            > * {
                min-block-size: calc(100dvb - var(--size-9));
            }

            picture {
                inline-size: 100%;
                block-size: 100%;
            }
        }
    }

    .Content {
        > * {
            min-block-size: calc(100dvb - var(--size-9));
        }

        & h3 {
            max-inline-size: 13ch;
            text-wrap: balance;
            font-size: 2.5vw;
            font-weight: var(--font-weight-7);
            line-height: var(--font-lineheight-0);
            padding-block-end: var(--size-4);
        }

        & p {
            max-inline-size: var(--size-content-2);
            /*font-size: var(--font-size-3);*/
            font-size:1vw;
        }

        .subhead {
            color: var(--brand-1);
            font-size: var(--font-size-6);
            font-weight: var(--font-weight-6);
            max-inline-size: var(--size-content-1);
            line-height: var(--font-lineheight-1);
            text-wrap: pretty;
        }

        @media (width < 1024px) {
            display: none;
        }

        @media (width < 1440px) {
            & h3 {
                font-size: var(--font-size-7);
            }

            .subhead {
                font-size: var(--font-size-5);
            }
        }
    }

    .SmallScreenContent {
        position: fixed;
        inset-inline: 0;
        inset-block-start: 0;
        min-block-size: var(--size-9);
        color: black;

        > * {
            grid-area: 1/1;
        }

        @media (width < 1024px) {
            background-color: black;

            > p {
                background-color: black;
                color: white;
                inline-size: 100%;
                text-align: center;
                padding: var(--size-2);
                font-weight: var(--font-weight-5);
                box-shadow: var(--shadow-1);
            }
        }

        @media (width >= 1024px) {
            display: none;
        }
    }
}

/* Styles from the second CSS file */


/* Circular elements */
.center-circle {
    position: absolute;
    width: 15vw;
    aspect-ratio: 1 / 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    box-shadow: 0px 18px 36px -18px rgba(12, 5, 46, 0.3), 0px 30px 60px -12px rgba(12, 5, 46, 0.25);
    border-radius: 50%;
}

.center-circle img {
  object-fit: contain;
  border-radius: 50%;
  width: 90%;
  margin-left:1vw;
  margin-top:1vw;
}


.second-circle {
    position: absolute;
    width: 40%;
    aspect-ratio: 1 / 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #F5F4FE;
    opacity: 0.5;
    box-shadow: 0px 18px 36px -18px rgba(12, 5, 46, 0.3), 0px 30px 60px -12px rgba(12, 5, 46, 0.25);
    border-radius: 50%;
}

.last-circle {
    position: absolute;
    width: 66%;
    aspect-ratio: 1 / 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #F5F4FE;
    opacity: 0.25;
    box-shadow: 0px 18px 36px -18px rgba(12, 5, 46, 0.3), 0px 30px 60px -12px rgba(12, 5, 46, 0.25);
    border-radius: 50%;
}

/* Mask and gradient effects */
.crop {
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1));
}

.mask {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    animation: pulseGlow 5s linear infinite alternate;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-image: radial-gradient(100% 50% at 100% 50%, #170f5f 0%, rgba(60, 26, 229, 0.247904) 11.79%, rgba(59, 26, 229, 0.241896) 21.38%, rgba(58, 26, 229, 0.2324) 29.12%, rgba(57, 26, 229, 0.219837) 35.34%, rgba(55, 26, 229, 0.20463) 40.37%, rgba(53, 26, 229, 0.1872) 44.56%, rgba(51, 26, 229, 0.16797) 48.24%, rgba(48, 26, 229, 0.147363) 51.76%, rgba(46, 26, 229, 0.1258) 55.44%, rgba(44, 26, 229, 0.103704) 59.63%, rgba(41, 26, 229, 0.0814963) 64.66%, rgba(39, 26, 229, 0.0596) 70.88%, rgba(36, 26, 229, 0.038437) 78.62%, rgba(34, 26, 229, 0.0184296) 88.21%, rgba(32, 26, 229, 0) 100%);
}

.mask:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    right: 0;
    display: block;
    background-image: linear-gradient(180deg, rgba(60, 26, 229, 0) 0%, #170f5f 50%, rgba(60, 26, 229, 0) 100%);
}

/* Image container styles */
.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    display: block;
    max-width: 100%;
    height: auto;
}

.image-container::before,
.image-container::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 100px;
    background: rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.image-container::before {
    top: -20px;
    left: -20px;
    border-left: 1px solid rgba(23, 15, 95, 0.7);
    border-top: 1px solid rgba(23, 15, 95, 0.7);
    box-shadow: inset -90px 50px 50px 0px rgba(23, 15, 95, 0.3);
}

.image-container::after {
    bottom: -20px;
    right: -20px;
    border-right: 1px solid rgba(23, 15, 95, 0.7);
    border-bottom: 1px solid rgba(23, 15, 95, 0.7);
    box-shadow: inset -90px 50px 50px 0px rgba(23, 15, 95, 0.3);
}

.mask > iframe {
    width: 70%;
    height: 40%;
    position: absolute;
    top: 33%;
    left: 10%;
    border: 0;
}
@supports (animation-timeline: scroll()) {
    @layer animation.ScrollDriven {
        @media (width >= 1024px) {
            body {
                timeline-scope: --first-lockup, --second-lockup, --third-lockup;
            }

            picture {
                inline-size: 400px;
                transform-origin: bottom left;

                > img {
                    box-shadow: var(--shadow-4);
                }
            }

            .FirstPic {
                > img {
                    rotate: 0deg;
                }
            }

            .SecondPic {
                animation: auto slide-out-rotate linear both;
                animation-timeline: --third-lockup;

                > img {
                    rotate: 0deg;
                }
            }

            .ThirdPic {
                animation: auto slide-out-rotate linear forwards;
                animation-timeline: --second-lockup;

                > img {
                    rotate: 0deg;
                }
            }

            .FirstLockup {
                view-timeline-name: --first-lockup;
            }

            .SecondLockup {
                view-timeline-name: --second-lockup;
            }

            .ThirdLockup {
                view-timeline-name: --third-lockup;
            }
        }
    }
    
    @media (width >= 1440px) {
        .Visual picture {
            inline-size: 29vw;
            margin-top:-18vw;
        }
    }
    @media (width >= 1280px) {
        .Visual picture {
            inline-size: 29vw;
            margin-top:-18vw;
        }
    }
    @media (width >= 1600px) {
        .Visual picture {
            inline-size: 45vw;
            margin-top:-18vw;
        }
    }

    @media (width < 1024px) {
        body {
            timeline-scope: --first-pic, --second-pic, --third-pic;
        }

        .SmallScreenContent {
            > p {
                animation: auto reveal linear both;
                animation-range: cover 45%;
            }

            .FirstStory {
                animation-timeline: --first-pic;
            }

            .SecondStory {
                visibility: hidden;
                animation-timeline: --second-pic;
            }

            .ThirdStory {
                visibility: hidden;
                animation-timeline: --third-pic;
            }
        }

        .FirstPic {
            view-timeline-name: --first-pic;
        }

        .SecondPic {
            view-timeline-name: --second-pic;
        }

        .ThirdPic {
            view-timeline-name: --third-pic;
        }
    }

    
}

@supports not (animation-timeline: scroll()) {
    .pagination {
        display: none;
    }
}

@keyframes slide-out-rotate {
    50%,
    100% {
        transform: translate(-50%, 50%) rotate(-50deg);
    }

    40%,
    100% {
        opacity: 0;
    }
}

@keyframes reveal {
    to {
        visibility: visible;
    }
}

@keyframes highlight {
    50% {
        background-color: #170F5f;
    }
}

.filtered-image {
    position: relative;
    display: inline-block;
    z-index: 1 ;
    width: 100%;
  }
  
  .filtered-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
  }
  .aboutdiv{
    display: flex;
    margin-top: -15px;
    align-items: center;
  }
  .adtcontent{
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top:180px;
    z-index: 1;
  }
  .adtpara1{
    z-index: 1;
    text-align: center;
    color: #170F5F;
    font-size:3vw;
    font-weight: 500;
    margin-top: -130px;
  }
  .adtpara2{
    font-size: 25px;
    color: #170F5F;
    width: 800px;
    margin-top: 10px;
    font-weight: 500;
  }
  .adtpara3{
    margin-top: 20px;
    font-size: 25px;
    color: #3c3c3c;
    font-weight:450;
    text-align: left;
  }
  .abtimg{
    width: 100%;
    background-size: cover;
    height: 30vh;
  }
  .missiondiv{
    display: flex;
    justify-content: center;
    background-color: white;
    z-index: 1;
    margin-top:50px;
  }
  .missiondiv2{
    width: 100%; z-index: 1; background-color: white; height: 300px; padding-top: 50px; margin-top: -5px;
  }
  .missionpara1{
    font-weight: 600;
    font-size: 2vw;
    color: #170f5f;
    text-align: center;
  }
  .missionpara2{
    font-size: 1.1vw;
    margin-top: 2vw;
    color: #3c3c3c;
    text-align: center;
    line-height: 1.6vw;
    width: 70vw;
    margin-left: auto;
    margin-right: auto;
    font-weight: 450;
  }
  .core{
    font-size: 3vw;
    z-index: 1;
    font-weight: 600;
    color: white;
    margin-top: -20vw;
    margin-left:1vw;
  }
  .contentpara1{
    color: #3c3c3c; font-weight: 450; line-height: 1.3vw;  text-align: left;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-spacing: -3px;
  }
  .contentpara2{
    color: #3c3c3c; font-weight: 450; line-height: 1.3vw;  text-align: left;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-spacing: -3px;
  }
  .contentpara3{
    color: #3c3c3c; font-weight: 450; line-height: 1.3vw;  text-align: left;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-spacing: -2.8px;
  }
  .globaldiv{
    background-color: #170f5f; display: flex; gap: 5vw; z-index: 1; justify-content: center; padding: 3vw 4vw; position: relative;
  }
  .globaldiv123{
    background-color: #ffffff; display: flex; gap: 5vw; z-index: 1; justify-content: center; padding: 5vw 6vw; position: relative; margin-top: -12vw;
  }
  .globaldiv1{
    width: 40vw;
    margin-top: 4.5vh; 
    }
  .globepara1{
    font-weight: 600;
    font-size: 2vw;
    color: #ffffff;
  }
  .globepara12{
    font-weight: 600;
    font-size: 2vw;
    color: #170f5f;
  }
  .globepara2{
    font-size: 1.1vw;
    line-height: 1.7vw; color: #ffffff;
    font-weight:450;
    text-align: left;
  }
  .globepara23{
    font-size: 1.1vw;
    line-height: 1.6vw; color: #3c3c3c;
    font-weight:450;
    text-align: left;
  }
  .vodi{
    z-index: 1; background-color: white;
  }
  .achievement{
    font-size: 2vw; margin-top: 2vw; margin-left: 9.5vw; color: #170F5F; font-weight: 600;
  }
  .inndiv{
    background-color: #ffffff; display: flex; gap: 5vw; z-index: 1; justify-content: center; padding: 12vw 6vw; position: relative;
  }
  .inndiv1{
    width: 40%; margin-top: 30px;
  }
  .innpara1{
    font-weight: 600;
    font-size: 2vw;
    color: #170f5f;
  }
  .innpara2{
    font-size: 1.1vw; text-align: left; line-height: 1.6vw; color: #3c3c3c; font-weight: 450;
  }
  .inimg{
    width: 30vw;
    height: 20vw;
  }
  .corehead{
    font-size: 30px; color: #170f5f; text-align: center; font-weight: 700; padding-top: 40px; display: none;
  }
  .imgcont{
      width:35vw;
  }
  @media (max-width: 767px) {
    .center-circle
    {
        width:27vw;
    }
    .center-circle img
    {
        margin-top:2.5vw;
    }
    body{
        overflow-x: hidden !important;
        margin-left: 10px ;
    }
    .filtered-image{
        z-index:0;
    }
    .aboutdiv{
        margin-top:10px !important;
    }
    .adtpara1{
      font-size: 30px !important;
      margin-top:-100px;
      width:25vw;
    }
    .adtcontent{
      margin-top: 120px;
    }
    .abtimg{
      height: 130px;
      margin-top:-7vw;
      
    }
    .adtpara2{
      font-size: 15px;
      width: 380px;
    }
    .adtpara3{
      font-size: 15px;
    }
    .missiondiv2{
      padding: 20px 20px 0px 20px;
      height: auto;
    }
    .missionpara1{
      font-size: 30px;
    }
    .missionpara2{
      font-size: 3.1vw;
      width: 90%;
      line-height:4vw;
      text-align: center;
    }
    .imgcont{
        width:90vw;
        margin-top:-1.3vw;
    }
    .inline{
      display: none;
    }
    .corehead{
      display: block;
    }
    .globaldiv{
      flex-direction: column;
      margin-top: -150px;
      z-index:0;
      padding: 20px 20px;
    }
     .globaldiv123{
      flex-direction: column;
      margin-top: -150px;
      z-index:0;
      padding: 20px 20px;
    }
    .globaldiv1{
      width: 100%;
    }
    .globepara1{
      font-size: 30px;
      text-align: center;
    }
    .globepara12{
      font-size: 30px;
      text-align: center;
    }
    .globepara2{
      font-size: 3.2vw;
      width: 93%;
      margin-left: auto;
      line-height:5.5vw;
      text-align:center;
      margin-right: auto;
    }
    .globepara23{
      font-size: 3.7vw;
      width: 93%;
      margin-left: auto;
      line-height:5.5vw;
      text-align:center;
      margin-right: auto;
    }
    .image-container{
      scale:0.9;
  }
  .void{
    scale: 0.6;
    width: 165vw;
    overflow: hidden;
    margin-left: -35vw;
    margin-top: -10vw;
  }
  .achievement{
    font-size: 10vw;
    margin-left: 40px;
  }
  .inndiv{
    flex-direction: column;
    margin-top: -5vw;
    padding:0px 20px;
    gap:30px;
  }
  .inimg{
    width:90vw;
    height:60vw;
  }
  .inndiv1{
    width: 100%;
    margin-top: 10px;
  }
  .innpara1{
      font-size: 30px;
      text-align: center;
    }
    .innpara2{
      font-size: 3.7vw;
      width: 90%;
      text-align:center;
      padding-bottom:40px;
      margin-left: auto;
      margin-right: auto;
      line-height:5.5vw;
    }
    .void{
        margin-top:-1vw;
        height:110vw;
        margin-top: -10vw;
    }
    ul
    {
        height:110vw;
    }
    
    
    .card
    {
        font-size:2.5vw;
        line-height:2.9vw;
    }
    
.model-name {
    font-size:3vw;
}
    
    /* Animation delays for rotating elements */
li:nth-child(2), li:nth-child(2) .card { animation-delay: calc((var(--rotate-speed)/var(--count)) * 5s); }
li:nth-child(3), li:nth-child(3) .card { animation-delay: calc((var(--rotate-speed)/var(--count)) * 10s); }
li:nth-child(4), li:nth-child(4) .card { animation-delay: calc((var(--rotate-speed)/var(--count)) * 15s); }
li:nth-child(5), li:nth-child(5) .card { animation-delay: calc((var(--rotate-speed)/var(--count)) * 20s); }
li:nth-child(6), li:nth-child(6) .card { animation-delay: calc((var(--rotate-speed)/var(--count)) * 25s); }
li:nth-child(7), li:nth-child(7) .card { animation-delay: calc((var(--rotate-speed)/var(--count)) * 30s); }
li:nth-child(8), li:nth-child(8) .card { animation-delay: calc((var(--rotate-speed)/var(--count)) * 35s); }


  }



  .blog-slider {
    width: 95%;
    position: relative;
    max-width: 800px;
    margin: auto;
    background: #fff;
    box-shadow: 0px 14px 20px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 25px;
    height: 400px;
    transition: all 0.3s;
    display: none;
  }
  @media screen and (max-width: 992px) {
    .blog-slider {
      max-width: 680px;
      height: 400px;
    }
  }
  @media screen and (max-width: 768px) {
    .blog-slider {
      min-height: 500px;
      height: auto;
      margin: 180px auto;
    }
  }
  @media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider {
      height: 350px;
    }
  }
  .blog-slider__item {
    display: flex;
    align-items: center;
  }
  @media screen and (max-width: 768px) {
    .blog-slider {
        display: block;
      }
    .blog-slider__item {
      flex-direction: column;
    }
  }
  .blog-slider__item.swiper-slide-active .blog-slider__img img {
    opacity: 1;
    transition-delay: 0.3s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > * {
    opacity: 1;
    transform: none;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
    transition-delay: 0.3s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
    transition-delay: 0.4s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
    transition-delay: 0.5s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
    transition-delay: 0.6s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
    transition-delay: 0.7s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
    transition-delay: 0.8s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
    transition-delay: 0.9s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
    transition-delay: 1s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
    transition-delay: 1.1s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
    transition-delay: 1.2s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
    transition-delay: 1.3s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
    transition-delay: 1.4s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
    transition-delay: 1.5s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
    transition-delay: 1.6s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
    transition-delay: 1.7s;
  }
  .blog-slider__img {
    width: 300px;
    flex-shrink: 0;
    height: 300px;
    background-image: linear-gradient(147deg, #000033 0%, #000066 74%);
    box-shadow: 4px 13px 30px 1px rgba(15, 17, 153, 0.2);
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
  }
  .blog-slider__img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%); */
    border-radius: 20px;
    opacity: 0.8;
  }
  .blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    border-radius: 20px;
    transition: all 0.3s;
  }
  @media screen and (max-width: 768px) {
    .blog-slider__img {
      transform: translateY(-50%);
      width: 90%;
    }
  }
  @media screen and (max-width: 576px) {
    .blog-slider__img {
      width: 95%;
    }
  }
  @media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider__img {
      height: 270px;
    }
  }
  .blog-slider__content {
    padding-right: 25px;
  }
  @media screen and (max-width: 768px) {
    .blog-slider__content {
      margin-top: -80px;
      text-align: center;
      padding: 0 30px;
    }
  }
  @media screen and (max-width: 576px) {
    .blog-slider__content {
      padding: 0;
    }
  }
  .blog-slider__content > * {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s;
  }
  .blog-slider__code {
    color: #7b7992;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
  }
  .blog-slider__title {
    font-size: 24px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 20px;
  }
  .blog-slider__text {
    color: #4e4a67;
    margin-bottom: 30px;
    line-height: 1.5em;
  }
  .blog-slider__button {
    display: inline-flex;
    background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
    padding: 15px 35px;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
  }
  @media screen and (max-width: 576px) {
    .blog-slider__button {
      width: 100%;
    }
  }
  .blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
  }
  .blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50%;
    bottom: auto !important;
    transform: translateY(-50%);
  }
  @media screen and (max-width: 768px) {
    .blog-slider__pagination {
      transform: translateX(-50%);
      left: 50% !important;
      top: 205px;
      width: 100% !important;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 0;
  }
  @media screen and (max-width: 768px) {
    .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
      margin: 0 5px;
    }
  }
  .blog-slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: #062744;
    opacity: 0.2;
    transition: all 0.3s;
  }
  .blog-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #170f5f;
    height: 30px;
    box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
  }
  @media screen and (max-width: 768px) {
    .blog-slider__pagination .swiper-pagination-bullet-active {
      height: 11px;
      width: 30px;
    }
  }
  
  
  .carousel {
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 40%;
    margin-top:6vw;
    height: 40vh;
}
.carousel-content {
    display: flex;
    transition: transform 500ms ease;
    height: 80%;
}
.carousel-content img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    flex-shrink: 0;
}
.carousel .carousel-control-left,
.carousel .carousel-control-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    cursor: pointer;
    z-index: 2;
    height:80%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: background 0.3s;
}
.carousel .carousel-control-left:hover,
.carousel .carousel-control-right:hover {
    background: rgba(0, 0, 0, 0.3);
}
.carousel .carousel-control-left {
    left: 0;
}
.carousel .carousel-control-right {
    right: 0;
}
@media (max-width: 767px) {

    .carousel{
        width:100%;
        height: 20vh;
        margin-top:20px;
    }
    .carousel-content{
        height:100%;
    }
}

  .loading-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #170f5f; /* semi-transparent white */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    perspective: 1000px; /* Add perspective for 3D effect */
}

.loading-transition.active {
    opacity: 1;
    visibility: visible;
}

.loading-logo {
    width: 200px; /* Adjust as needed */
    height: auto;
    animation: rotateGlobe 2s linear infinite;
    transform-style: preserve-3d;
}

@keyframes rotateGlobe {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

