/* Reset CSS */
*,
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

:focus {
    outline: 0;
}

*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;

}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Resetting default table styles */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Resetting default input, button, and textarea styles */
input,
button,
textarea {
    border: none;
    outline: none;
    background: none;
    font: inherit;
    color: inherit;
}

/* Resetting default HTML5 elements styling */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
    display: block;
}

/*---------------------------------------------
Global Start
---------------------------------------------*/


:root {

    /* background-color */
    --white: #ffffff;
    --white-light: #f9f9f9;
    --white-deep: #f0f0f0;

    --head: #faf1e6;
    --head-light: #f7efe7;
    --head-deep: #e9e3df;
    --base: #f7f7f7;
    --base-light: #fbfbfb;
    --base-deep: #efefef;
    --base-deeper: #eeebeb;

    --p-green: #16c47f;
    --p-blue: #067fd0;
    --p-yellow: #ff9d23;
    --p-red: #ef233c;

    /* fonts  */
    --font-18: 1.8rem;
    --font-16: 1.6rem;
    --font-22: 2.2rem;
    --font-20: 2rem;


    --font-dark: #2a2d34;
    --font-gray: #2d3748;
    --font-full-dark: #000;

    --font-light: #f2efed;
    --font-full-light: #fff;

    /* border-radius */
    --round: 10px;
    --round-light: 5px;
    --round-full: 20px;

    --round-light-t: 5px 5px 0 0;
    --round-t: 10px 10px 0 0;
    --round-full-t: 20px 20px 0 0;

    --round-light-b: 0 0 5px 5px;
    --round-b: 0 0 10px 10px;
    --round-full-b: 0 0 20px 20px;

    /* shadows */
    --nav-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    --box: 0 0 6px rgb(0, 0, 0, 0.4);
    --box-light: 0 0 4px rgb(0, 0, 0, 0.3);
    --box-out: 0 0 2px rgb(0, 0, 0, 0.2);

}

a {
    color: var(--half-dark);
    cursor: pointer;
    text-decoration: none !important;
}

a:hover {
    color: var(--font-dark);
}

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    outline: none;
    border: none;
    text-decoration: none;
}

*::selection {
    background: var(--p-red);
    color: #fff;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* scroll-padding-top: 6rem; */

}

body {
    height: 100vh;
    overflow-x: hidden;
    background-color: var(--base);
    color: var(--font-dark);
    font-size: var(--font-16);
}


/*-------------------------------------------------------------
    MOBILE FIRST STYLES - Module starts 
-------------------------------------------------------------*/

.cover-wall {
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
}

.cover {
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 2em 0;
}

.bg-a {
    background: var(--base-deeper);
}

.bg-b {
    background: var(--base-deep);
}

/* crates  */
.crate {
    margin: 0.5em;
    padding: 0.5em;
}

/*-------------------------------------------------------------
    TABLET STYLES - 768px and up
-------------------------------------------------------------*/
@media screen and (min-width: 768px) {
    .crate {
        margin: 1em;
        padding: 1em;
    }
}

/*-------------------------------------------------------------
    DESKTOP STYLES - 1024px and up
-------------------------------------------------------------*/
@media (min-width: 1024px) {
    .center {
        max-width: 1400px !important;
        margin: 0 auto;
    }
}

/*-------------------------------------------------------------
    MOBILE FIRST STYLES - Header starts navbar
-------------------------------------------------------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--head);
    color: var(--font-dark);
    z-index: 1000;
    box-shadow: var(--nav-shadow);
    padding: 0 1em;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logos {
    padding: 0.4em;
    height: 100%;
}

.logos .logo {
    display: none;
    cursor: pointer;
    height: 100%;
}

.logos .logo-mini {
    display: block;
    cursor: pointer;
    height: 100%;
}

.logos:hover {
    background: var(--head-light);
    border-radius: var(--round);
}

/* nav icons  */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    z-index: 1000;
}

.nav-icons img {
    cursor: pointer;
    padding: 0.5em;
    height: 96%;
}

