* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    scroll-behavior: smooth;
}
.dancing-script {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;

  background: #F3CC6E;
    background: linear-gradient(225deg, rgba(243, 204, 110, 1) 50%, rgba(179, 125, 45, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a,
a:link {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #cba45b;
    text-decoration: none;
}

a img {
    border: none;
    outline: none;
}

ul li {
    list-style: none;
}

html,
body {
    height: 100vh;
}

body {
    position: relative;
    background: black;
    font-family: "Poppins", serif;
    color: #cba45b;
    font-size: 0.9rem;
    overflow-x: hidden;
}

#wrapper {
    position: relative;
    width: 100%;
}

.flexMain {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

.mobon {
    display: none;
}

img.imgSize {
    width: 100%;
    height: auto;
}

#section1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background: #f5f5f5;
}

/* SECTION 2 scrolls over section1 */
#section2 {
  position: relative;
  z-index: 2;
  margin-top: 100vh; /* Start right after section1's height */
  height: 100vh;
    background-image: url(../images/pttrn-bg.jpg);
    -webkit-border-top-left-radius: 80px;
    -webkit-border-top-right-radius: 80px;
    -moz-border-radius-topleft: 80px;
    -moz-border-radius-topright: 80px;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
}

.logcnt {
    position: absolute;
    left: 50%;
    top: -2%;
    width: 15%;
    transform: translate(-50%, 0%);
    z-index: 1;
}

#section2.scrolled {
  border-radius: 0; /* remove rounding when scrolled to top */
}

.paddB3 {
    padding-bottom: 3rem;
}

.brdrdCnt {
    border: 1px solid rgb(235 195 103);
    border-radius: 10px;
    text-align: center;
    padding: 2rem;
    width: 80%;
    position: relative;
    min-height: 250px;
    background-color: rgba(0, 0, 0, 0.6);
    font-weight: 600;
}

a.downloadCta {
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translate(-50%, 0%);
    background: #F3CC6E;
    background: linear-gradient(225deg, rgba(243, 204, 110, 1) 50%, rgba(179, 125, 45, 1) 100%);
    padding: 1rem 2rem;
    border: 2px solid rgb(235 195 103);
    border-radius: 25px;
    color: #9f1622;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.15);
}
a.downloadCta:hover {
    background: #F3CC6E;
    background: linear-gradient(90deg, rgba(243, 204, 110, 1) 50%, rgba(179, 125, 45, 1) 100%);
}
footer {position: absolute; bottom: 5px; left: 50%;  transform: translate(-50%, 0%); width: 70%; font-size: 0.7rem; text-align: center; color: #fff;}

/* Media query */
@media only screen and (max-width:1366px) {
    .container {max-width: 96%;}
}
@media only screen and (max-width:1200px) {
    a.downloadCta {padding: 1rem;}
    .brdrdCnt {min-height: 300px;}
}

@media only screen and (max-width:1024px) {
    .container {width: 96%;}
    .btns {bottom: 10%;}
}

@media only screen and (max-width: 767px) {
    .brdrdCnt { min-height: 10px; margin-bottom: 3rem;}
}

@media only screen and (max-width: 640px) {
    .left-content {width: 60%; padding: 60px 20px;}
    .right-carousel {width: 40%;}
    .logcnt {top: 0; width: 20%;}
     a.downloadCta { width: 80%;}
     .text-content {width: 90%;}     
}

@media only screen and (max-width: 480px) {
    .card {width: 300px; height: 300px;}
    .btns {display: none;}
    .left-content {text-align: center; padding: 20px 0 20px; justify-content: center;}
    .slider-wrapper {flex-direction: column-reverse; align-items: center; justify-content: center;}
    .timeline-list {display: none;}
    .left-content, .right-carousel {width: 100%;}
    .text-content {width: 96%;}
    .logcnt {width: 30%;}
    .left-content h2 {font-size: 1.5rem; margin-bottom: 10px;}
    .left-content p {font-size: 0.8rem;}
    .dancing-script {font-size: 2rem;}
    .paddB3 {padding-bottom: 1rem;}
    .brdrdCnt {padding: 1rem 1rem 2.5rem;}
    a.downloadCta {padding: 0.8rem;bottom: -25px; }
    footer {width: 92%; bottom: 10px;}
}

@media only screen and (max-width: 392px) {
    .logcnt {width: 35%;}  
    .dancing-script {font-size: 1.5rem;}
     body {font-size: 0.8rem;}
}