/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
@font-face {
    font-family: 'Welcome Drama';
    src: url('../fonts/Welcome_Drama.woff2') format('woff2'),
         url('../fonts/Welcome_Drama.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* =======================
	Customization
======================== */
:root {
    /* Base Font Size */
    font-size: 62.5%; /* 1rem = 10px, 1em = 10px */

    /* Colors */
	--dark-color: #131313;
    --white-color: #ffffff;
    --gray-color: #A7A7A7;
    --primary-color: #003fa5;
    --secondary-color:#F900CA;
    --accent-color: hsl(14, 90%, 55%);
    --background-color: hsl(0, 0%, 98%);
    --text-color: hsl(0, 0%, 20%);
    --border-color: hsl(0, 0%, 85%);


    /* Spacing (Padding & Margin in rem) */
    --spacing-xs: 0.4rem; /* 4px */
    --spacing-sm: 0.8rem;  /* 8px */
    --spacing-md: 1.6rem;  /* 16px */
    --spacing-lg: 2.4rem;  /* 24px */
    --spacing-xl: 3.2rem;  /* 32px */

    /* Typography */
    --font-primary: "Poppins", serif;
    --font-secondary: "Unbounded", serif;
    --font-ternary: 'Welcome Drama', sans-serif;

    /* Font Sizes in rem (Now `1rem = 10px`) */
    --font-size-xs: 1.2rem; /* 12px */
    --font-size-sm: 1.4rem; /* 14px */
    --font-size-md: 1.6rem; /* 16px */
    --font-size-lg: 1.8rem; /* 18px */
    --font-size-xl: 2.4rem; /* 24px */
    --font-size-xxl: 3.2rem; /* 32px */

    /* Headings */
    --h1-size: 3.6rem; /* 36px */
    --h2-size: 3.0rem; /* 30px */
    --h3-size: 2.4rem; /* 24px */
    --h4-size: 2.0rem; /* 20px */
    --h5-size: 1.8rem; /* 18px */
    --h6-size: 1.6rem; /* 16px */

     /* Border Radius Variables */
     --border-radius-sm: 0.4rem;   /* 4px */
     --border-radius-md: 1.6rem;   /* 12px */
     --border-radius-lg: 2rem;     /* 20px */
     --border-radius-xl: 3rem;     /* 30px */
     --border-radius-circle: 50%;  /* Full Circle */
     
     /* Border Width Variables */
     --border-width-thin: 0.1rem;   /* 1px */
     --border-width-medium: 0.2rem; /* 2px */
     --border-width-thick: 0.4rem;  /* 4px */
 
     /* Border Colors */
     --border-color-light: #ddd;
     --border-color-dark: #333;
     --border-color-primary: #ff00b5;
}

/* Usage Example */
html {
    font-size: 62.5%; /* 1rem = 10px */
    margin: 0px 0px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background: var(--background-color);
    font-size: var(--font-size-md); /* 1.6rem = 16px */
    margin: 0px 0px;
}

html, 
body,
html body * {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

h1 { font-size: var(--h1-size); font-weight: bold; margin: 0px 0px;}
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }
h6 { font-size: var(--h6-size); }
p{ font-size: var(--h6-size); margin: 0px 0px; font-weight: 400;}

ul, 
ul li {list-style: none; list-style-type: none; margin: 0px 0px; padding: 0px 0px;}
ul li a{display: block;}

.container {
    width: 100%;
    max-width: 120rem; /* 1200px */
    margin: 0 auto;
    padding: var(--spacing-md);
}

.button {
    background: var(--primary-color);
    color: #fff;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-md);
    border: 1px solid var(--border-color);
}

/* Landing Page Style Begin */
.page-container{
	width: 100%;
	max-width: 131rem;
	margin: 0 auto;
	padding: 0rem 1.5rem;
}

/* Landing Page Header */
.page-header {
    padding: 2.5rem 0rem;
    background: var(--primary-color);
}

 .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.6rem; /* 20px */
    font-size: 1rem;
}

.nav-links li {
    font-size: 1.6em; /* 16px */
    line-height: 1.5em;
}

.nav-links a {
    text-decoration: none;
    transition: 0.3s;
    color: var(--white-color);
    line-height: 2.5em;
}

.book-call{
    color: var(--white-color);
    background-color: var(--secondary-color);
    padding: 0px 2.454rem;
    border-radius: 0.8rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.book-call:hover {
    color: var(--secondary-color);
    background-color: var(--white-color);
}

/* Hero Banner Section */
.hero-section{
    background-color: var(--primary-color);
    padding: 4.8rem 0rem;
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    color: var(--white-color);
}

.hs-container{
    width: 100%;
	max-width: 110.5rem;
	margin: 0 auto;
	padding: 0rem 1.5rem;
}

.hs-row {
    display: grid;
}

.hero-section h1{
    font: normal normal 4em/1em var(--font-secondary);
    color: inherit;
    margin-bottom: 1rem;
}

.hero-section p{
    font: normal normal 2.6em/1.12em var(--font-ternary);
    color: inherit;
    margin-bottom: 3.2rem;
}

/* Video Section */
 /* Video Container */
 .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 896px;
    height: 0;
    padding-bottom: 56.25%; /* Aspect Ratio (16:9) */
    margin: 0rem auto 3.2rem auto;
    -webkit-box-shadow: 0px 25px 50px rgb(0 0 0 / 24%);
       -moz-box-shadow: 0px 25px 50px rgb(0 0 0 / 24%);
            box-shadow: 0px 25px 50px rgb(0 0 0 / 24%);
}

/* Embedded Video */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none; /* Hide video initially */
}

