:root {
    --color-white-100: #fff;
    --color-white-200: #e6e6e6;
    --color-white-300: #ccc;
    --color-white-400: #a6a6a6;
    --color-white-500: #808080;
    --color-black-100: #202b3c;
    --color-black-200: #1c2431;
    --color-black-300: #161d27;
    --color-black-400: #0b1423;
    --color-blue-100: #bed8fe;
    --color-blue-200: #91befd;
    --color-blue-300: #61a1fa;
    --color-blue-400: #3c8af6;
    --color-blue-500: #2477eb;
    --color-blue-600: #1d6bd7;
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); 

    --pri-color : #09326C;
}
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
body {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-white-100);
    background-color: #000310;
}
body.darkmode {
    color: var(--color-white-100);
    background-color: var(--color-black-400);
}
main {
    overflow: hidden;
}
p {
    text-wrap: balance;
}
a, button {
    cursor: pointer;
    user-select: none;
    border: none;
    outline: none;
    background: none;
}
img, video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
.section {
    margin: 0 auto;
}
.container {
    max-width: 75rem;
    height: auto;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.paragraph {
    font-family: inherit;
    text-wrap: balance;
    color: inherit;
}
.heading-xl {
    font-family: inherit;
    font-size: clamp(2.648rem, 6vw, 4.241rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
}
.heading-lg {
    font-family: inherit;
    font-size: clamp(2.179rem, 5vw, 3.176rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
}
.heading-md {
    font-family: inherit;
    font-size: clamp(1.794rem, 4vw, 2.379rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
}
.btn {
    display: inline-block;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    user-select: none;
    outline: none;
    border: none;
    border-radius: 0.25rem;
    text-transform: unset;
    transition: all 0.3s ease-in-out;
}
.btn-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
}
.btn-darken {
    padding: 0.75rem 2rem;
    color: var(--color-white-100);
    background-color: var(--color-black-200);
    box-shadow: var(--shadow-medium);
}
.darkmode .btn-darken {
    background-color: var(--color-blue-500);
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #000310;
    box-shadow: var(--shadow-medium);
}
.darkmode .header {
    background-color: var(--color-black-400);
}
.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    width: 100%;
    height: 6rem !important;
    margin: 0 auto;
}
.brand {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.25;
    margin-right: auto;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-blue-500);
}
.darkmode .brand {
    color: var(--color-white-100);
}
.menu {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 10;
    width: 60%;
    height: 100vh;
    overflow: hidden;
    color: #fff;
    background-color: var(--pri-color);
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease-in-out;
}
.darkmode .menu {
    color: var(--color-white-100);
    background-color: var(--color-black-400);
}
.menu.is-active {
    left: 0;
}
.menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1.25rem;
    margin-top: 7rem;
    color: #fff;
}
.menu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: inherit;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
@media only screen and (min-width: 48rem) {
    .menu {
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        height: auto;
        padding: 0rem;
        margin-left: auto;
        background: none;
        box-shadow: none;
        transition: none;
   }
    .menu-inner {
        display: flex;
        flex-direction: row;
        column-gap: 2rem;
        margin: 0 auto;
   }
    .menu-link {
        text-transform: capitalize;
   }
}
.burger {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    order: -1;
    z-index: 12;
    width: 1.6rem;
    height: 1.15rem;
    margin-right: 1.25rem;
    border: none;
    outline: none;
    background: none;
    visibility: visible;
    transform: rotate(0deg);
    transition: 0.35s ease;
}
@media only screen and (min-width: 48rem) {
    .burger {
        display: none;
        visibility: hidden;
   }
}
.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 1rem;
    transform: rotate(0deg);
    background-color: var(--color-black-300);
    transition: 0.25s ease-in-out;
}