.nav-icons img:hover {
    background: var(--head-light);
    border-radius: var(--round);

}

.nav-icons .nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 100%;
}

.nav-icons .nav-dropdown i {
    font-size: 2.6rem;
    padding: 0.6em;
    transition: color 0.3s ease;
    color: var(--p-yellow);
}

.nav-icons .nav-dropdown i:hover {
    color: var(--p-red);
    background: var(--head-light);
    border-radius: var(--round);

}

.nav-icons .nav-dropdown .dropdown-card {
    position: absolute;
    top: 62px;
    right: 0;
    min-width: 220px;
    background: var(--head-deep);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: var(--round);
    padding: 1em;
    display: none;
}

/* sidebar  */

.sidebar {
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 60px;
    font-size: var(--font-20);
    display: none;
    padding-bottom: 80px;
    background: var(--head-deep);
    border-radius: 0 0 var(--round-full) var(--round-full);
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar nav ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--font-dark);
    text-decoration: none;
    border-bottom: 0.4px solid var(--head-light);
    transition: background 0.3s ease;
}

.sidebar nav ul li a:hover {
    background: var(--head-light);
    border-radius: var(--round);
}

.dropdown .dropdown-toggle {
    justify-content: space-between;
    display: flex;
    width: 100%;
}

.dropdown .dropdown-toggle i:last-child {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i:last-child {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
}

/* Active Menu Item */
.sidebar nav ul li a.active,
.navbar .sidebar nav ul li a.active {
    background: var(--p-yellow);
    color: var(--font-light);
    border-radius: var(--round);
    font-weight: bold;

}

.sidebar nav ul li.dropdown.active > a,
.navbar .sidebar nav ul li.dropdown.active > a {
    background: var(--p-yellow);
    color: var(--font-light);
    border-radius: var(--round);
}



/*-------------------------------------------------------------
    TABLET STYLES - 768px and up
-------------------------------------------------------------*/
@media screen and (min-width: 768px) {
    .logos .logo {
        display: block;
    }

    .logos .logo-mini {
        display: none;
    }

    .sidebar {
        width: 300px;
        height: 100vh;
        font-size: var(--font-18);
    }
}

/*-------------------------------------------------------------
    DESKTOP STYLES - 1024px and up
-------------------------------------------------------------*/
/* note: 1024px is best for 5 menu items in navbar */
@media (min-width: 1024px) {
    .navbar {
        justify-content: space-between;
    }

    .navbar .sidebar {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        display: block;
        padding: 0;
        font-size: var(--font-16);
    }

    .navbar .sidebar nav ul {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .sidebar nav ul li a {
        border-bottom: none;

    }

    .navbar .sidebar nav ul li.dropdown .dropdown-menu li {
        border-bottom: 0.4px solid var(--head-light);

    }

    .navbar .sidebar nav ul li.dropdown .dropdown-menu {
        position: absolute;
        background: var(--head-deep);
        top: 62px;
        min-width: 200px;
        display: none;

    }

    .navbar .sidebar nav ul li.dropdown.active .dropdown-menu {
        display: block;
    }
}

.headerSpace {
    height: 60px;
}

/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/


/*-------------------------------------------------------------
    MOBILE FIRST STYLES - Login page starts
-------------------------------------------------------------*/
.auth {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 60px);
}

.form-container {
    background: var(--white);
    backdrop-filter: blur(10px);
    border-radius: var(--round);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    /* padding: 40px; */
    width: 100%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
    margin: 1em;
}


/* .form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--p-blue), var(--p-green));
} */


.responsive-form {
    transition: all 0.3s ease;
}

.responsive-form.hidden {
    display: none;
}

.form-head {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 0;
    font-size: 2.5rem;
    background-color: var(--head);
    color: var(--font);
    font-weight: bold;
    border-radius: var(--round-t);
}

.form-head h2 {
    color: var(--font-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.form-body {
    padding: 1em 1.5em;
}

.form-message {
    text-align: center;
    margin-bottom: 1em;
}

.form-message p {
    color: var(--font-gray);
    margin: 0;
    line-height: 1.5;
}


.form-group.hidden {
    display: none;
}

.form-group label {
    display: block;
    color: #2d3748;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.025em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    color: #2d3748;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #a0aec0;
}

/* Radio & Checkbox Groups */
.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    margin-bottom: 8px;
}

/* Customizing Checkbox */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--success);
}

