* {
    box-sizing: border-box;
}

.container_page {
    max-width: 1920px;
    /* Keeps your layout neat and centered */
    margin: 0 auto;
    /* Center horizontally */
    padding: 0 0px;
    /* Adds side spacing on smaller screens */
    width: 100%;
    box-sizing: border-box;
    background-color: transparent;
}


body {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-family: Open Sans, sans-serif;
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    word-wrap: break-word;
    line-height: 1.6;
    width: 100%;
}




/* Header container */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background: #F2E797;
}

/* Brand section on left */
#brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#brand img {
    /*height: 40px;*/
    width: auto;
}

#header_name a {
    font-size: 1.2rem;
    font-weight: bold;
    color: #172645;
    text-decoration: none;
    padding-left: 1rem;
}

/* Right nav section: hamburger + menu */
#right-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Menu styling */
#main-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
}

.menu-link {
    margin: 0 0.5rem;
    color: #172645;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Underline hover effect */
.menu-link::before,
.menu-link::after {
    content: '';
    position: absolute;
    height: 2px;
    background-color: #c43543;
    width: 0%;
    transition: 0.3s ease;
}

.menu-link::before {
    top: 0;
    left: 0;
}

.menu-link::after {
    bottom: 0;
    right: 0;
}

.menu-link:hover {
    color: #c43543;
}

.menu-link:hover::before,
.menu-link:hover::after {
    width: 100%;
}

/* Submenu */
.menu-item-with-sub {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background: #F2E797;
    padding: 0.5rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 100;
    min-width: 140px;
}

.submenu a {
    padding: 0.1rem 1rem;
    text-decoration: none;
    color: #172645;
    display: block;
    font-weight: normal;
    transition: background 0.3s;
}

.submenu a:hover {
    color: #c43543;
}

.menu-item-with-sub:hover .submenu {
    display: flex;
}

/* Hamburger */
#hamburger {
    display: none;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
}

#hamburger span {
    height: 3px;
    background-color: #172645;
    border-radius: 2px;
    transition: 0.3s;
}


/* header-End*/


.stroke-girl {
    position: relative;
}

#contact-overlay-h2 {
    color: rgba(23, 38, 69);

}

.stroke-girl::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #fff;
    border-radius: 10px;
    pointer-events: none;
    z-index: -1;
}

.glow-outline {
    filter: drop-shadow(0 0 15px rgba(255, 199, 0, 0.7));
    /* golden glow */
}

.highlight-girl {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.highlight-girl:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.6));
}

#imezn3 {
    height: 400px;

}


.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}


.video-wrapper {
    max-width: 720px;
    /* You can adjust this width */
    width: 720px;
    /*margin: 0 auto;
     Center horizontally */
}

.video-wrapper-main {
    display: flex;
    flex-direction: row;
    /* default: stack vertically on desktop */
}


.video-side-image {
    display: none;
    /*hidden on desktop */
}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: #000;
}

.responsive-video iframe,
.responsive-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#Testimonial_up {
    width: 100%;
    aspect-ratio: 1000 / 100;
    line-height: 0;
    overflow: hidden;
    position: relative;
    z-index:2;
    margin-top: -30px;

}

#Testimonial_up svg {
    width: 100%;
    height: 100%;
    display: block;
}

#Testimonial_down {
  width: 100%;
  aspect-ratio: 1000 / 100;
  line-height: 0;
  overflow: hidden;
  background-color: #F5EFBF;
  display:none;
}

#Testimonial_down svg {
  width: 100%;
  height: 100%;
  display: block;
}



.card {
    background: #e0c790;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0.95;
    cursor: pointer;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 60%);
    transform: rotate(25deg);
    pointer-events: none;
}

.card:hover::before {
    animation: shine 1.2s ease forwards;
}

