#section1 {
    margin: 2rem 0;
}

#section1 .headings {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#section1 .headings .sub-heading {
    text-transform: uppercase;
    color: var(--Premium_gold);
    font-weight: bold;
    margin-bottom: 0.7rem;
}

#section1 .headings .main-heading {
    text-transform: capitalize;
    color: var(--Primary_text);
    font-size: 2.2rem;
    font-weight: lighter;
    margin-bottom: 0.7rem;
}

#section1 .headings .horizontal-line {
    width: 120px;
    border-bottom: 0.2rem solid var(--Premium_gold);
    margin-bottom: 0.7rem;
}

#section1 .headings p {
    color: var(--Primary_text);
    margin-bottom: 1.4rem;
    font-size: 1.2rem;
}

#section1 .carousel {
    max-width: 100%;
    margin: auto 3rem;
}

#section1 .carousel .viewport { 
    height: 320px;
    overflow: hidden;
    position: relative;
}

#section1 .carousel .viewport .track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

#section1 .carousel .viewport .track .slide {
    min-width: 25%;
    padding: 10px;
    position: relative;
}

#section1 .carousel .viewport .track .slide .imageWrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

#section1 .carousel .viewport .track .slide .imageWrapper img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

#section1 .carousel .viewport .track .slide .imageWrapper .shades {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100px;
    padding: 1rem;
    border-radius: 10px;
    background-color: rgba(36,59,83,0.87);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#section1 .carousel .viewport .track .slide .imageWrapper .shades .shadesLogo {
    width: 25%;
}

#section1 .carousel .viewport .track .slide .imageWrapper .shades .shadesLogo img {
    width: 65px;
    height: 65px;
}

#section1 .carousel .viewport .track .slide .imageWrapper .shades .heading {
    width: 75%;
}

#section1 .carousel .viewport .track .slide .imageWrapper .shades .heading .mainHeading {
    text-transform: capitalize;
    color: var(--Pure_white);
    margin-bottom: 0.4rem;
    font-size: 1.3rem;
}

#section1 .carousel .viewport .track .slide .imageWrapper .shades .heading .subHeading {
    text-transform: capitalize;
    font-size: 0.9rem;
    line-height: 1.2rem;
    color: var(--Pure_white);
}

/* Arrows */
#section1 .carousel .viewport .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}

#section1 .carousel .viewport .prev { left: 0; }
#section1 .carousel .viewport .next { right: 0; }

/* Dots */
#section1 .carousel .dots {
    text-align: center;
    margin-top: 10px;
}

#section1 .carousel .dots span {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

#section1 .carousel .dots .active {
    background: goldenrod;
    width: 20px;
    border-radius: 5px;
}

@media (max-width: 1200px) {
    #section1 .headings .main-heading {
        font-size: 1.8rem;
    }

    #section1 .headings p {
        font-size: 1rem;
    }

    #section1 .carousel .viewport { 
        height: 260px;
    }

    #section1 .carousel .viewport .track .slide .imageWrapper .shades {
        padding: 0.2rem;
        gap: 0.9rem;
    }

    #section1 .carousel .viewport .track .slide .imageWrapper .shades .shadesLogo {
        width: 20%;
    }

    #section1 .carousel .viewport .track .slide .imageWrapper .shades .shadesLogo img {
        width: 50px;
        height: 50px;
    }

    #section1 .carousel .viewport .track .slide .imageWrapper .shades .heading {
        width: 80%;
    }

    #section1 .carousel .viewport .track .slide .imageWrapper .shades .heading .mainHeading {
        font-size: 1rem;
    }

    #section1 .carousel .viewport .track .slide .imageWrapper .shades .heading .subHeading {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    #section1 .headings .main-heading {
        font-size: 1.3rem;
    }

    #section1 .headings p {
        font-size: 0.9rem;
    }

    #section1 .carousel .viewport .track .slide {
        min-width: 50%;
    }

    #section1 .carousel {
        margin: auto 1.8rem;
    }

    #section1 .carousel .viewport .track .slide .imageWrapper .shades {
        padding: 1rem;
        gap: 0;
    }

    #section1 .carousel .viewport .track .slide .imageWrapper .shades .shadesLogo {
        width: 25%;
    }

    #section1 .carousel .viewport .track .slide .imageWrapper .shades .shadesLogo img {
        width: 60px;
        height: 60px;
    }

    #section1 .carousel .viewport .track .slide .imageWrapper .shades .heading {
        width: 75%;
    }

    #section1 .carousel .viewport .track .slide .imageWrapper .shades .heading .mainHeading {
        font-size: 1.3rem;
    }

    #section1 .carousel .viewport .track .slide .imageWrapper .shades .heading .subHeading {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #section1 .headings {
        padding: 0 1rem;
    }

    #section1 .headings .main-heading {
        font-size: 1rem;
    }

    #section1 .headings p {
        font-size: 0.8rem;
        text-align: center;
    }

    #section1 .carousel {
        margin: auto 1.1rem;
    }

    #section1 .carousel .viewport .track .slide {
        padding: 0;
    }
}