/* Customizing Radio */
input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--success);
}

.input-msg {
    margin-top: 8px;
    /* font-size: 14px; */
    color: #e53e3e;
    min-height: 20px;
    display: flex;
    align-items: center;
}


/* Button styles */
.btn-container {
    margin: 0.5em 0;
}

.btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: var(--p-green);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.disabled-btn {
    background: var(--font-gray);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.primary-btn:active {
    transform: translateY(0);
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.primary-btn:hover::before {
    left: 100%;
}

/* Form footer */
.form-footer {
    text-align: center;
    padding: 0.5em 0 1em 0;
    border-top: 1px solid #e2e8f0;
}

.form-footer p {
    margin: 8px 0;
    font-size: 14px;
    color: #718096;
}

.form-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-footer a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Authentication options */
.auth-options {
    display: none;
    margin-top: 20px;
}

.auth-options.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.auth-option:hover {
    border-color: #667eea;
    background: white;
}

.auth-option.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.auth-option input[type="radio"] {
    margin-right: 15px;
    width: auto;
    padding: 0;
    background: none;
}

.auth-option-content {
    flex: 1;
}

.auth-option h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.6rem;
}

.auth-option p {
    color: #7f8c8d;
    font-size: 1.2rem;
    margin: 0;
}

/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    width: 100%;
    height: 100%;
    /* font-family: var(--default-font); */
    color: var(--font-dark);
    background-size: cover;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-top {
    margin: 4em 0 1em 0;
    padding: 2em;
}

.hero-title {
    margin: 0;
    font-size: 6rem;
    font-weight: 700;
    line-height: 70px;
}

.hero-title span {
    color: var(--p-red);
    /* font-family: var(--logo-font); */
}

.hero-text {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    /* line-height: 56px; */
}

.hero-img {
    /* max-width: 600px; */
    height: auto;
}

.hero-btn {
    margin-top: 2em;
}

.hero-btn a {
    display: inline-block;
    padding: 1em 3em;
    margin: 1em;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--p-yellow);
    border: 2px solid var(--p-red);
    transition: all 0.3s ease-in-out;
}

.hero-btn a.active {
    background: var(--p-red);
    color: var(--font-light);
}

.hero-btn a:hover {
    background: var(--p-yellow);
    color: var(--font-light);
    border: 2px solid var(--p-yellow);
}

/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/
/*--------------------------------------------------------------
# section head
--------------------------------------------------------------*/
.section-head {
    text-align: center;
    padding: 2em 0;
}

.section-content {
    padding: 2em 0;
}

.section-title {
    margin-bottom: 1em;
    font-size: 2.5rem;
    font-weight: 600;
}

.section-title:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--p-red);
    left: 0;
    right: 0;
    margin: auto;
}

.section-text {
    margin-bottom: 1em;
    font-size: 1.8rem;
}

/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/
/*--------------------------------------------------------------
MOBILE FIRST STYLES - feature section 
--------------------------------------------------------------*/
.feature-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.5em;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: var(--round);
    transition: all 0.3s ease;
    margin: 1em auto;
}

.feature-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 4rem;
    margin-right: 15px;
    color: var(--p-red);
}

.feature-title {
    margin: 0;
    font-size: 2rem;
    color: #333;
    font-weight: 600;
}

.feature-text {
    margin: 0;
    font-size: 1.4rem;
    color: #666;
}

/*-------------------------------------------------------------
    TABLET STYLES - 768px and up
-------------------------------------------------------------*/
@media screen and (min-width: 768px) {
    .feature-item {
        width: 46%;
    }
}