@keyframes shine {
    0% {
        transform: rotate(25deg) translateX(-100%);
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: rotate(25deg) translateX(100%);
        opacity: 0;
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-header h3 {
    margin: 0;
    font-size: 29px;
    font-weight: bold;
    color: rgb(196, 53, 67);
    max-width: 75%;
}

.card-header img {
    width: 42px;
    height: 42px;
}

.card h4 {
    margin: 10px 0 5px;
    font-size: 20px;
    font-weight: 600;
    color: rgb(23, 38, 69);
}

.card p {
    font-size: 16px;
    color: rgb(23, 38, 69);
}

@media (max-width: 1000px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
}



* {
    box-sizing: border-box;
}


.wave {
    position: relative;
    z-index: 1;
    /*overflow-x: hidden;
    overflow-y: hidden;
    line-height: 0;*/
}

.wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.gjs-row {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    row-gap: 0.5rem;
    column-gap: 0.5rem;
}

.gjs-cell {
    flex-grow: 1;
    width: 100%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

#header_name {
    /*position: absolute;*/
    left: 150px;
    font-size: 25px;
    color: #172645;

}

#i0cjw {
    font-family: inherit;
}

#ixvh6 {
    font-family: inherit;
    row-gap: 64px;
    column-gap: 64px;
}

#i0ubz {
    font-family: inherit;
    display: flex;
    flex-direction: column;
    flex: 0 0 60%;
    row-gap: 40px;
    column-gap: 40px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    padding: 30px 0px 80px 0px;

}

#ikaf3 {
    font-family: inherit;
}

#i0xei {
    font-family: inherit;
}

#iptmk {
    font-family: inherit;
}

#ijhoq {
    row-gap: 24px;
    column-gap: 24px;

}

#iwf7l {
    font-family: inherit;
}

#ifh84 {
    font-family: inherit;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    display: flex;
    row-gap: 12px;
    column-gap: 12px;
    width: 100%;
    height: 100%;
    align-items: center;
    padding-top: 16px;
    padding-right: 24px;
    padding-bottom: 16px;
    padding-left: 24px;
}

#ifcrop {
    font-family: inherit;
    display: flex;
    row-gap: 64px;
    column-gap: 64px;
    align-items: center;
    justify-content: center;
}

.section-padding {
    height: auto;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.gjs-section.section-padding {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

#home {
    opacity: 1;
    position: relative;
    z-index: 0;
    width: 100%;
    box-sizing: border-box;
    background-position: 12% 31%;
    background-image: url('../img/background.webp');
}

#why {
    font-family: inherit;
    padding-top: 80px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    background-color: #F5EFBF;
    position: relative;
    z-index: 0;

}

#faqs {
    font-family: inherit;
    padding: 80px 0 90px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    margin-top: 0px;
}


.gjs-container {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}

#ikb4rl {
    font-family: inherit;
    display: flex;
    flex-direction: column;
    row-gap: 0px;
    column-gap: 24px;
}

#if2ha {
    color: rgb(23, 38, 69);
    font-size: 20px;
    font-family: Inter, sans-serif;
    /*line-height: 180%;*/
}

#i5gran {
    font-family: inherit;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    display: flex;
    row-gap: 12px;
    column-gap: 12px;
    width: 100%;
    /*height: 100%;*/
    align-items: center;
    color: #FFFFFF;
    margin-left: -170px;
    padding: px px px px;
}

#i0qjzz {
    font-family: inherit;
}

#i7ge8m {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 64px;
    column-gap: 64px;
    padding: 50px 0px 0px 0px;
}

#ixxoz9 {
    font-family: inherit;
    width: 90%;
    max-width: 1440px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}

#if38kl {
    font-family: inherit;
    width: 90%;
    max-width: 1440px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}

#iawno9 {
    font-family: Sora, sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
    color: rgb(23, 38, 69);
}

#iufoxt {
    font-family: Sora, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 64px;
    margin-left: 0px;
    text-align: center;
    color: rgb(23, 38, 69);
}

#i6tua3 {
    font-family: Sora, sans-serif;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

#iil0qk {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

#ity2rz {
    font-family: inherit;
    display: block;
    font-size: 14px;
    text-align: center;
    line-height: 1px;
    letter-spacing: 0px;
    font-weight: 400;
    text-transform: none;
}