@media (max-width: 600px) {
    #section1 .carousel .viewport .track .slide {
        min-width: 100%;
    }
}

#section2 {
    margin: 1.6rem 3rem;
    margin-top: 0;
}

#section2 .headings {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#section2 .headings .main-heading {
    text-transform: capitalize;
    margin-bottom: 0.5rem;
    color: var(--Secondary_text);
}

#section2 .headings .horizontal-line {
    border-bottom: 2px solid var(--Light_gold);
    width: 90px;
    margin-bottom: 0.8rem;
}

#section2 .headings .images-btn button {
    color: var(--Secondary_text);
    padding: 0.6rem 1.4rem;
    border-color: var(--Marble_white);
    background-color: var(--Marble_white);
    border-radius: 8px;
    text-transform: capitalize;
    margin: 0 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    cursor: pointer;
}

#section2 .headings .images-btn .active {
    background-color: var(--Cards_overlays);
    color: var(--Pure_white);
}

#section2 .img-show {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#section2 .img-show img,
#section2 .img-show video {
    width: 25%;
    padding: 5px;
    height: 280px;
    object-fit: cover;
}

#section2 .pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

#section2 .pagination button {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  border: 2px solid #ddd;
  background: white;
  cursor: pointer;
  font-weight: 600;
}

#section2 .pagination button.active {
  background: #f47c3c;
  color: white;
  border-color: #f47c3c;
}

#section2 .pagination button:hover:not(.active) {
  border-color: #999;
}

#section2 .pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 1200px) {
    #section2 .headings .images-btn button {
        padding: 0.6rem 1.1rem;
        margin: 0 0.3rem;
        margin-bottom: 1.5rem;
    }

    #section2 .img-show img,
    #section2 .img-show video {
        height: 220px;
    }
}

@media (max-width: 992px) {
    #section2 .headings .images-btn button {
        padding: 0.6rem 1.4rem;
        margin-bottom: 1.4rem;
    }

    #section2 .img-show img,
    #section2 .img-show video {
        width: 50%;
        height: 270px;
    }
}

@media (max-width: 480px) {
    #section2 {
        margin: 1.6rem 1.8rem;
    }

    #section2 .img-show img,
    #section2 .img-show video {
        width: 100%;
        padding: 7px 0;
        height: 270px;
    }
}

#section3 {
    margin: 1.2rem 3rem;
    background-color: var(--Cards_overlays);
    padding: 1.5rem 1rem;
    border-radius: 10px;
}

#section3 .cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

#section3 .cards .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 25%;
    border-right: 2px solid var(--Main_CTA_buttons_highlights);
    padding: 0.5rem 1.7rem;
}

#section3 .cards .card:last-child {
    border-right: none;
}

#section3 .cards .card .card-img img {
    width: 65px;
    height: 65px;
    margin-right: 1.4rem;
}

#section3 .cards .card .card-text .main-heading {
    color: var(--Main_CTA_buttons_highlights);
    margin-bottom: 0.3rem;
}

#section3 .cards .card .card-text .sub-heading {
    color: var(--Pure_white);
    line-height: 1.3rem;
}