/*-------------------------------------------------------------
    DESKTOP STYLES - 1300px and up
-------------------------------------------------------------*/
@media (min-width: 1300px) {
    .feature-item {
        max-width: 24%;
        padding: 1em;
        margin: 0.4em 0;
    }
}


/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/
/*--------------------------------------------------------------
MOBILE FIRST STYLES - service section
--------------------------------------------------------------*/

.service-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    background-color: var(--white);
    border-radius: var(--round);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: auto;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* min-height: 500px; */
}

/* .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
} */

.service-text {
    flex: 1;
    padding: 2em 1.5em;
}

.service-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1em;
}


.service-text ul {
    list-style: none;
    padding: 0;
    margin: 2em 0;
}

.service-text ul li {
    display: flex;
    align-items: start;
    margin: 0.5em 0;
}

.service-text ul li i {
    margin: 0.2em 0.5em;
    color: var(--p-yellow);
    font-size: 2rem;
}

.service-text ul li span {
    font-size: 1.4rem;
    font-weight: bold;
    display: inline;
}

.more-btn {
    float: right;
    padding: 0.5em 1em;
    background-color: var(--p-yellow);
    color: var(--light);
    border-radius: var(--round);
    font-size: 1.8rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.more-btn:hover {
    transform: translateY(-10px);
    background-color: var(--p-red);
    color: var(--font-light);
}

.service-img {
    flex: 1;
    height: 200px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*-------------------------------------------------------------
    DESKTOP STYLES - 1024px and up
-------------------------------------------------------------*/
@media (min-width: 1024px) {
    .service-item:nth-child(odd) {
        flex-direction: row;
    }

    .service-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .service-img {
        height: 500px;
        width: 100%;
    }
}

/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/

/*--------------------------------------------------------------
MOBILE FIRST STYLES - youtube section -ci
--------------------------------------------------------------*/
.channel-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.channel-box {

    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--round-full);
    box-shadow: var(--box-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0.5em 0;
}

.channel-box:hover {
    transform: translateY(-5px);
}

.channel-box img {
    width: 100%;
    height: auto;
    padding: 2rem;
}

.channel-box-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--base);
    padding: 1rem 0;
    width: 100%;
    border-radius: var(--round-full-b);

}

.channel-box-bottom .visit-btn {

    background-color: var(--p-red);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: var(--round-full);
    text-decoration: none;
    font-weight: 600;
}

.channel-box-bottom p {
    padding: 0.8rem 1.8rem;
    border-radius: var(--round-full);
    font-size: var(--font-18);
    font-weight: 600;
}

.channel-box-bottom p i {
    margin-right: 10px;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.video-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.video-date {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 15px;
}


/*-------------------------------------------------------------
    TABLET STYLES - 768px and up
-------------------------------------------------------------*/

@media (min-width: 768px) {
    .channel-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*-------------------------------------------------------------
    DESKTOP STYLES - 1024px and up
-------------------------------------------------------------*/
@media (min-width: 1024px) {
    .channel-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/

/*--------------------------------------------------------------
# demo url section -du
--------------------------------------------------------------*/

.url-transformation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.url-box {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--box-light);
    padding: 30px;
    width: 100%;
    max-width: 450px;
    transition: all 0.3s ease;
}

.url-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box);
}

.url-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.url-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.url-header i {
    font-size: 1.8rem;
    color: var(--p-green);
}

.url-example {
    background: var(--white-light);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
}

.url-example p {
    margin: 0;
    color: #555;
    font-family: monospace;
    font-size: 1.5rem;
    word-break: break-all;
}