#ib4bxe {
    font-family: Sora, sans-serif;
    background-color: #c43543;
    display: inline-block;
    padding-top: 24px;
    padding-right: 48px;
    padding-bottom: 24px;
    padding-left: 48px;
    color: #FFFFFF;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: initial;
    border-right-style: initial;
    border-bottom-style: initial;
    border-left-style: initial;
    border-top-color: initial;
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-decoration-color: initial;
    cursor: pointer;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    font-weight: 700;
    font-size: 25px;
    text-align: center;
    transition-behavior: normal;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-property: all;
}

#ib4bxe:hover {
    background-color: #FFFFFF;
    color: #c43543;
    border-color: #c43543;
    border-width: 2px 2px 2px 2px;
    border-style: solid solid solid solid;
}

.gjs-section.background {
    font-family: inherit;
    padding-top: 00px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    opacity: 1;
    background-color: #e0c790;
    background-repeat: repeat;
    background-size: auto;
    background-position-x: 50%;
    background-position-y: 50%;
    background-attachment: scroll;
    background-image: none;
}


#iiz9sg {
    font-family: inherit;
    /*position: absolute;*/
    width: 90px;
    float: right;
    height: 90px;
    top: 2%;
    left: auto;

    bottom: auto;
}

#ij8g0s {
    font-family: inherit;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    row-gap: 0.5rem;
    column-gap: 0.5rem;
    background-repeat: repeat;
    background-size: auto;
    background-position-x: 50%;
    background-position-y: 50%;
    background-attachment: scroll;
    margin: 0px 0px 0px 0px;
}

#isce7c {
    font-family: inherit;
    flex-grow: 1;
    flex-basis: 40%;
    background: radial-gradient(circle, #fbe9c6 0%, transparent 70%);
    width: fit-content;

    border-radius: 50%;
    display: inline-block;

}

#ifnst6 {
    font-family: inherit;
    flex-grow: 1;
    flex-basis: 60%;
}

#imezn4 {
    font-family: inherit;
    position: relative;
    bottom: 10px;
    height: auto;
    margin-bottom: -50px;
    height: 800px;

}

#ibbwju {
    font-size: 40px;
    font-weight: 700;
    color: rgb(23, 38, 69);
    padding-top: 4px;
    padding-right: 4px;
    padding-bottom: 4px;
    padding-left: 4px;
    font-family: Sora, sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
}

#About {
    position: relative;
    background-color: #fff;
    padding: 0;
    font-family: inherit;
}

#ikihh3 {
    font-family: Inter, sans-serif;
    color: rgb(23, 38, 69);
    padding: 10px 10px 10px 10px;
}

#itm3o8 {
    font-family: inherit;
}

#iknul {
    font-family: inherit;
    width: auto;
    height: auto;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

#iqp93 {
    transform: rotate(180deg);
    width: 100%;
    aspect-ratio: 1000 / 100;
    /* Maintains SVG proportions */
    overflow: hidden;
    line-height: 0;
    margin-top: -165px;
}

#igusbg {
    font-weight: bold;
    font-style: italic;
    color: #c43543;
}

#ixaoov {
    font-family: inherit;
    display: flex;
    /* justify-content: center;*/
    text-align: center;
}

#ickbdv {
    font-family: inherit;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

#i40zdt {
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

 .hidden {
      display: none!important;
    }
	
#i9dyee {
    font-family: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border-style: solid solid solid solid;
    border: 0px solid rgba(255, 255, 255, 1);
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    background-color: #c43543;
    color: #FFFFFF;
    width: 65px;
    height: 65px;
    line-height: 35px;
}

#icb9n1 {
    font-family: inherit;
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    color: #172645;
}

#iszpki {
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#i6l12n {
    font-family: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border-style: solid solid solid solid;
    border: 0px solid rgba(255, 255, 255, 1);
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    background-color: #c43543;
    color: #FFFFFF;
    width: 65px;
    height: 65px;
    line-height: 35px;
}

#iuzy3y {
    font-family: inherit;
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    color: #172645;
}

#ihjq3g {
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#ifp9wf {
    font-family: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border-style: solid solid solid solid;
    border: 0px solid rgba(255, 255, 255, 1);
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    background-color: #c43543;
    color: #FFFFFF;
    width: 65px;
    height: 65px;
    line-height: 35px;
}

#iwvqt1 {
    font-family: inherit;
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    color: #172645;
}