/* Thumbnail */
.thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

/* Play Button */
.play-btn {
    width: 131px;
    height: 131px;
    background: rgba(0, 0, 0, 0.0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Hide Thumbnail when Video Plays */
.video-wrapper.active .thumbnail {
    display: none;
}

.video-wrapper.active iframe {
    display: block;
}



.checkbox-container {
    background: white;
    padding: 2rem;
    border-radius: 1.2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 60rem;
    border: 2px solid #ff00b5;
    margin: 0px auto;
}
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ff00b5;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}
input[type="checkbox"]:checked::before {
    content: "✔";
    font-size: 14px;
    color: #ff00b5;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.checkbox-wrapper label {

    cursor: pointer;
    font-size: 1.4em;
    line-height: 1em;
    color: #333;
}

p.bookingText{
    font: normal 400 1.4em/1em var(--font-primary);
    color: var(--secondary-color);
    background-color: var(--white-color);
    border: 3px solid yellow;
    display: inline-block;
    padding: .8rem 1.2rem;
    border-radius: 1.2rem;
    margin-bottom: 2rem;
}

.primary-button{
    font: normal normal 2em/1.3em var(--font-secondary);
    display: block;
    width: 100%;
    max-width: 49.8rem;
    border: none;
    padding: 1.6rem 1.6rem 1.6rem 1.6rem;
    color: var(--white-color);
    margin: 0rem auto 2rem auto;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-md);
}

.primary-button:hover {
    background-color: var(--white-color);
    color: var(--secondary-color);
}

.calendly-btn {
    background-image: url('../img/calendly-icon.svg');
    background-repeat: no-repeat;
    background-position: 2.5rem 1.2rem;
    background-size: 2.5rem;
    padding-left: 4rem;
}

.calendly-btn:hover{
    background-image: url('../img/calendly-icon-hover.svg');
}

p.note{
    font: normal normal 1.8em/1em var(--font-primary);
    background: transparent url('../img/clock.svg') no-repeat 0px center/contain;
    width: 100%;
    max-width: 62rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
}

/* Claim Section Styles */
.claim-section {
    font-size: 1rem;
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 7.4rem 0rem 4.3rem 0rem;
}

.claim-section h1{
    margin-bottom: 3.4rem;
    line-height: 1em;
}

.underline{
    position: relative;
    display: inline-block;
}

.underline:after{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 0.6rem;
    background: transparent url('../img/underline.svg') no-repeat left bottom/cover;
    left: 0px;
    bottom: -0.3em;
}

.claim-section p{
    font-size: 2em;
    line-height: 1em;
}