.banner-column {
    position: relative;
    display: grid;
    align-items: center;
    row-gap: 2rem;
}
@media only screen and (min-width: 48rem) {
    .banner-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
        margin-top: 4rem;
   }
}
@media only screen and (min-width: 64rem) {
    .banner-column {
        grid-template-columns: 1fr max-content;
        column-gap: 2rem;
   }
}
.banner-image {
    display: block;
    max-width: 25rem;
    height: auto;
    object-fit: cover;
    justify-self: center;
}
@media only screen and (min-width: 48rem) {
    .banner-image {
        order: 1;
        max-width: 28rem;
        height: auto;
   }
}

.abt-img{
    width: 80%;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .banner-inner {
        padding-top: 50px; 
    }

   .about-section{
    padding:60px 0 0px 0px !important;
   }

   .about-section .image-column .inner-column{
    width: calc(50% + 60px);
    height: calc(50% + 160px);
   }

   .abt-img {
    width: 130px;
   }

   .sec-title .title{
        top: 150px;
   }

   .sec-title h2 {
    top: 145px;
   }

   .about-section .text{
    margin-top: 155px;
   }

   .about-section .content-column .inner-column{
    position: relative;
    padding-left: 15px !important;
   }

   .sec-title .title {
    padding-left: -190px ;
   }




}
@media only screen and (min-width: 64rem) {
    .banner-image {
        max-width: 33rem;
        height: auto;
   }
}
.banner-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1.5rem;
}

/*Banner Image section */

.two-column-carousel1 {
    display: flex;
    gap: 10px; 
    padding-right: 0px;
}
.carousel-column1 {
    width: 100%; 
    height: 550px; /* Adjust the height as needed */
    overflow: hidden;
    position: relative;
    padding-right: 0;
}

.carousel1 {
    display: flex;
    flex-direction: column;
    animation: scroll 6s linear infinite;
}

.carousel-item1 {
    display: flex;
    justify-content: right; 
}

.carousel-item1 img {
    width: 100%; /* Adjust width as needed */
    height: 50%;
    border-radius: 4%; /* Makes the images rounded */
    display: block;
    padding-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow effect */
}

/* Keyframes for vertical scrolling */
@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-40%); /* Scroll up by half the height to loop */
    }
}


.my-img{
animation: rotateImg 2ms linear infinite;
}