@media (max-width: 1200px) {
    #section3 .cards .card {
        padding: 0.5rem;
    }

    #section3 .cards .card .card-img img {
        width: 55px;
        height: 55px;
        margin-right: 0.7rem;
    }

    #section3 .cards .card .card-text .sub-heading {
        line-height: 1.2rem;
    }
}

@media (max-width: 992px) {
    #section3 .cards .card {
        width: 48%;
        padding: 1.7rem;
        border-right: none;
    }

    #section3 .cards .card:nth-child(1),
    #section3 .cards .card:nth-child(2) {
        border-bottom: 2px solid var(--Main_CTA_buttons_highlights);
    }

    #section3 .cards .card:nth-child(1),
    #section3 .cards .card:nth-child(3) {
        margin-right: 0.8rem;
    }
}

@media (max-width: 480px) {
    #section3 {
        margin: 1.6rem 1.8rem;
    }

    #section3 .cards .card {
        width: 100%;
        border-bottom: 2px solid var(--Main_CTA_buttons_highlights);
    }
}

#section4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 3rem;
}

#section4 > .main-heading {
    text-transform: capitalize;
    color: var(--Primary_text);
    font-size: 2.1rem;
}

#section4 .horizontal-line {
    border-bottom: 2px solid var(--Main_CTA_buttons_highlights);
    width: 90px;
    margin: 0.8rem 0;
}

#section4 .cards {
    width: 100%;
    margin: 1rem 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#section4 .cards .card {
    width: 25%;
    padding: 5px;
}

#section4 .cards .card .card-video {
    position: relative;
}

#section4 .cards .card .card-video .icon-set video {
    width: 100%;
    height: 190px;
    border-radius: 10px;
}

#section4 .cards .card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

#section4 .cards .card .play-btn i {
    color: var(--Pure_white);
    font-size: 1.8rem;
}

#section4 .cards .card .card-text {
    padding: 0 0.8rem;
}

#section4 .cards .card .card-text .main-heading {
    color: var(--Primary_text);
    margin: 0.5rem 0;
}

#section4 .cards .card .card-text .sub-heading {
    color: var(--Primary_text);
    line-height: 1.3rem;
}

@media (max-width: 992px) {
    #section4 .cards .card {
        width: 50%;
    }
}

@media (max-width: 480px) {
    #section4 .cards .card {
        width: 100%;
    }

    #section4 .main-heading {
        font-size: 1.2rem;
    }  
    
    #section4 .horizontal-line {
        margin-bottom: 0rem;
    }

    #section4 {
        margin: 1rem 2rem;
    }
}

#section5 {
    margin-top: 1rem;
}

#section5 > .headings {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#section5 > .headings .sub-heading {
    text-transform: uppercase;
    color: var(--Main_CTA_buttons_highlights);
    font-weight: bold;
    margin-bottom: 0.4rem;
}

#section5 > .headings .main-heading {
    text-transform: capitalize;
    color: var(--Primary_text);
}

#section5 > .headings .horizontal-line {
    border-bottom: 3px solid var(--Main_CTA_buttons_highlights);
    width: 100px;
    margin: 0.8rem;
}

#section5 > .headings p {
    color: var(--Primary_text);
    font-size: 1.1rem;
}

#section5 .carousal {
    margin: 2rem 3rem;
}

#section5 .carousal .carousal-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

#section5 .carousal .carousal-container .carousal-track-wrapper {
    overflow: hidden;
}

#section5 .carousal .carousal-container .carousal-track-wrapper .carousal-track .cards {
    display: flex;
    transition: transform 0.5s ease;
}

#section5 .carousal .carousal-container .carousal-track-wrapper .carousal-track .cards .card {
    flex: 0 0 calc(100% / 5 - 20px);
    margin: 10px;
    background: #fff;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

#section5 .carousal .carousal-container .carousal-track-wrapper .carousal-track .cards .card .card-img {
    width: 100%;
    height: 50%;
}

#section5 .carousal .carousal-container .carousal-track-wrapper .carousal-track .cards .card .card-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