#i2wdnk {
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#ivn38g {
    font-family: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border-style: solid solid solid solid;
    border: 0px solid rgba(255, 255, 255, 1);
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    background-color: #c43543;
    color: #FFFFFF;
    width: 65px;
    height: 65px;
    line-height: 35px;
}

#imhi86 {
    font-family: inherit;
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    color: #172645;
}

#iutdx4 {
    font-family: inherit;
    display: none;
    font-size: 4em;
}

#i0sx9z {
    font-family: Sora, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    text-align: center;
    color: rgb(23, 38, 69);
}

#i7hw8n {
  font-family: inherit;
  padding: 60px 20px;
  text-align: center;
  background-color: #F5EFBF;
  margin: 0; /* REMOVE negative margins */
  position: relative;
  z-index: 1;
}

#i7h65f {
    font-family: inherit;
    width: max-content;
    background-color: #c43543;
    display: inline-block;
    padding: 4.5px 15px 4px 15px;
    color: rgba(255, 255, 255, 1);
    border: 0;
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
}

#i8mpes {
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}

#izua4b {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    font-size: 35px;
    align-items: center;
}

#i6xcd4 {
    font-family: inherit;
    display: block;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0px;
    font-weight: 400;
    text-transform: none;
}

#i7h65f:hover {
    background-color: #FFFFFF;
    color: #c43543;
    border-color: #c43543;
    border-width: 2px 2px 2px 2px;
    border-style: solid solid solid solid;
}

#ickbdv:hover {
    display: flex;
}

#iutdx4:hover {
    display: none;
}


/*#why:hover {
    background-color: #e0c790;
    background-repeat: repeat;
    background-size: auto;
    background-position: 50% 50%;
    background-attachment: scroll;
    Plt: linear;
    background-image: none;
}*/

/*#ip8i14:hover {
    background-color: #F9F7F4;
    background-repeat: repeat;
    background-size: auto;
    background-position: 50% 50%;
    background-attachment: scroll;
    Plt: linear;
    background-image: none;
}*/

#iawno9:hover {
    color: #172645;
}

#ickbdv:active {
    display: flex;
}

#iutdx4:active {
    display: none;
}

#ipmpet {
    height: 700px;
}



/* testimonial start*/

.swiper {
    width: 100%;
    height: 350px;
    padding: 40px 0 80px;
}

.swiper-slide {
    background: #e0c790;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px 25px;
    font-size: 16px;
    text-align: left;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.swiper-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(196, 53, 67);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: bold;
    color: rgb(196, 53, 67);
    font-size: 16px;
}

.quote {
    font-size: 15px;
    font-style: italic;
    position: relative;
}

.quote::before {
    content: "“";
    font-size: 40px;
    color: rgb(196, 53, 67);
    margin-right: 5px;
    vertical-align: top;
}

.stars {
    color: rgb(196, 53, 67);
    font-size: 18px;
    margin-top: 10px;
}

.custom-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.custom-button {
    width: 50px;
    height: 50px;
    background-color: rgb(196, 53, 67);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.custom-button:hover {
    background-color: rgb(158, 32, 46);
}

/* testimonial end*/


:root {
    --golden: #e0c790;
    --red: #c43543;
    --blue: #172645;
    --offwhite: #F9F7F4;
    --background: #F5EFBF;
    --title-bg: #e0c790;
    --max-width: 90%;

}

.faq-container {
    background: white;
    max-width: var(--max-width);
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(23, 38, 69, 0.15);
    overflow: hidden;
}

.faq-header {
    background: var(--title-bg);
    color: var(--blue);
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 2px solid var(--golden);
    user-select: none;
    justify-content: center;
}

.faq-header span {
    font-size: 2.8rem;
    color: var(--red);
    line-height: 1;
}

.accordion-item {
    border-bottom: 1px solid #d7d2b8;
    margin-top: 1.3rem;
    /* increased space between items */
}

.accordion-title {
    background-color: var(--title-bg);
    color: var(--blue);
    padding: 0.75rem 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 5px solid transparent;
    user-select: none;
    font-weight: 600;
    font-size: 1.15rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition:
        background-color var(--transition-time) ease,
        border-left-color var(--transition-time) ease,
        box-shadow var(--transition-time) ease;
}

.accordion-title:hover {
    background-color: #f3e8be;
    /* lighter golden */
    border-left-color: var(--golden);
    box-shadow: 0 6px 12px rgba(224, 199, 144, 0.35);
}

.accordion-title.active {
    border-left-color: var(--red);
    background-color: #f0dfa5;
    box-shadow: 0 8px 18px rgba(196, 53, 67, 0.28);
}

.accordion-title:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
}