@keyframes rotateImg{
from {
 transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}


@keyframes rotate {
100% {
    transform: rotate(360deg);
}
}

/* User dropdown */
.dropdown-toggle{
    padding: 5px 15px 5px 15px !important;
    margin-left: 30px !important;
    border-radius: 10px !important;
    background-color: var(--color-black-400) !important;
}

.btn-darken.active, .btn-darken:focus, .btn-darken {
    background-color: var(--color-black-400); 
    color: #fff; 
 }
 
.btn-darken:hover {
    background-color: var(--color-black-400); 
    color: #fff; 
}
 

.dropdown-menu li:hover {
    background-color: #f0f0f0; /* change the background color on hover */
    cursor: pointer; /* change the cursor to a pointer on hover */
    border-radius: 12px;
}
  
.dropdown-menu li:hover a {
    color: var(--color-black-400); /* change the text color on hover */
    border-radius: 20px;
}

.dropdown-menu{
    width: 7rem !important;
}

/* About us section */
.sec-title{
    position:relative;
    z-index: 1;
    margin-bottom:60px;
  }
  
  .sec-title .title{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: var(--pri-color);
    font-weight: 500;
    margin-bottom: 15px;
  }
  
  .sec-title h2{
    position: relative;
    display: block;
    font-size:40px;
    line-height: 1.28em;
    color:#fff;
    font-weight: 600;
    padding-bottom:18px;
  }
  
  .sec-title h2:before{
    position:absolute;
    content:'';
    left:0px;
    bottom:0px;
    width:50px;
    height:3px;
    background-color:#d1d2d6;
  }
  
  .sec-title .text{
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
    margin-top: 35px;
  }
  
  .sec-title.light h2{
    color: #ffffff;
  }
  
  .sec-title.text-center h2:before{
    left:50%;
    margin-left: -25px;
  }
  
  .list-style-one{
    position:relative;
  }
  
  .list-style-one li{
    position:relative;
    font-size:16px;
    line-height:26px;
    color: #222222;
    font-weight:400;
    padding-left:35px;
    margin-bottom: 12px;
  }
  
  .list-style-one li:before {
      content: "\f058";
      position: absolute;
      left: 0;
      top: 0px;
      display: block;
      font-size: 18px;
      padding: 0px;
      color: #ff2222;
      font-weight: 600;
      -moz-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      font-style: normal;
      font-variant: normal;
      text-rendering: auto;
      line-height: 1.6;
      font-family: "Font Awesome 5 Free";
  }
  
  .list-style-one li a:hover{
    color: #44bce2;
  }
  
  .btn-style-one{
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.02em;
    background-color: var(--pri-color);
  }
  
  .btn-style-one:hover{
    background-color: #0794c9;
    color: #ffffff;
  }
  .about-section{
    position: relative;
    padding: 100px 0 70px;
  }
  
  .about-section .sec-title{
    margin-bottom: 45px;
  }
  
  .about-section .content-column{
    position: relative;
    margin-bottom: 50px;
  }
  
  .about-section .content-column .inner-column{
    position: relative;
    padding-left: 30px;
  }
  
  .about-section .text{
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
  }
  
  .about-section .list-style-one{
    margin-bottom: 45px;
  }
  
  .about-section .btn-box{
    position: relative;
  }
  
  .about-section .btn-box a{
    padding: 15px 50px;
  }
  
  .about-section .image-column{
    position: relative;
  }
  
  .about-section .image-column .text-layer{
      position: absolute;
      right: -110px;
      top: 50%;
      font-size: 325px;
      line-height: 1em;
      color: #ffffff;
      margin-top: -175px;
      font-weight: 500;
  }
  
  .about-section .image-column .inner-column{
    position: relative;
    padding-left: 80px;
    padding-bottom: 0px;
  }
  .about-section .image-column .inner-column .author-desc{
      position: absolute;
      bottom: 16px;
      z-index: 1;
      background: orange;
      padding: 10px 15px;
      left: 96px;
      width: calc(100% - 152px);
      border-radius: 50px;
  }
  .about-section .image-column .inner-column .author-desc h2{
      font-size: 21px;
      letter-spacing: 1px;
      text-align: center;
      color: #fff;
    margin: 0;
  }
  .about-section .image-column .inner-column .author-desc span{
      font-size: 16px;
      letter-spacing: 6px;
      text-align: center;
      color: #fff;
    display: block;
    font-weight: 400;
  }
  .about-section .image-column .inner-column:before{
      content: '';
      position: absolute;
      width: calc(50% + 136px);
      height: calc(100% + 100px);
      top: -50px;
      left: 10px;
      background: transparent;
      z-index: 0;
      border: 30px solid var(--pri-color);
  }
  
  .about-section .image-column .image-1{
    position: relative;
  }
  .about-section .image-column .image-2{
    position: absolute;
    left: 0;
    bottom: 0;
  }
  
  .about-section .image-column .image-2 img,
  .about-section .image-column .image-1 img{
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
        border-radius: 46px;
  }
  
  .about-section .image-column .video-link{
    position: absolute;
    left: 70px;
    top: 170px;
  }
  
  .about-section .image-column .video-link .link{
    position: relative;
    display: block;
    font-size: 22px;
    color: #191e34;
    font-weight: 400;
    text-align: center;
    height: 100px;
    width: 100px;
    line-height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }


 /* Card section */
 
.card-sec{
    margin-top: calc(-20% + 120px);
}  

/* Container for the teaser */
.teaser-container {
    position: relative;
    overflow: hidden;
    height: 80vh; /* Full screen height */
    background-color: rgb(0, 0, 0);
    color:white !important;
}

.teaser-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the whole container */
    filter: brightness(70%); /* Adds a darkened effect to the video for better text readability */
}