/* Transformation Animation */
.transformation-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.magic-wand {
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.magic-wand i {
    font-size: 1.8rem;
    color: var(--p-red);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* URL Benefits */
.url-benefits {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.url-benefits span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.url-benefits i {
    color: var(--p-green);
}

/* Stats Preview */
.url-stats-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    /* width: 180px; */
    box-shadow: var(--box-light);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box);
}

.stat-card i {
    font-size: 2rem;
    color: var(--p-yellow);
    margin-bottom: 15px;
}

.stat-card h4 {
    font-size: 1.8rem;
    margin: 0 0 5px 0;
}

.stat-card p {
    color: #666;
    margin: 0;
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .url-transformation-container {
        flex-direction: column;
    }

    /* .transformation-animation {
        margin: 20px 0;
    } */

    .magic-wand {
        transform: rotate(90deg);
    }
}

@media (max-width: 576px) {
    .url-action {
        flex-direction: column;
    }

    .url-button {
        padding: 12px;
    }

}

/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/
/*--------------------------------------------------------------
# steps section -du
--------------------------------------------------------------*/
.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-direction: column;
    gap: 20px;
}

.step-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    width: 100%;
    border: 2px solid var(--p-red);
    box-shadow: var(--box-light);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--p-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: bold;
    position: relative;
    font-size: 30px;
}

.step-icon {
    font-size: 5rem;
    color: var(--p-yellow);
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-description {
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-button {
    display: inline-block;
    background: var(--p-red);
    color: var(--font-light);
    padding: 0.5em 2em;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: 2em;
}

.step-button:hover {
    background: var(--p-yellow);
    color: var(--font-light);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .steps-container {
        flex-direction: row;
    }

    .steps-container::before {
        content: "";
        position: absolute;
        top: 10%;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--p-red) 100%);
        z-index: 0;
    }

    .step-card {
        width: 100%;
        margin-bottom: 2rem;
    }

    .connector-line {
        display: none;
    }
}

/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/
/*--------------------------------------------------------------
# Pricing Section -du -rr
--------------------------------------------------------------*/
.pricing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-item {
    background: var(--white);
    border-radius: var(--round);
    padding: 2em;
    text-align: center;
    box-shadow: var(--box-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pricing-item h2 {
    font-size: 2.5rem;
    color: var(--font-dark);
    margin-bottom: 0.4em;
}

.pricing-item .price {
    font-size: 3rem;
    color: var(--p-red);
    margin-bottom: 1em;
}

.pricing-item .price::after {
    content: "";
    position: relative;
    display: block;
    height: 1px;
    background: var(--p-yellow);
    margin: auto;
}

.pricing-item .price::before {
    content: "";
    position: relative;
    display: block;
    height: 1px;
    background: var(--p-yellow);
    margin: auto;
}

.pricing-item .price span {
    font-size: 1.4rem;
    color: #666;
}

.pricing-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2em;
}

.pricing-item ul li {
    font-size: 2rem;
    color: var(--font-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pricing-item ul li i {
    margin-right: 10px;
}

.pricing-item ul li .fa-check {
    color: var(--p-green) !important;
}

.pricing-item ul li .fa-times {
    color: var(--p-red) !important;
}


/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/
/*--------------------------------------------------------------
MOBILE FIRST STYLES - about section
--------------------------------------------------------------*/

.about-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    margin-top: 2em;
}

.about-text {
    flex: 1;
}

.about-text p {
    /* font-size: 1.1rem; */
    /* color: #666; */
    margin-bottom: 2em;

}

.about-img {
    flex: 1;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
    }

    .about-img {
        height: 400px;
    }
}

/* Founder Section */

.founder-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    margin: 2rem auto;
}