.claim-section .calendlySection{
    margin: 3.2rem auto 5rem auto;
}

.ceo-wrap img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto auto 0.6rem auto;
}

.ceo-wrap p{
    font-size: 1.6em;
    line-height: 1em;
    font-weight: 400;
}

/* Landing Page Footer */
.page-footer{
	background: var(--dark-color);
	padding: 6.4rem 0rem 4.8rem 0rem;
    color: var(--white-color);
    font-size: 1rem;
}

.ft-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20rem;
    margin: 0px auto;
}


.ft-logo {display: block; margin: 0px 0px var(--spacing-md) 0px;}
.ft-logo img {display: block; max-width: 100%; height: auto;}
.page-footer p{font-size: 2em;}
.page-footer h4{
    margin: 0 0 1.2rem 0;
    font-weight: 400;
    color: var(--gray-color);
    line-height: 1.5em;
}

.getInTouch a {
    display: block;
    width: 100%;
    font-size: 2em;
    line-height: 1.5em;
    font-weight: 400;
    padding-left: 4.2rem;
    color: var(--white-color);
    text-decoration: none;
    margin-bottom: 1.6rem;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}

.getInTouch a:last-child {
    margin-bottom: 0px;
}
.tel-icon{background-image: url('../img/phone.svg');}
.mail-icon{background-image: url('../img/mail.svg');}
.ft-social {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2.5rem;
}

.ft-social a {
    display: block;
    width: 4.8rem;
}

.ft-social a img{
    display: block;
    max-width: 100%;
    height: auto;
}

.copyright{
    border-top: 1px solid var(--white-color);
    padding-top: 3.2rem;
    margin-top: 13.4rem;
}

.copyright p{
    font-size: 2em;
    line-height: 1.5em;
    text-align: center;
    display: block;
    margin: 0px auto;
    max-width: 88rem;
    color: var(--white-color);
}

/* Responsive */
@media only screen and (max-width: 1199px){
    :root {font-size: 52.5%;}
    .nav-links{font-size: 1.2rem;}
    .ft-row {gap: 14rem;}
}

@media only screen and (max-width: 991px){
    :root {font-size: 42.5%;}
    .nav-links{font-size: 1.5rem;}
    .ft-row {gap: 12rem;}
}

@media only screen and (max-width: 767px){
    .ft-row {grid-template-columns: repeat(1, 1fr); text-align: center; gap: 4rem;}
    .play-btn {
        width: 70px;
        height: 70px;
    }

    .hero-section h1{line-height: 1.3em;}
    p.bookingText{font-size: 1.6em; line-height: 1.6em;}
    p.note{
        font-size: 14px;
        line-height: 18px;
        background-size: 3.5rem;
        padding: 0px 0px 0px 28px;
        width: 100%;
        max-width: 330px;
        background-position: left top;
        margin-bottom: 0px;
    }
    .getInTouch{text-align: center;}
    .getInTouch a{margin-left: auto; margin-right: auto; font-size: 1.4em;}
    .tel-icon{max-width: 20rem;}
    .mail-icon{max-width: 33rem;}
    .ft-social {gap: 1.5rem; margin-left: auto; margin-right: auto; width: 23rem;}
    .page-footer .column{font-size: 1.6rem;}
    .page-footer h4{font-size: 1.6em;}
    .page-footer p{font-size: 1.4em;}
    .copyright{margin-top: 5rem; font-size: 1.5rem;}
    .ft-logo img {margin: 0px auto;}


    /*.checkbox-container {
        width: 100%;
        font-size:1.4rem;
    }
    .checkbox-wrapper label{line-height:1.5em;}
    input[type="checkbox"]{width:22px;}
    p.note {
    width: 100% !important;
    padding-left:5rem;
    font-size: 2.5em !important;
    line-height:1.3em !important;
    }
.page-footer .column {
        max-width: 200px;
        margin: 0px auto;
        text-align:center;
}
.ft-logo img{margin: 0px auto;}
.ft-row {
        gap: 5rem;
}
.copyright {
    margin-top: 4.4rem;
}*/

}