.teaser-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 51, 51, 0.5);
    z-index: 1; 
}

.teaser-text h1 {
    animation: fadeInDown 1.5s ease-in-out;
    color:var(--color-white-200) !important;
}

.teaser-text p {
    animation: fadeInUp 2s ease-in-out;
    color:var(--color-white-200) !important;
}

.teaser-text a {
    animation: fadeInUp 2.5s ease-in-out;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background-color: var(--pri-color);
    color: #fff;
}

.teaser-text a:hover {
    animation: fadeInUp 2.5s ease-in-out;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background-color: var(--pri-color);
    color: #fff;
    border-color: var(--pri-color);
}



.teaser-text-btn{
    font-size: 26px; 
    border:1px solid var(--pri-color); 
}

/* Keyframes for text animation */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .teaser-text h1 {
        font-size: 2rem; /* Adjust font size for smaller screens */
    }
    .teaser-text p {
        font-size: 1rem;
    }
    .teaser-text a {
        font-size: 1rem;
        padding: 12px 24px;
    }
    .teaser-container{
        height: 100;
        margin-top: 25px;
    }

    .sec-title-review h2{
        margin-top: 10%;
    }

    .img-silder-view{
        padding: 10px;
        height: 60vh;
    }
    
    .sec-title-course h2 {
        font-size: 23px !important;
    }

    .sec-title-course h3{
        font-size: 15px;
    }

    .single-cta{
        margin-bottom: 20px;
    }

    .cou-ab-img{
      width: 100%;
      margin-bottom: 30px !important;
    }

    .cou-ab-para{
      padding-left:0px !important;
    }
}


.cou-ab-img{
  max-width: 88% !important;
  margin-top: 20px !important;
}

.cou-ab-para{
  padding-left: 20px;
  color: #848484;
}
.img-silder-view{
    padding: 10px; height: 80vh;
}

/* Review */
.sec-title-review h2{
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1.28em;
    color: #fff;
    font-weight: 600;
    padding-bottom: 18px;
} 

.sec-title-course h2{
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1.28em;
    color: #fff;
    font-weight: 600;
    padding-bottom: 18px; 
}

 
/* footer */
.footer-section {
    background: #030309;
    position: relative;
  }
  .footer-cta {
    border-bottom: 1px solid #373636;
  }
  
  .single-cta i {
    color: var(--pri-color);
    font-size: 30px;
    float: left;
    margin-top: 8px;
  }
  .cta-text {
    padding-left: 15px;
    display: inline-block;
  }
  .cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .cta-text span {
    color: #757575;
    font-size: 15px;
  }
  .footer-content {
    position: relative;
    z-index: 2;
  }
  .footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
  }
  .footer-logo {
    margin-bottom: 30px;
  }
  .footer-logo img {
      max-width: 200px;
  }
  .footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
        color: #7e7e7e;
    line-height: 28px;
  }
  .footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
  }
  .footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
  }
  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
  }
  .facebook-bg{
    background: #3B5998;
  }
  .twitter-bg{
    background: #55ACEE;
  }
  .google-bg{
    background: #DD4B39;
  }
  .footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
  }
  .footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: var(--pri-color);
  }
  .footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
  }
  .footer-widget ul li a:hover{
    color: #ff5e14;
  }
  .footer-widget ul li a {
    color: #878787;
    text-transform: capitalize;
  }
  .subscribe-form {
    position: relative;
    overflow: hidden;
  }
  .subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff;
  }
  .subscribe-form button {
      position: absolute;
      right: 0;
      background: #ff5e14;
      padding: 13px 20px;
      border: 1px solid #ff5e14;
      top: 0;
  }
  .subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
  }
  .copyright-area{
    background: #030309;
    padding: 25px 0;
  }
  .copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
  }
  .copyright-text p a{
    color: #ff5e14;
  }
  .footer-menu li {
    display: inline-block;
    margin-left: 20px;
  }
  .footer-menu li:hover a{
    color: #ff5e14;
  }
  .footer-menu li a {
    font-size: 14px;
    color: #878787;
  }

  /* Course*/

  .blog-slider {
    width: 95%;
    position: relative;
    max-width: 800px;
    margin: auto;
    background: #191a1e;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 25px;
    height: 40%;
    transition: all .3s;
    
  }
  
  @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 0px 50px 0px;
    }
  }
  
  @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__item {
      flex-direction: column;
    }
  }
  
  .blog-slider__img {
    width: 300px;
    flex-shrink: 0;
    height: 300px;
    box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
    position: relative;
  }
  
  .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 .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__code {
    color: #fff;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
  }
  
  .blog-slider__title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .blog-slider__text {
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.5em;
  }
  
  .blog-slider__button {
    display: inline-flex;
    background-color: var(--pri-color);

    padding: 15px 35px;
    border-radius: 20px;
    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%;
    }
  }


  .card {
    flex-direction: row;
    max-width: 750px;
    border: 1px solid #fff; /* Gold border */
    background-color: #000310; /* Dark background */
    color: #ffffff;
    box-shadow: 0 0 15px rgba(27, 31, 59, 0.5), 0 0 50px rgba(176, 141, 87, 0.3); /* Gold shadow effect */
    border-radius: 10px;
    padding: 1em;
    transition: box-shadow 0.3s ease-in-out;
  }
  
  .card:hover {
    box-shadow: 0 0 20px rgba(120, 116, 221, 0.7), 0 0 60px rgba(92, 63, 19, 0.5); /* Gold glow on hover */
  }
  
  .card img {
    max-width: 40%;
    margin: auto;
    padding: 0.5em;
    border-radius: 0.8em;
    box-shadow: 0 0 10px rgba(176, 141, 87, 0.6); 
  }
  
  .card-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .text-section {
    max-width: 60%;
  }
    
  