.accordion-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: transform var(--transition-time) ease;
    fill: var(--blue);
}

.accordion-title.active .accordion-icon {
    transform: rotate(45deg);
    fill: var(--red);
}

.accordion-content {
    background-color: var(--offwhite);
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding var(--transition-time) ease;
    box-shadow: none;
    border-left: 5px solid var(--red);
    border-radius: 0 0 6px 6px;
    transform-style: preserve-3d;
    transform-origin: top;
    margin-top: 0.3rem;
}

.accordion-content.open {
    padding: 1.4rem 2.5rem 1.8rem;
    max-height: 900px;
    /* enough for content */
    box-shadow:
        0 12px 22px rgba(23, 38, 69, 0.12),
        0 4px 9px rgba(196, 53, 67, 0.2);
    transform: translateZ(20px);
}

.accordion-content p {
    font-size: 1rem;
    line-height: 1.55;
    color: #172645;
    user-select: text;
}


/* Footer css*/
/* Initially hidden */
.hidden-footer {
    /*position: fixed;*/
    bottom: -200px;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #172645, #c43543);
    color: #fff;
    padding: 20px;
    transition: bottom 0.6s ease;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

/* Show it */
.visible-footer {
    bottom: 0;
}

#enroll-footer {
    position: fixed;
    background: linear-gradient(to right, #172645, #c43543);
    color: #fff;
    padding: 10px 60px;
    font-family: 'Segoe UI', sans-serif;
}


.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    font-size: 26px;
    font-weight: 600;
    color: #ffe69c;
    flex: 1;
    min-width: 200px;
}

.footer-center {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-width: 250px;
}

.time-block {
    text-align: center;
}

.time-block div {
    font-size: 36px;
    font-weight: bold;
    color: #ffe69c;
}

.time-block label {
    font-size: 14px;
    color: #dcdcdc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-right {
    flex: 1;
    text-align: right;
    min-width: 200px;
}

.register-btn {
    background: #ffe69c;
    color: #172645;
    padding: 14px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.register-btn:hover {
    background: #fff;
    color: #c43543;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}




/* Footer css*/

/*Contact*/



.contact-overlay {
    font-family: inherit;
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/background.webp");
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    opacity: 0.75;
    /* Adjust as needed */
    z-index: -1;
    filter: blur(2px);
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.social-btn {
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 20px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.social-btn::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotateX(180deg);
    pointer-events: none;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Mirror/Reflection effect */
.social-btn::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scaleY(-1);
    opacity: 0.2;
    filter: blur(4px);
    pointer-events: none;
}

/* Social-specific gradients or colors */
.facebook {
    background: linear-gradient(to right, #3b5998, #4a69ad);
}

.instagram {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}

.linkedin {
    background: linear-gradient(to right, #0077b5, #00a0dc);
}

.youtube {
    background: linear-gradient(to right, #ff0000, #cc0000);
}
.trustpilot {
    background: linear-gradient(to right, #00b67a, #007b5a);
}
.trustpilot:hover {
    background: linear-gradient(to right, #00b67a, #00e5a0);
    transform: scale(1.05);
}
/* Background animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

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

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


#iq5ki7 {
    font-family: inherit;
    padding-top: 64px;
    padding-right: 0px;
    padding-bottom: 64px;
    padding-left: 0px;
    position: relative;
    margin-bottom: 99px;
    z-index: 0;
    overflow: hidden;
    text-align: center;
    color: white;
}

#iq5ki7::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/1050176_7008.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 0.4;
    /* Adjust the opacity here */
    z-index: -1;
    background-position: 50% 20%;


}

/*Contact*/