#section5 .carousal .carousal-container .carousal-track-wrapper .carousal-track .cards .card .card-text {
    height: 50%;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#section5 .carousal .carousal-container .carousal-track-wrapper .carousal-track .cards .card .card-text .card-heading h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

#section5 .carousal .carousal-container .carousal-track-wrapper .carousal-track .cards .card .card-text p {
    line-height: 1.3rem;
}

#section5 .carousal .carousal-container .carousal-track-wrapper .carousal-track .cards .card .card-text .btn {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#section5 .carousal .carousal-container .carousal-track-wrapper .carousal-track .cards .card .card-text .btn button {
    color: goldenrod;
    border: none;
    background-color: white;
    cursor: pointer;
    padding-right: 0.7rem;
}

#section5 .carousal .carousal-container .carousal-track-wrapper .carousal-track .cards .card .card-text .btn i {
    color : goldenrod;
    cursor: pointer;
}

#section5 .carousal-container .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: black;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

#section5 .carousal-container .prev { left: 0; }
#section5 .carousal-container .next { right: 0; }

/* responsive */
@media (max-width : 1200px) {
    #section5 .carousal {
        margin: 2rem;
    }

    #section5 .carousal .carousal-container .carousal-track-wrapper .carousal-track .cards .card {
        flex: 0 0 calc(100% / 4 - 20px);
    }
}

@media (max-width: 992px) {
    #section5 .carousal .carousal-container .carousal-track-wrapper .carousal-track .cards .card {
        flex: 0 0 calc(100% / 3 - 20px);
    }
}

@media (max-width: 768px) {
    #section5 .carousal .carousal-container .carousal-track-wrapper .carousal-track .cards .card {
        flex: 0 0 calc(100% / 2 - 20px);
    }
}

@media (max-width: 480px) {
    #section5 > .headings {
        padding: 0 2rem;
    }

    #section5 > .headings .main-heading {
        font-size: 1.6rem;
    }

    #section5 > .headings p {
        font-size: 1rem;
    }

    #section5 .carousal {
        margin: 2rem 1.5rem;
    }

    #section5 .carousal .carousal-container .carousal-track-wrapper .carousal-track .cards .card {
        flex: 0 0 calc(100% - 20px);
    }
}

#section6 {
    background-color: var(--Marble_white);
    margin: 1rem 2rem;
    border-radius: 10px;
    padding: 1.5rem 5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

#section6 .stayConnected {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    width: 32%;
}

#section6 .stayConnected .icon i {
    width: 80px;
    height: 80px;
    background-color: var(--Main_CTA_buttons_highlights);
    border-radius: 50%;
    padding-top: 1.2rem;
    color: var(--Pure_white);
    font-size: 2.3rem;
}

#section6 .stayConnected .headings .main-heading {
    text-transform: capitalize;
    color: var(--Primary_text);
    margin-bottom: 0.5rem;
}

#section6 .stayConnected .headings .sub-heading {
    color: var(--Primary_text);
}

#section6 .mail {
    width: 38%;
    display: flex;
    background: var(--Pure_white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#section6 .mail input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px;
    font-size: 14px;
    border-radius: 10px;
}

#section6 .mail button {
    background: var(--Main_CTA_buttons_highlights);
    color: var(--Primary_text);
    border: none;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

@media (max-width: 1200px) {
    #section6 .stayConnected {
        gap: 1.5rem;
        width: 50%;
    }
}

@media (max-width: 992px) {
    #section6 {
        padding: 1.5rem 1.8rem;
        justify-content: start;
        gap: 3.2rem;
    }

    #section6 .stayConnected {
        gap: 1.5rem;
        width: 48%;
    }

    #section6 .mail {
        width: 44%;
    }
}

@media (max-width: 768px) {
    #section6 {
        margin: 1rem;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    #section6 {
        padding: 1.5rem;
    }
    #section6 .stayConnected {
        gap: 1.5rem;
        width: 100%;
    }

    #section6 .mail {
        width: 100%;
    }   

    #section6 .mail  input {
        width: 100%;
        border-radius: 8px;
    }
}