/*
* Registration form
*/ 

.modal-header{
  background-color: #000310;
}

.modal-body{
  background-color: #000310;
}

.modal-footer{
  background-color: #000310;
}
  
.contain {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 350px 120px 350px;
  box-sizing: border-box;
}
.contain1 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 450px 90px 450px;
  box-sizing: border-box;
}
.container1 {
  position: relative;
  width: 100%;
  background-color: black;
  padding: 51px;
  border-radius: 10px;
  box-shadow: 0 0 15px var(--color-black-100);
  box-sizing: border-box;
}
.container1 header {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
.container1 .form {
  margin-top: 30px;
}
.form .input-box {
  width: 100%;
  margin-top: 20px;
  
}

.form :where(.input-box input, .select-box) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  margin-top: 8px;
  border: 1px solid var(--color-black-300);
  border-radius: 6px;
  padding: 0 15px;
  background-color: var(--color-black-100);
  color: white;
}
.input-box input:focus {
  border : var(--color-black-400);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.form .column {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  justify-content: space-between;
}
.column .input-box {
  flex: 1;
 
}
.form .lang-box {
  margin-top: 20px;
}
.lang-box h3 {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.form :where(.lang-option, .lang) {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: wrap;
}
.form .lang {
  column-gap: 5px;
}
.lang input {
  accent-color: var(--color-white-500);
}
.form :where(.lang input, .lang label) {
  cursor: pointer;
}
.lang label {
  color: var(--color-white-100) !important;
}
.address :where(input, .select-box) {
  margin-top: 15px;
}
.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  color: #707070;
  font-size: 1rem;
}
.form button {
  height: 50px;
  width: 100%;
  color:white;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--color-black-300);
}
.form button:hover {
  background: var(--color-blue-400);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .form .column {
    flex-direction: column;
  }
}

@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.lang-option, .lang) {
    row-gap: 15px;
  }
  .contain {
    padding: 120px 0 80px 0;
  }
  .contain1{
    padding: 100px 0 0px 0;
  }
  .container1 {
    padding: 15px;
  }
}  