.founder-image {
    border: 10px solid var(--white);
    flex: 1;
    width: 100%;
    max-width: 350px;
    border-radius: var(--round-full);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.founder-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

/* Founder Details */
.founder-details {
    flex: 1;
}

.founder-name {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-name h3 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.founder-name h3::after {
    content: "";
    display: block;
    height: 3px;
    background-color: var(--p-red);
    width: 100%;
    border-radius: 2px;
}

.founder-name span {
    display: block;
    background: #e8f0fe;
    color: #2a5bd7;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 0.6rem;
    width: fit-content;
}


.founder-bio p {
    margin: 1.2rem 0;
    line-height: 1.7;
    color: #4a4a4a;
}

/*-------------------------------------------------------------
    DESKTOP STYLES - 1024px and up
-------------------------------------------------------------*/
@media (min-width: 1024px) {
    .founder-profile {
        flex-direction: row;
        text-align: left;
    }

    .founder-name {
        align-items: start;
    }

}

/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/
/*--------------------------------------------------------------
MOBILE FIRST STYLES - company-partners section
--------------------------------------------------------------*/

.company-partners-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.company-partners-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.company-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    flex: 1;
    min-width: 350px;
    max-width: 500px;
}

.company-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.company-box a {
    text-align: center;
}

.company-box img {
    margin: 1em 0;
    max-height: 100px;
}

.company-box h2 {
    color: #2c3e50;
    margin-bottom: 0.5em;
    font-size: 2.5rem;
}

.company-box p {
    color: #555;
    font-size: 1.8rem;
}

/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/
/*--------------------------------------------------------------
MOBILE FIRST STYLES - why section
--------------------------------------------------------------*/
.why-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-item {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.why-item i {
    font-size: 3rem;
    color: var(--p-blue);
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.why-item p {
    /* font-size: 1rem; */
    color: #666;
}

/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/
/*--------------------------------------------------------------
MOBILE FIRST STYLES - contact-us section
--------------------------------------------------------------*/
.contact-us-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.contact-us-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.contact-us-box {
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-us-box:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-us-box h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin: 0.5em 0;
    text-align: center;
}

.contact-us-box p,
.contact-us-box a {
    margin: 0.4em 0;
    text-align: center;
}

.contact-us-box p i {
    margin-right: 0.5em;
}

.contact-us-box .box-icon {
    color: var(--p-blue);
    font-size: 2rem;
    padding: 0.8em;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--p-red), transparent 40%);
    margin-bottom: 0.5em;
}

/* Form Styling */
.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form button {
    width: 100%;
    padding: 10px;
    background-color: var(--p-blue);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form button:hover {
    background-color: #2980b9;
}

.map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}

/*-------------------------------------------------------------
    DESKTOP STYLES - 1024px and up
-------------------------------------------------------------*/
@media (min-width: 1024px) {
    .contact-us-row {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .contact-us-box {
        flex: 1;
        max-width: unset;
    }

    .map iframe {
        height: 450px;
    }
}

/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/
/*--------------------------------------------------------------
MOBILE FIRST STYLES - faq section
--------------------------------------------------------------*/
.faq-content {
    margin-top: 40px;
}

.faq-item {
    border-radius: 5px;
    margin-bottom: 15px;
    cursor: pointer;
}

.faq-item h3 {
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--base-light);
}

.faq-item p {
    background: var(--white);
    padding: 1em;
    display: none;
}

.faq-item.active p {
    display: block;
}

/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/
/*--------------------------------------------------------------
MOBILE FIRST STYLES - footer section
--------------------------------------------------------------*/
.footer {
    background-color: var(--p-red);
    color: var(--font-light);
    padding: 40px 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    margin: 0 0 2em 0;
}

.footer-links ul,
.footer-social ul {
    list-style: none;
    padding: 0;
    margin: 1em 0;
}

.footer-links a,
.footer-social a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    opacity: 0.8;
}

/* Social icons horizontal on mobile */
.footer-social ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social i {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.footer-social i:hover {
    transform: scale(1.1);
}

.footer-contact p {
    margin: 8px 0;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding: 1em 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
}

/*-------------------------------------------------------------
    DESKTOP STYLES - 1024px and up
-------------------------------------------------------------*/
@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .footer-social i {
        font-size: 2.5rem;
    }

    .footer-bottom {
        font-size: 1.4rem;
    }
}

/*-------------------------------------------------------------
    END
-------------------------------------------------------------*/
/*--------------------------------------------------------------
# whatsapp section
--------------------------------------------------------------*/

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--p-green);
    color: white;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s, background-color 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Call Button */
.call-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--p-blue);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s, background-color 0.3s;
}

.call-float:hover {
    transform: scale(1.1);
    background-color: #0A84C1;
}



/*-------------------------------------------------------------
    THE END
-------------------------------------------------------------*/
