/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
    /**
     * colors
     */

    --green-blue-crayola: hsl(202, 75%, 47%);
    --prussian-blue: hsl(202, 72%, 15%);
    --eerie-black: hsl(210, 11%, 15%);
    --alice-blue: hsl(203, 100%, 97%);
    --light-gray: hsl(0, 0%, 80%);
    --cultured-1: hsl(0, 0%, 94%);
    --cultured-2: hsl(0, 0%, 95%);
    --cultured-3: hsl(0, 0%, 95%);
    --plutinum: hsl(0, 0%, 91%);
    --black_60: hsla(0, 0%, 0%, 0.6);
    --white: hsl(0, 0%, 100%);
    --text-color: #272e5b;
    --black: hsl(0, 0%, 0%);
    --onyx: hsl(0, 0%, 24%);

    --indigo-dye: hsl(232.94deg 38.93% 25.69%);
    --logo: hsl(216.99deg 100% 59.61%);
    --dark-orange: #272e5b;
    --black: hsl(252deg 3.82% 25.69%)




    /**
     * typography
     */

    --ff-oswald: "Oswald", sans-serif;
    --ff-rubik: "Rubik", sans-serif;

    --fs-1: 6rem;
    --fs-2: 5rem;
    --fs-3: 4rem;
    --fs-4: 3rem;
    --fs-5: 2.2rem;
    --fs-6: 2rem;
    --fs-7: 1.8rem;
    --fs-8: 1.5rem;
    --fs-9: 1.4rem;
    --fs-10: 1.2rem;

    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;

    /**
     * spacing
     */

    --section-padding: 50px;

    /**
     * shadow
     */

    --shadow-1: 2px 0 50px hsla(0, 0%, 0%, 0.2);
    --shadow-2: 0px 40px 60px hsla(202, 75%, 47%, 0.7);
    --shadow-3: 0px 0px 60px hsla(202, 75%, 47%, 0.5);

    /**
     * transition
     */

    --transition: 0.25s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}

/*-----------------------------------*\
    #RESET
  \*-----------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a,
img,
time,
span,
input,
button,
ion-icon {
    display: block;
}

img {
    height: auto;
}

input,
button {
    background: none;
    border: none;
    font: inherit;
}

input {
    width: 100%;
}

button {
    cursor: pointer;
}

/* ion-icon {
    pointer-events: none;
} */

html {
    font-family: var(--ff-rubik);
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--onyx);
    font-size: 1.6rem;
    line-height: 1.7;
}

:focus-visible {
    outline-offset: 4px;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: var(--cultured-2);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(0, 0%, 80%);
    border: 2px solid var(--cultured-2);
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(0, 0%, 70%);
}

/*-----------------------------------*\
    #REUSED STYLE
  \*-----------------------------------*/

.container {
    padding-inline: 15px;
}

/* .section {
    padding-top: 50px;
    padding-bottom: 50px;
} */
/* .section { padding-block: var(--section-padding); } */

.h1,
.h2,
.h3 {
    font-family: var(--ff-oswald);
    line-height: 1.2;
    font-weight: var(--fw-600);
}

.h1 {
    font-size: var(--fs-3);
    text-transform: uppercase;
}

.h2,
.h3 {
    color: var(--prussian-blue);
}

.h2 {
    font-size: var(--fs-4);
    margin-bottom: 2.5rem;
}

.h3 {
    font-size: var(--fs-5);
    margin-top: 8px;
    margin-bottom: 8px;
}
/* 
.img-holder {
    background-color: var(--light-gray);
    aspect-ratio: var(--width) / var(--height);
} */

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

.section-subtitle {
    color: var(--dark-orange);
    text-transform: uppercase;
    font-size: var(--fs-6);
    font-family: var(--ff-oswald);
    font-weight: var(--fw-600);
    letter-spacing: 3px;
    margin-block-end: 10px;
}

.section-text {
    line-height: 1.4;
}

.btn {
    position: relative;
    color: var(--white);
    background-color: var(--dark-orange);
    max-width: max-content;
    font-size: var(--fs-9);
    letter-spacing: 1px;
    padding-block: 10px;
    padding-inline: 15px 50px;
}

/* .btn::before,
.btn::after {
    content: "";
    position: absolute;
    transition: var(--transition);
}

.btn::before {
    top: 50%;
    right: 15px;
    width: 25px;
    height: 1px;
    background-color: var(--white);
}

.btn::after {
    top: -6px;
    right: -6px;
    bottom: -6px;
    width: 20px;
    border: 2px solid var(--dark-orange);
    z-index: -1;
} */

/* .btn:is(:hover, :focus)::before {
    width: 33px;
}

.btn:is(:hover, :focus)::after {
    width: 40px;
} */

.grid-list {
    display: grid;
    gap: 30px;
}
.grid-list2 {
    display: grid;
    gap: 30px;
}

.btn-link {
    color: var(--dark-orange);
    font-size: var(--fs-7);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
}

.btn-link > * {
    transform: translateX(-22px);
    transition: var(--transition);
}

.btn-link:is(:hover, :focus) > * {
    transform: translateX(0);
}

.w-100 {
    width: 100%;
}

/*-----------------------------------*\
    #HEADER
  \*-----------------------------------*/

.header-contact {
    display: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* padding-block: 15px; */
    z-index: 4;
    transition: var(--transition);
}

.header.active {
    background-color: var(--white);
}

.header .container {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 30px;
}

.logo {
    font-family: var(--ff-oswald);
    color: var(--white);
    font-size: 3rem;
}

.nav-open-btn {
    color: var(--white);
    font-size: 35px;
}

.nav-open-btn ion-icon {
    --ionicon-stroke-width: 40px;
}

.navbar {
    position: fixed;
    top: 0;
    left: -300px;
    max-width: 300px;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-1);
    z-index: 3;
    visibility: hidden;
    transition: 0.25s var(--cubic-in);
}

.navbar.active {
    visibility: visible;
    transform: translateX(300px);
    transition: 0.5s var(--cubic-out);
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-block-end: 1px solid var(--plutinum);
    padding: 30px 20px;
}

.navbar-top .logo {
    color: var(--onyx);
    font-size: 3rem;
}

.nav-close-btn {
    font-size: 25px;
}

.nav-close-btn ion-icon {
    --ionicon-stroke-width: 40px;
}

.navbar-item:not(:last-child) {
    border-block-end: 1px solid var(--plutinum);
}

.navbar-link {
    /* color: var(--black); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 15px; */
    transition: var(--transition);
}

/* .navbar-link:is(:hover, :focus) {
    background-color: var(--dark-orange);
    color: var(--dark-orange);
    color: white;
} */

.overlay {
    position: fixed;
    inset: 0;
    background-color: var(--black_60);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}
/* ==============================Header========================================= */

.header3 {
    display: flex;
    justify-content: space-between;
    background-color: var(--indigo-dye);
    color: var(--white);
    margin: 0;
    width: 100%;
    height: 50px;
    padding: 15px;
}

.header3-left, .header3-right {
    display: flex;
    align-items: center;
}

.contact3-info {
    display: flex;
    align-items: center;
    margin-right: 10px;
    /* font-size: 14px; */
}

.contact3-info i {
    margin-right: 5px;
    /* color: #333; */
}

.header3-right .social-link {
    margin-left: 10px;
    /* color: #333; */
    text-decoration: none;
    /* font-size: 14px; */
}

.header3-right .social-link:hover {
    color: #007bff;
}

@media (max-width: 600px) {
    .header3 {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .hero-content{
        /* top: 45% !important; */
    }

    .header3-left, .header3-right {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .contact3-info, .header3-right .social-link {
        font-size: 12px;
    }

}
/*-----------------------------------*\
    #HERO
  \*-----------------------------------*/
  /* .carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
}

.carousel-item img {
    width: 100%;
    display: block;
}

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2em;
    cursor: pointer;
    z-index: 10;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-indicators button {
    border: none;
    background: gray;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-indicators .active {
    background: white;
} */
/* ==================== */
/* Set the background overlay with z-index -2 */

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -2;
}

/* Set the hero content with z-index 2 */
.hero-content {
    position: absolute;
    top: 30%;
    left: 40%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: white;
    margin-left: 40px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--logo);
}

.hero-text {
    font-size: 1.25rem;
    max-width: 600px;
    color: var(--logo);
    /* margin: 0 auto; */
}

/* Carousel styling with z-index -3 */
.carousel {
    position: relative;
    width: 100%;
    /* height: 100vh;  */
    overflow: hidden;
    z-index: -3;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    display: block;
    height: auto;
}

/* Carousel control buttons positioned outside the carousel */
.carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2em;
    cursor: pointer;
    z-index: 5; /* Ensure buttons are above other content */
    padding: 10px; /* Increase padding for easier clicking */
    width: 50px; /* Fixed width */
    /* height: 50px; */
    text-align: center;
}

/* .carousel-control-prev {
    left: 10px; 
} */

.carousel-control-next {
    right: 0px; /* Position inside the right edge */
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-indicators button {
    border: none;
    background: gray;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-indicators .active {
    background: white;
}
/* ==================== */
/* .hero {
    position: relative;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    padding-block-start: calc(var(--section-padding) + 85px);
    z-index: 3 !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: -2;
} */

/* .hero-content {
    color: var(--logo);
    text-align: center;
    padding: 30px;
} */

.hero-title .span {
    color: var(--white);
    font-size: var(--fs-2);
    font-weight: var(--fw-700);
}

/* .hero-text {
    margin-block: 20px 15px;
} */

.btn-outline {
    max-width: max-content;
    margin-inline: auto;
    font-size: var(--fs-9);
    font-weight: var(--fw-500);
    text-transform: uppercase;
    border: 1px solid var(--white);
    padding: 8px 20px;
    transition: var(--transition);
}

.btn-outline:is(:hover, :focus) {
    background-color: var(--dark-orange);
    border-color: var(--dark-orange);
}

.hero-shape {
    position: absolute;
    z-index: -1;
    animation: move 2s ease-in-out infinite alternate;
}

.hero .shape-1 {
    top: 100px;
    left: 30px;
}

.hero .shape-2 {
    bottom: 80px;
    right: 30px;
}

@keyframes move {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(20px);
    }
}

/*-----------------------------------*\
    #ABOUT
  \*-----------------------------------*/

.about-banner {
    position: relative;
    box-shadow: var(--shadow-2);
    max-width: 300px;
    margin-block-end: 60px;
}

.about .abs-img-2 {
    display: none;
}

.about .abs-img-1 {
    position: absolute;
    bottom: 40px;
    right: 0;
    animation: move 2s ease-in-out infinite alternate;
}

.about :is(.section-title, .section-text) {
    margin-block-end: 20px;
}

.about-list {
    margin-block-end: 40px;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-text {
    font-size: var(--fs-8);
}

.about-icon {
    min-width:fit-content;
    color: var(--dark-orange);
    margin-block-start: 8px;
}

.about-item:not(:last-child) {
    margin-block-end: 10px;
}

/*-----------------------------------*\
    #SERVICE
  \*-----------------------------------*/

.service {
    background-color: var(--alice-blue);
    margin-top: 80px;
}

.service :is(.section-subtitle, .section-title, .section-text) {
    text-align: left;
}

.service .section-title {
    margin-block-end: 20px;
}

.service .section-text {
    margin-block-end: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border: 20px solid var(--cultured-3);
    transition: var(--transition);
}

.service-card:is(:hover, :focus-within) {
    border-color: var(--dark-orange);
}

.service-card .card-icon {
    margin-block-end: 30px;
}

.service-card .card-title .span {
    display: inline-block;
    color: var(--dark-orange);
    font-size: var(--fs-3);
    margin-inline-end: 15px;
}

.service-card .card-text {
    margin-block: 10px 20px;
}

/*-----------------------------------*\
    #FEATURE
  \*-----------------------------------*/

.feature .title-wrapper {
    margin-block-end: 30px;
}

.feature .section-text {
    margin-block: 20px 40px;
}

.feature-card {
    position: relative;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--alice-blue);
    transition: var(--transition);
}

.feature-card:is(:hover, :focus-within) {
    box-shadow: var(--shadow-3);
}

.feature-card::before {
    content: var(--card-number);
    color: var(--cultured-1);
    font-family: var(--ff-oswald);
    font-size: var(--fs-1);
    font-weight: var(--fw-700);
    line-height: 1;
    transition: var(--transition);
}

.feature-card:is(:hover, :focus-within)::before {
    color: var(--dark-orange);
}

.feature-card .card-icon {
    background-color: var(--alice-blue);
    width: 170px;
    height: 170px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    margin-inline: auto;
    margin-block-end: 30px;
}

.feature-card .card-text {
    margin-block: 20px 40px;
}

.feature-card .card-btn {
    color: var(--prussian-blue);
    font-size: 24px;
    border: 2px solid var(--prussian-blue);
    max-width: max-content;
    margin-inline: auto;
    padding: 10px 18px;
}

/*-----------------------------------*\
    #PROJECT
  \*-----------------------------------*/

.project {
    background-color: var(--alice-blue);
}

.project :is(.section-subtitle, .section-title, .section-text) {
    text-align: left;
}

.project .section-text {
    margin-block: 20px 50px;
}

.project-card {
    position: relative;
}

.project-card .action-btn {
    background-color: var(--dark-orange);
    color: var(--white);
    font-size: 28px;
    padding: 16px;
    position: absolute;
    top: 30px;
    left: 30px;
    opacity: 0;
    transition: var(--transition);
}

.project-card:is(:hover, :focus-within) .action-btn {
    opacity: 1;
}

.project-card .card-tag {
    color: var(--dark-orange);
    font-size: var(--fs-9);
}

.project-card .card-content {
    position: relative;
    background-color: var(--white);
    padding: 20px 30px;
    margin-block-start: -50px;
    margin-inline-start: 30px;
}

.project-card .h3 {
    font-size: var(--fs-7);
}

.project-card .card-title {
    transition: var(--transition);
}

.project-card :is(.card-title, .card-link):is(:hover, :focus) {
    color: var(--dark-orange);
}

.project-card .card-link {
    color: var(--prussian-blue);
    font-size: var(--fs-10);
    font-weight: var(--fw-600);
    text-transform: uppercase;
    margin-block-start: 5px;
    transition: var(--transition);
}

.project-list {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-block-end: 40px;
    scroll-snap-type: inline mandatory;
}

.project-item {
    min-width: 100%;
    scroll-snap-align: start;
}

.project-list::-webkit-scrollbar {
    height: 15px;
}

.project-list::-webkit-scrollbar-track {
    outline: 2px solid var(--prussian-blue);
}

.project-list::-webkit-scrollbar-thumb {
    border: 3px solid var(--cultured-1);
    background-color: var(--prussian-blue);
}

.project-list::-webkit-scrollbar-button {
    width: calc(25% - 40px);
}


/*-----------------------------------*\
    #BLOG
  \*-----------------------------------*/
.blog {
    margin-top: 80px;
}

.blog :is(.section-subtitle, .section-title, .section-text) {
    text-align: left;
}

.blog .section-text {
    margin-block: 20px 50px;
}

.blog-card .card-content {
    position: relative;
}

.blog-card .card-meta {
    background-color: var(--prussian-blue);
    color: var(--white);
    text-align: center;
    font-size: var(--fs-5);
    font-family: var(--ff-oswald);
    font-weight: var(--fw-600);
    line-height: 1.5;
    max-width: max-content;
    margin-inline: auto 20px;
    margin-block: -80px 20px;
    padding: 20px 25px;
    box-shadow: -8px 8px 0 var(--dark-orange);
}

.blog-card .card-meta .span {
    color: var(--dark-orange);
    font-size: var(--fs-3);
    font-weight: var(--fw-700);
    line-height: 0.75;
}

.blog-card .card-text {
    margin-block: 15px;
}

/*-----------------------------------*\
    #NEWSLETTER
  \*-----------------------------------*/

.newsletter {
    background-color: var(--dark-orange);
}

.newsletter .img-holder {
    background-color: transparent;
    margin-block-end: 20px;
    max-width: max-content;
}

.newsletter .section-title {
    margin-block-end: 20px;
}

.email-field {
    background-color: var(--white);
    color: var(--eerie-black);
    font-size: var(--fs-9);
    height: 65px;
    padding-inline: 20px;
    margin-block-end: 10px;
    outline: none;
    transition: var(--transition);
}

.email-field:focus {
    box-shadow: 0 2px 2px hsla(0, 0%, 0%, 0.4);
}

.newsletter-btn {
    background-color: var(--prussian-blue);
    color: var(--white);
    font-family: var(--ff-oswald);
    font-weight: var(--fw-700);
    padding: 8px 20px;
}

/*-----------------------------------*\
    #FOOTER
  \*-----------------------------------*/

.footer {
    background-color: var(--indigo-dye);
    color: white;
}

.footer-top {
    display: grid;
    gap: 40px;
}

.footer .logo {
    color: white;
    font-weight: var(--fw-800);
    font-size: 3.2rem;
}

.footer-text {
    margin-block: 10px 30px;
}

.social-list {
    display: flex;
    gap: 10px;
}
.social-list2 {
    position: fixed;
    bottom: 10px;
    display: flex;
    gap: 10px;
    padding-left: 20px;
}


.social-link {
    /* background-color: var(--indigo-dye); */
    color: var(--indigo-dye);
    font-size: 20px;
    padding: 8px;
    transition: var(--transition);
}

.social-link:is(:hover, :focus) {
    /* background-color: var(--prussian-blue); */
    font-size: 25px;
    transition: var(--transition);

}

.footer-list-title {
    font-size: var(--fs-6);
    max-width: max-content;
    padding-block-end: 10px;
    border-block-end: 3px solid var(--white);
    margin-block-end: 20px;
}

.footer-link {
    padding-block: 6px;
}

.footer-bottom {
    padding-block: 40px;
    border-block-start: 1px solid white;
    font-size: var(--fs-9);
    color: white;
}

.copyright-link {
    display: inline-block;
}

/*-----------------------------------*\
    #BACK TO TOP
  \*-----------------------------------*/

.back-top-btn {
    position: fixed;
    bottom: 10px;
    right: 20px;
    background-color: var(--eerie-black);
    color: var(--white);
    font-size: 20px;
    padding: 10px;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
}

/*-----------------------------------*\
    #MEDIA QUERISE
  \*-----------------------------------*/

/**
   * responsive for larger than 540px screen
   */

@media (min-width: 540px) {
    /**
     * REUSED STYLE
     */

    .btn {
        font-size: var(--fs-7);
        padding-inline: 30px 60px;
    }

    /**
     * HEADER
     */

    .header-contact {
        color: var(--text-color) !important;
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: right;
        line-height: 1.2;
        margin-inline-start: auto;
    }

    .header .contact-label {
        text-transform: uppercase;
        font-size: var(--fs-9);
    }

    .header .contact-number {
        /* font-size: var(--fs-6); */
        font-weight: var(--fw-600);
        letter-spacing: 1px;
    }

    .header .contact-icon {
        font-size: 35px;
        opacity: 0.6;
    }

    /**
     * ABOUT
     */

    .about .abs-img-2 {
        display: block;
        position: absolute;
        width: 400px;
        bottom: 0;
        /* left: 50px; */
        z-index: -1;
    }

    .about .abs-img-1 {
        right: -200px;
    }
}

/**
   * responsive for larger than 640px screen
   */

@media (min-width: 640px) {
    /**
     * REUSED STYLE
     */

    .h1 {
        --fs-3: 5rem;
    }

    .container {
        max-width: 540px;
        width: 100%;
        margin-inline: auto;
    }

    /**
     * HEADER
     */

    .header .container {
        max-width: unset;
    }

    .header .logo {
        font-size: 3.5rem;
    }

    /**
     * HERO
     */

    .hero {
        justify-content: flex-start;
    }

    .hero .shape-1 {
        left: 45px;
    }

    .hero-content {
        background-color: transparent;
        text-align: left;
    }

    .hero-title .span {
        --fs-2: 6rem;
    }

    .hero-text {
        max-width: 30ch;
        color: var(--logo);
    }

    .btn-outline {
        margin-inline: 0;
    }
}

/**
   * responsive for larger than 768px screen
   */

@media (min-width: 820px) {
    /**
     * REUSED STYLE
     */

    .container {
        max-width: 720px;
    }

    .h1 {
        --fs-3: 6rem;
    }

    .grid-list {
        grid-template-columns: 1fr 1fr;
    }
    .grid-list2 {
        grid-template-columns: 1fr 1fr;
    }

    /**
     * HERO
     */

    .hero-title .span {
        --fs-2: 7rem;
    }

    .hero-text {
        font-size: var(--fs-7);
        max-width: 40ch;
        /* margin-block-end: 40px; */
        color: var(--logo);
    }

    .btn-outline {
        font-size: var(--fs-7);
        padding: 12px 30px;
    }

    /**
     * FEATURES
     */

    .feature-card::before {
        --fs-1: 10rem;
    }

    /**
     * PROJECT
     */

    .project-list {
        gap: 80px;
    }

    .project-item {
        min-width: calc(50% - 40px);
    }

    /**
     * NEWSLETTER
     */

    .newsletter {
        margin-block-start: 110px;
    }

    .newsletter .container {
        position: relative;
    }

    .newsletter .newsletter-banner {
        position: absolute;
        bottom: -50px;
        left: 0;
        margin-block-end: 0;
    }

    .newsletter-content {
        max-width: 355px;
        margin-inline-start: auto;
    }

    .newsletter .section-title {
        --fs-4: 4rem;
    }

    .newsletter-btn {
        font-size: var(--fs-5);
        padding: 10px 30px;
    }

    /**
     * FOOTER
     */

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

/**
   * responsive for larger than 992px screen
   */

@media (min-width: 992px) {
    /**
     * CUSTOM PROPERTY
     */

    :root {
        /**
       * typography
       */

        --fs-4: 4.5rem;

        /**
       * spacing
       */

        --section-padding: 120px;
    }

    /**
     * REUSED STYLE
     */

    .container {
        max-width: 960px;
    }

    .h1 {
        --fs-3: 10rem;
    }

    .section-subtitle {
        --fs-6: 3rem;
    }

    .section-text {
        /* max-width: 70ch; */
        margin-inline: auto;
    }

    .grid-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-list2 {
        grid-template-columns: repeat(2, 1fr);
    }

    /**
     * HEADER
     */

    .nav-open-btn,
    .navbar-top,
    .navbar-link > ion-icon {
        display: block;
    }

    .navbar,
    .navbar.active {
        all: unset;
    }

    .navbar-list {
        display: flex;
        gap: 5px;
    }

    .navbar-item:not(:last-child) {
        border-block-end: none;
    }

    .navbar-link {
        color: var(--text-color);
    }

    /* .navbar-link:is(:hover, :focus) {
        background-color: transparent;
    } */

    .header-contact {
        margin-inline-start: 0;
    }

    /**
     * HERO
     */

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 5;
        /* background-color: rgba(0, 0, 0, 0.5); */
        width: 50vw;
        color: var(--logo) ;
    }

    .hero-title .span {
        --fs-2: 12rem;
    }

    /**
     * ABOUT
     */

    .about .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 30px;
    }

    .about-banner {
        margin-block-end: 0;
    }

    .about .abs-img-1 {
        right: -100px;
    }

    .about :is(.section-title, .section-text) {
        margin-block-end: 35px;
    }

    /**
     * FEATURE
     */

    .feature .title-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        justify-items: self-end;
    }

    .feature .section-text {
        margin-block-end: 0;
    }

    .feature-list {
        margin-block-start: 120px;
    }

    .feature-card {
        padding-block-start: 80px;
    }

    .feature-card::before {
        --fs-1: 16rem;
        position: absolute;
        top: -90px;
        left: 20px;
    }

    /**
     * PROJECT
     */

    .project-item {
        min-width: calc(33.33% - 53.33px);
    }

    /**
     * BLOG
     */

    .blog-list {
        grid-template-columns: 1fr 1fr;
    }

    /**
     * NEWSLETTER
     */

    .newsletter {
        padding-block: 30px;
    }

    .newsletter .newsletter-banner {
        bottom: -30px;
    }

    .newsletter-content {
        max-width: 600px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    /**
     * FOOTER
     */

    .footer-top {
        grid-template-columns: repeat(4, 1fr);
        justify-items: self-end;
    }

    .copyright {
        text-align: center;
    }
}

/**
   * responsive for larger than 1200px screen
   */

@media (min-width: 1200px) {
    /**
     * REUSED STYLE
     */

    .container {
        max-width: 1180px;
    }

    .h1 {
        --fs-3: 6rem;
    }

    /**
     * HEADER
     */

    /* .header .contact-number { --fs-6: 3rem; } */

    /**
     * HERO
     */

    .hero {
        padding-block-start: 150px;
        background-position: left;
    }

    .hero-title .span {
        --fs-2: 12rem;
    }

    .hero-text {
        --fs-7: 2.4rem;
        color: var(--logo);
    }

    /**
     * ABOUT
     */

    .about-banner {
        max-width: 370px;
    }

    .about .abs-img-2 {
        width: max-content;
    }

    /**
     * NEWSLETTER
     */

    .newsletter-content {
        max-width: 840px;
        grid-template-columns: 0.8fr 1fr;
    }

    /**
     * FOOTER
     */

    .footer-top {
        padding-block: 60px;
    }
}

/* ================================================================================= */

/*-----------------------------------*\
  #RESET
  \*-----------------------------------*/

:focus-visible {
    outline-offset: 4px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(0, 0%, 70%);
}

/*-----------------------------------*\
  #REUSED STYLE
  \*-----------------------------------*/

.container2 {
    padding-inline: 15px;
}

/* .section2 { padding-block: var(--section-padding); } */

.has-before2,
.has-after {
    position: relative;
    z-index: 1;
}

.has-before2::before,
.has-after::after {
    content: "";
    position: absolute;
}

.w-100 {
    width: 100%;
}

.section-subtitle2 {
    color: var(--cool-gray);
    font-size: var(--fs-6);
    font-weight: var(--fw-500);
    line-height: 1.2;
}

.section-subtitle2::before {
    position: static;
    width: 12px;
    height: 12px;
    background-color: var(--mustard);
    display: inline-block;
    border-radius: 50%;
    margin-inline-end: 10px;
}

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

.section-title2 {
    margin-block: 3px 15px;
    margin-block-end: 20px;
}

/*-----------------------------------*\
  #feature2
  \*-----------------------------------*/

.feature2 .container2,
.feature2-list {
    display: grid;
    gap: 60px;
}

.feature2-card .card-icon2 {
    /* background-color: hsla(var(--color), 0.15); */
    background-color: #82cefd;
    font-size: 24px;
    max-width: max-content;
    padding: 18px;
    border-radius: 50%;
    margin-block-end: 20px;
    transition: var(--transition-2);
}

.feature2-card .card-icon2 .img-icon {
    color: hsl(var(--color));
    transition: var(--transition-1);
}

.feature2-card .card-text2 {
    color: var(--cool-gray);
    font-size: var(--fs-7);
    margin-block-start: 10px;
}

.feature2-card:is(:hover, :focus) .card-icon2 {
    box-shadow: inset 0 0 0 30px hsla(var(--color), 0.9);
}

.feature2-card:is(:hover, :focus) .card-icon2 ion-icon {
    color: var(--indigo-dye);
}
.img-icon{
    height: 25px;
}
.img-icon2{
    height: 12px;
    margin-left: 2px;
}
/*-----------------------------------*\
  #MEDIA QUERIES
  \*-----------------------------------*/

/**
  * responsive for large than 575px screen
  */

@media (min-width: 575px) {
    /**
   * REUSED STYLE
   */

    .container2 {
        max-width: 540px;
        width: 100%;
        margin-inline: auto;
    }
}

/**
  * responsive for large than 768px screen
  */

@media (min-width: 768px) {
    /**
   * CUSTOM PROPERTY
   */

    :root {
        /**
     * typography
     */

        --fs-1: 5.5rem;
        --fs-2: 3.8rem;
        --fs-7: 1.8rem;

        /**
     * spacing
     */

        --section-padding: 120px;
    }

    /**
   * REUSED STYLE
   */

    .container2 {
        max-width: 720px;
    }

    /**
   * HERO
   */

    .hero .container2 {
        gap: 120px;
    }

    /**
   * feature2
   */

    .feature2-banner {
        max-width: max-content;
    }

    .feature2-list {
        gap: 13px;
    }

    .feature2-card {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px;
    }

    .feature2-card .card-icon2 {
        margin-block-end: 0;
    }

    .feature2-card .card-text2 {
        max-width: 32ch;
    }
}

/**
  * responsive for large than 992px screen
  */

@media (min-width: 992px) {
    /**
   * feature2
   */

    .feature2 .container2 {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/**
  * responsive for large than 1200px screen
  */

@media (min-width: 1200px) {
    /**
   * REUSED STYLE
   */

    .container2 {
        max-width: 1140px;
    }

    .section-title2.text-center {
        max-width: 20ch;
        margin-inline: auto;
    }
}

/* =============================================================================================================== */

.grid-container {
    --page-margin: 10vw;
    --col-overlap: var(--page-margin);
    --standard-grid: var(--page-margin) [center-start] 1fr [center-end]
        var(--page-margin);
    --header-grid: var(--standard-grid);
    --section-grid-left: var(--standard-grid);
    --section-grid-right: var(--standard-grid);

    color: var(--text-color);
    line-height: 1.5;
}

@media (min-width: 750px) {
    .grid-container {
        --section-grid-left: [bg-start] var(--page-margin) [content-start] 1.3fr
            [content-end images-start] var(--col-overlap) [bg-end] 1fr
            var(--page-margin) [images-end];
        --section-grid-right: [images-start] var(--page-margin) 1fr [bg-start]
            var(--col-overlap) [images-end content-start] 1.3fr [content-end]
            var(--page-margin) [bg-start];
        --header-grid: var(--page-margin) [left-start] 1fr [left-end right-start
            image-start] 1fr [right-end] var(--page-margin) [image-end];
    }
}

@media (min-width: 900px) {
    .grid-container {
        --col-overlap: 300px;
        --standard-grid: 1fr [center-start] 750px [center-end] 1fr;
        --section-grid-left: 1fr [bg-start content-start] 830px [content-end
            images-start] var(--col-overlap) [bg-end] 40px [images-end] 1fr;
        --section-grid-right: 1fr [images-start] 40px [bg-start]
            var(--col-overlap) [images-end content-start] 830px [content-end
            bg-end] 1fr;
        --header-grid: 1fr [left-start] 575px [left-end right-start image-start]
            575px [right-end image-end] 1fr;
    }
}

@media (min-width: 900px) {
    .grid-container2 {
        --col-overlap: 300px;
        --standard-grid: 1fr [center-start] 750px [center-end] 1fr;
        --section-grid-left: 1fr [bg-start content-start] 740px [content-end
            images-start] var(--col-overlap) [bg-end] 120px [images-end] 1fr;
        --section-grid-right: 1fr [images-start] 40px [bg-start]
            var(--col-overlap) [images-end content-start] 830px [content-end
            bg-end] 1fr;
        --header-grid: 1fr [left-start] 575px [left-end right-start image-start]
            575px [right-end image-end] 1fr;
    }
}

*,
::before,
::after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    line-height: 1.2;
}

html,
body {
    padding: 0;
    margin: 0;
}

header,
section {
    display: grid;
    align-items: start;
}

.container-flex {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item {
    margin-left: 1em;
}

header {
    grid-template-columns: var(--header-grid);
    margin-bottom: 10em;
}

.background-hero {
    background-color: var(--alice-blue);
    grid-column: 1 / -1;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
}

.text-hero {
    grid-row: 1;
    margin: 4em 2em 2em 0;
}

.image-hero {
    background-image: url(https://images.pexels.com/photos/1038935/pexels-photo-1038935.jpeg);
    padding-bottom: 75%;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    grid-row: 2 / span 2;
}

.cta-hero {
    justify-self: start;
    margin-top: 2em;
}

@media (min-width: 750px) {
    .text-hero,
    .cta-hero {
        grid-column: left;
    }

    .image-hero {
        grid-row: 1 / span 3;
        grid-column: image;
        padding-bottom: 0;
        height: 100%;
    }
}

section {
    margin-bottom: 7em;
}

.left-section {
    grid-template-columns: var(--section-grid-left);
}

.right-section {
    grid-template-columns: var(--section-grid-right);
}

.text-section {
    grid-row: 4;
    padding: 1.5em 0;
}

.image-section {
    padding-bottom: 75%;
    background-size: cover;
    background-image: url(https://images.pexels.com/photos/1105766/pexels-photo-1105766.jpeg);
    grid-row: 2 / span 2;
}
.image-section2 {
    padding-bottom: 75%;
    background-size: cover;
    background-image: url(https://images.pexels.com/photos/1105766/pexels-photo-1105766.jpeg);
    grid-row: 2 / span 2;
}

.background-section {
    background-color: var(--alice-blue);
    height: 100%;
    grid-column: 1 / -1;
    grid-row: 3 / span 2;
}

@media (min-width: 750px) {
    .header-section {
        grid-column: content;
    }

    .background-section {
        grid-column: bg;
        grid-row: 2 / span 2;
        height: 100%;
    }

    .text-section {
        grid-column: content;
        grid-row: 2;
        padding: 2rem;
    }

    .left-section .header-section {
        margin-right: 2rem;
    }

    .left-section .text-section {
        padding-left: 0;
    }

    .right-section .header-section {
        margin-left: 2rem;
    }

    .right-section .text-section {
        padding-right: 0;
    }

    .image-section {
        grid-column: images;
        grid-row: 1 / span 3;
    }
    .image-section2 {
        grid-column: images;
        grid-row: 1 / span 3;
    }
}

@media (min-width: 900px) {
    .text-section {
        padding-left: 2rem;
    }

    .left-section .text-section {
        padding-left: 2rem;
    }

    .right-section .text-section {
        padding-right: 2rem;
    }
}

.button {
    display: inline-block;
    padding: 1em 1.5em;
    background-color: var(--alice-blue);
    color: white;
    text-decoration: none;
}
/* ============================Feature Chart============================================== */

.features6 {
    display: block;
    position: relative;
    margin: 30px;
    padding: 0;
    /* overflow-x: hidden; */
    min-height: 100vh;
    background-color: #fff;
    color: #000;
    font-size: 8px;
    line-height: 14px;
    -webkit-font-feature-settings: "kern" 1;
    -o-font-feature-settings: "kern" 1;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

header .box2,
section .box2,
footer .box2 {
    display: block;
    position: relative;
    width: 1200px;
    min-width: 860px;
    margin: 90px auto;
}
@media all and (max-width: 860px) {
    header,
    section,
    footer {
        width: 100% !important;
        /* min-width: 600px !important; */
    }
    header .box2,
    section .box2,
    footer .box2 {
        width: 100% !important;
        /* min-width: 600px !important; */
        min-width: 320px !important;
        padding: 1em !important;
    }
}
.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 2.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
#features6 {
    text-align: left;
}
#features6 .features6-title {
    display: inline-block;
    position: relative;
    color: #404040;
    font-size: 32px;
    font-family: var(--ff-rubik);
    font-weight: 400;
    line-height: 46px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 1em 0;
}
#features6 .features6-title::after {
    display: block;
    position: absolute;
    bottom: -0.2em;
    left: 50%;
    margin-left: -40px;
    content: "";
    width: 80px;
    height: 3px;
    background-color: #00bff3;
}
#features6 .features6-content {
    display: flex;
    display: -webkit-box2;
    display: -ms-flexbox2;
    display: -webkit-flex;
    align-items: center;
    padding-bottom: 5em;
    /* margin-bottom: 5em; */
    /* border-bottom: 2px solid #e5f7fb; */
}
#features6 .features6-content + .features6-content {
    border: 0;
}
#features6 .features6-content-col {
    width: 50%;
    text-align: left;
}

@media (max-width:781px){
    #features6 .features6-content-col {
        width: 80% !important;
    }
}

#features6 .features6-textblock {
    display: none;
    position: relative;
}
#features6 .features6-textblock.__active {
    display: block;
}
#features6 .features6-textblock h1,
#features6 .features6-textblock h2,
#features6 .features6-textblock h3,
#features6 .features6-textblock h4,
#features6 .features6-textblock h5 {
    color: var(--text-color);
    font-family: var(--ff-rubik);
    font-weight: 900;
    padding: 0;
    font-size: 2.7rem;
}
#features6 .features6-textblock p {
    color: #404040;
    font-family: var(--ff-rubik);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.7em;
}
#features6 .features6-textblock ul {
    margin: 0;
    padding: 0 2em;
    list-style: none;
}
#features6 .features6-textblock ul li {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    text-indent: -5px;
    color: #404040;
    font-family: var(--ff-rubik);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.7em;
    padding: 0.7em 0;
}
#features6 .features6-textblock ul li:before {
    display: inline-block;
    position: relative;
    top: -1px;
    left: -11px;
    content: "";
    width: 5px;
    height: 5px;
    background-color: #00b0de;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
#features6 .features6-graph {
    height: 425px;
    margin: 25px;
}
#features6 .features6-graph .button-holder {
    display: flex;
    display: -webkit-box2;
    display: -ms-flexbox2;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
}
.animation-holder {
    padding-top: 0 !important;
}
#features6 .features6-graph .animation-holder {
    display: flex;
    justify-content: center;
    align-items: center;
}
#features6 .features6-graph .flash-oval {
    background-color: #00bff3;
    width: 12em;
    height: 12em;
    border-radius: 7em;
    -webkit-transform: translateX(1px);
    -ms-transform: translateX(1px);
    transform: translateX(1px);
    z-index: 100;
    margin: 10em auto 9em auto;
}
#features6 .features6-graph .flash-oval img {
    position: absolute;
    right: 32px;
    top: 23px;
}
#features6 .features6-graph .btn-with-icon {
    display: block;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border: 1px solid var(--indigo-dye);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    transition-duration: 0.3s;
    background-position: center;
    background-repeat: no-repeat;
    line-height: 5em;
    z-index: 0;
    cursor: pointer;
    margin-left: 11%;
    margin-right: 8%;
    text-align: center;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
#features6 .features6-graph .btn-with-icon.__active {
    opacity: 1;
    filter: alpha(opacity=100);
}
#features6 .features6-graph .btn-with-icon:hover {
    opacity: 1;
}
#features6 .features6-graph .sq-bt-label {
    letter-spacing: 0;
    color: #656b6f;
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    position: absolute;
    text-transform: uppercase;
}
#features6 .features6-graph .label-top-left {
    right: 36%;
    top: 33%;
}
#features6 .features6-graph .label-top {
    right: 21.3%;
    top: 33%;
}
#features6 .features6-graph .label-top-right {
    right: 6.7%;
    top: 33%;
}
#features6 .features6-graph .label-bottom-left {
    right: 36.3%;
    bottom: 9%;
}
#features6 .features6-graph .label-bottom {
    right: 21.4%;
    bottom: 9%;
}
@media(max-width:781px){
    #features6 .features6-graph .label-top-left {
        /* top: 70% !important;
        right: 50% !important; */
        display: none;
    }
    #features6 .features6-graph .label-top {
        /* top: 70% !important;
        right: 23.2% !important; */
        display: none;
    }
    #features6 .features6-graph .label-top-right {
        /* right: 0.9% !important;
        top: 70% !important; */
        display: none;
    }
    #features6 .features6-graph .label-bottom-left {
        /* right: 54% !important;
        bottom: 6% !important; */
        display: none;
    }
    #features6 .features6-graph .label-bottom{
        /* bottom: 6% !important;
        right: 28% !important; */
        display: none;
    }
    #features6 .features6-graph .label-bottom-right {
        /* bottom: 6% !important;
        right: 5% !important; */
        display: none;
    }

    #features6 .features6-graph .icon-features6-4:after {
        bottom: 11% !important;
    }
    #features6 .features6-graph .icon-features6-5:after {
        bottom: 10% !important;
    }
    #features6 .features6-graph .icon-features6-6:after {
        bottom: 11% !important;
        right: 15% !important;
    }
    #features6 .features6-graph .icon-features6-1:after {
        top: 71% !important;
    }
    #features6 .features6-graph .icon-features6-2:after {
        top: 71% !important;
    }
    #features6 .features6-graph .icon-features6-3:after {
        top: 71% !important;
        right: 15% !important;
    }
    #features6 .features6-graph .icon-features6-1 {
        background-position: 50% 50% !important;
    }
    #features6 .features6-graph .icon-features6-4{
        background-position: 50% 50% !important;
    }
}
#features6 .features6-graph .label-bottom-right {
    /* right: 6.6%; */
    bottom: 9%;
}
#features6 .features6-graph .icon-features6-1:after {
    content: " ";
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/598117/top-left.svg);
    background-size: 100%;
    height: 110px;
    width: 85px;
    background-repeat: no-repeat;
    position: absolute;
    top: 36.4%;
}
#features6 .features6-graph .icon-features6-2:after {
    content: " ";
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/598117/top.svg);
    height: 110px;
    width: 85px;
    background-repeat: no-repeat;
    position: absolute;
    top: 36.4%;
}
#features6 .features6-graph .icon-features6-3:after {
    content: " ";
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/598117/top-right.svg);
    background-size: 100%;
    height: 110px;
    width: 85px;
    background-repeat: no-repeat;
    position: absolute;
    top: 36.4%;
    right: 10%;
}
#features6 .features6-graph .icon-features6-4:after {
    content: " ";
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/598117/bottom-left.svg);
    background-size: 100%;
    height: 110px;
    width: 85px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 26%;
}
#features6 .features6-graph .icon-features6-5:after {
    content: " ";
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/598117/bottom.svg);
    height: 110px;
    width: 85px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 23%;
}
#features6 .features6-graph .icon-features6-6:after {
    content: " ";
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/598117/bottom-right.svg);
    background-size: 100%;
    height: 110px;
    width: 85px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 26%;
    right: 10%;
}
#features6 .features6-graph #top-left-line {
    position: absolute;
    top: 170px;
    left: 50px;
    z-index: -4;
}
#features6 .features6-graph .icon-features6-1 {
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/598117/icon-1.svg);
    background-size: 150%;
    background-position: 50% 0;
}
#features6 .features6-graph .icon-features6-2 {
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/598117/icon-2.svg);
    background-size: 70%;
    background-position: 50% 50%;
}
#features6 .features6-graph .icon-features6-3 {
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/598117/icon-3.svg);
    background-size: 65%;
}
#features6 .features6-graph .icon-features6-4 {
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/598117/icon-4.svg);
    background-size: 150%;
    background-position: 50% 0;
}
#features6 .features6-graph .icon-features6-5 {
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/598117/icon-5.svg);
    background-size: 150%;
}
#features6 .features6-graph .icon-features6-6 {
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/598117/icon-6.svg);
    background-size: 65%;
    background-position: 50% 50%;
}
#features6 .features6-graph .wave {
    position: absolute;
    opacity: 0;
    width: 12em;
    height: 12em;
    border: #56a9e8 1px solid;
    border-radius: 7em;
    -webkit-animation-name: ripple;
    animation-name: ripple;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: linear;
    animation-iteration-count: linear;
    text-align: center;
    top: 0;
}
#features6 .features6-graph .wave2 {
    position: absolute;
    opacity: 0;
    width: 12em;
    height: 12em;
    border: #56a9e8 1px solid;
    border-radius: 7em;
    -webkit-animation-name: ripple2;
    animation-name: ripple2;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: linear;
    animation-iteration-count: linear;
    top: 0;
    text-align: center;
}
#features6 .features6-graph .wave3 {
    position: absolute;
    opacity: 0;
    width: 12em;
    height: 12em;
    border: #56a9e8 1px solid;
    border-radius: 7em;
    -webkit-animation-name: ripple3;
    animation-name: ripple3;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: linear;
    animation-iteration-count: linear;
    text-align: center;
    top: 0;
}
#features6 .features6-graph .wave4 {
    position: absolute;
    opacity: 0;
    width: 12em;
    height: 12em;
    border: #56a9e8 1px solid;
    border-radius: 7em;
    -webkit-animation-name: ripple4;
    animation-name: ripple4;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: linear;
    animation-iteration-count: linear;
    text-align: center;
    top: 0;
}
@-webkit-keyframes ripple {
    from {
        opacity: 0.8;
    }
    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}
@keyframes ripple {
    from {
        opacity: 0.8;
    }
    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}
@-webkit-keyframes ripple2 {
    from {
        opacity: 0.7;
    }
    to {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes ripple2 {
    from {
        opacity: 0.7;
    }
    to {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}
@-webkit-keyframes ripple3 {
    from {
        opacity: 0.7;
    }
    to {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}
@keyframes ripple3 {
    from {
        opacity: 0.7;
    }
    to {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}
@-webkit-keyframes ripple4 {
    from {
        opacity: 0.6;
    }
    to {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0;
    }
}
@keyframes ripple4 {
    from {
        opacity: 0.4;
    }
    to {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0;
    }
}
#features6 .features6-items {
    display: flex;
    display: -webkit-box2;
    display: -ms-flexbox2;
    display: -webkit-flex;
    flex-flow: row wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
#features6 .features6-items li {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 50%;
    text-align: left;
    padding: 20px 50px 20px 20px;
}

.hidden {
    display: none;
}
.visible {
    display: block;
}

#features6 .features6-textblock p {
    color: var(--text-color);
    font-family: var(--ff-rubik);
    font-size: var(--fs-8);
    font-weight: 300;
    line-height: 1.7em;
}
#features6 .features6-textblock ul {
    margin: 0;
    padding: 0 2em;
    list-style: none;
}
#features6 .features6-textblock ul li {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    text-indent: -5px;
    color: var(--text-color);
    font-family: var(--ff-rubik);
    font-size: var(--fs-8);
    font-weight: 300;
    line-height: 1.7em;
    padding: 0.7em 0;
}
#features6 .features6-textblock ul li:before {
    display: inline-block;
    position: relative;
    top: -1px;
    left: -11px;
    content: "";
    width: 5px;
    height: 5px;
    background-color: #00b0de;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
#features6 .features6-graph {
    height: 425px;
    margin: 25px;
}
#features6 .features6-graph .button-holder {
    display: flex;
    display: -webkit-box2;
    display: -ms-flexbox2;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
}
#features6 .features6-graph .animation-holder {
    display: flex;
    justify-content: center;
    align-items: center;
}
#features6 .features6-graph .flash-oval {
    background-color: #00bff3;
    width: 12em;
    height: 12em;
    border-radius: 7em;
    -webkit-transform: translateX(1px);
    -ms-transform: translateX(1px);
    transform: translateX(1px);
    z-index: 2;
    margin: 14em auto 9em auto;
}
#features6 .features6-graph .flash-oval img {
    position: absolute;
    right: 33px;
    top: 25px;
}

/* ======================== */
@media all and (max-width: 768px) {
    .features6-content {
        flex-direction: column;
    }
    
    .features6-graph {
        width: 100%;
        margin-bottom: 2em;
    }

    .features6-graph .flash-oval {
        width: 100%;
        height: auto;
        border-radius: 0;
        margin: 0 auto;
    }

    .features6-content-col {
        width: 100% !important;
        margin-top: 2em;
    }
}
.ced_section{
    margin-left: 4em;
}
/* =============================Contact Us======================================= */
/* 
.contact-section {
    margin-top: 20px;
}

.container5 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form {
    width: 100%;
    max-width: 920px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 3;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-form {
    background-color: var(--text-color);
    position: relative;
}

.circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, var(--text-color));
    position: absolute;
}

.circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: var(--text-color);
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.title {
    color: #fff;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.input-container5 {
    position: relative;
    margin: 1rem 0;
}

.input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: 0.3s;
}

textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 5px;
    resize: none;
    overflow-y: auto;
}

.input-container5 label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
}

.input-container5.textarea label {
    top: 1rem;
    transform: translateY(0);
}

.btn {
    padding: 0.8rem 1.6rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 1.6rem;
    color: var(--text-color);
    line-height: 1;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    width: 100%;
}

.btn:hover {
    background-color: transparent;
    color: #fff;
}

.input-container5 span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.input-container5 span:before,
.input-container5 span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: var(--text-color);
    top: 50%;
    transform: translateY(-50%);
}

.input-container5 span:before {
    left: 50%;
}

.input-container5 span:after {
    right: 50%;
}

.input-container5.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.input-container5.focus span:before,
.input-container5.focus span:after {
    width: 50%;
    opacity: 1;
}

.contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
}

.contact-info .title {
    color: var(--text-color);
}

.text {
    color: var(--text-color);
    margin: 1.5rem 0 2rem 0;
}

.information {
    display: flex;
    color: var(--text-color);
    margin: 0.7rem 0;
    align-items: center;
    font-size: 1.5rem;
}

.information i {
    color: var(--text-color);
}

.icon {
    width: 28px;
    margin-right: 0.7rem;
}

.social-media {
    padding: 2rem 0 0 0;
}

.social-media p {
    color: #333;
}

.social-icons {
    display: flex;
    margin-top: 0.5rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #3180ff, var(--text-color));
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.05);
}

.contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid var(--text-color);
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
}

.big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #3180ff, var(--text-color));
    bottom: 50%;
    right: 40%;
    transform: translate(-40%, 38%);
}

.big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}

@media (max-width: 850px) {
    .form {
        grid-template-columns: 1fr;
    }

    .contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }

    .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }

    .square {
        transform: translate(140%, 43%);
        height: 350px;
    }

    .big-circle {
        bottom: 75%;
        transform: scale(0.9) translate(-40%, 30%);
        right: 50%;
    }

    .text {
        margin: 1rem 0 1.5rem 0;
    }

    .social-media {
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .container5 {
        padding: 1.5rem;
    }

    .contact-info:before {
        display: none;
    }

    .square,
    .big-circle {
        display: none;
    }

    form,
    .contact-info {
        padding: 1.7rem 1.6rem;
    }

    .text,
    .information,
    .social-media p {
        font-size: 0.8rem;
    }

    .title {
        font-size: 1.15rem;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .icon {
        width: 23px;
    }

    .input {
        padding: 0.45rem 1.2rem;
    }

    .btn {
        padding: 0.45rem 1.2rem;
    }
} */

/* ===============================contact form 2============================================  */
.contact-container {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    /* background: white; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1;
    /* background-color: var(--text-color);
    color: white !important; */
  }
  .contact-container .text-center {
    text-align: center;
  }
  .contact-container .text-center .text-3xl {
    /* font-size: 1.875rem; */
    font-weight: bold;
    /* color: #333; */
  }
  .text-lg {
   margin-bottom: 1.5rem;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    /* color: #333; */
  }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: #6c5ce7;
    outline: none;
  }
  /* input::placeholder {
    color: rgb(226, 225, 225);
    opacity: 1; 
  } */
  /* .button {
    background-color: #6c5ce7;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
  .button:hover {
    background-color: #5a4ab2;
  } */
  .gradient-wrapper {
    position: relative;
  }
  .fabform-link {
    display: block;
    text-align: center;
    margin-top: 2rem;
    /* color: #6c5ce7; */
    text-decoration: none;
  }
  .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .form-row .form-group {
    flex: 1;
  }
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }
  }
  textarea{
    /* font-family: var(--ff-rubik); */
    font: inherit;
  }
  /* .form-group input, .form-group textarea, .form-group select {
    background: var(--text-color);
  } */
/* ===============================products card============================================  */

.wrapper {
    width: 100%;
    position: relative;
  }
  .wrapper i {
    /* top: 40%; */
    height: 40px;
    width: 40px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 25px;
    background: #fff;
    color: var(--text-color);
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    /* transform: translateY(-50%); */
    transition: transform 0.1s linear;
  }
  .wrapper .fa-angle-left {
    top: 40% !important;
    line-height: 40px !important;
  }
  .wrapper .fa-angle-right {
    top: 40% !important;
    line-height: 40px !important;
  }
  .wrapper .fa-angle-left:hover,.fa-angle-right:hover{
    background-color: var(--text-color);
    color: white;
  }
  /* .wrapper .fa-angle-left,.fa-angle-right:active{
    transform: translateY(-50%) scale(0.85);
  } */
  .wrapper .fa-angle-left,.fa-angle-right:first-child{
    left: -15px;
    z-index: 2;
  }
  .wrapper .fa-angle-left, .fa-angle-right:last-child{
    right: -15px;
    z-index: 2;
  }
  .wrapper .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 4) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .carousel::-webkit-scrollbar {
    display: none;
  }
  .carousel.no-transition {
    scroll-behavior: auto;
  }
  .carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
  .carousel.dragging .card {
    cursor: grab;
    user-select: none;
  }
  .carousel :where(.card, .img) {
    display: flex;
    /* justify-content: center;
    align-items: center; */
  }
  .carousel .card {
    scroll-snap-align: start;
    height: 240px;
    list-style: none;
    /* background: #fff; */
    background-color: white;
    cursor: pointer;
    /* padding-bottom: 15px; */
    flex-direction: column;
    border-radius: 8px;
  }
  .carousel .card img {
    /* background: #8B53FF; */
    height: 100%;
    width: 100%;
  }
  /* .card .img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
  } */
  /* .carousel .card h2 {
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
  } */
  /* .carousel .card span {
    color: #6A6D78;
    font-size: 1.31rem;
  } */
  
  @media screen and (max-width: 900px) {
    .wrapper .carousel {
      grid-auto-columns: calc((100% / 2) - 9px);
    }
  }
  
  @media screen and (max-width: 600px) {
    .wrapper .carousel {
      grid-auto-columns: calc((100% / 2) - 9px);
    }
  }

/* ===============================Blogs============================================  */

.container6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 940px;
    margin: auto;
    margin-top: 120px !important;
}
.card2 {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
}
.card2-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card2-body {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 20px;
    min-height: 250px;
}
.tag {
    background-color: #ccc;
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    margin: 0;
    padding: 2px 10px;
    text-transform: uppercase;
}
.tag-teal {
    background-color: #92d4e4;
}
.tag-purple {
    background-color: #3d1d94;
}
.tag-pink {
    background-color: #c62bcd;
}
.card2-body h4 {
    margin: 10px 0;
}
.card2-body p {
    font-size: 14px;
    margin: 0 0 40px 0;
    font-weight: 500;
    color: rgb(70, 68, 68);
}
.user {
    display: flex;
    margin-top: auto;
}
.user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}
.user-info h5 {
    margin: 0;
}
.user-info small {
    color: #888785;
}
@media (max-width: 940px) {
    .container6 {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}
.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==============================Gallery============================================= */

.container7 {
    margin: 2rem 2rem;
    margin-top: 80px !important;
    /* padding-top: 50px !important; */
}
.container10 {
    margin: 2rem 5rem;
    margin-top: 80px !important;
    font-family: var(--ff-rubik);
    font-size: var(--fs-8)
    /* font-weight: 300;
    line-height: 1.7em; */
}

.container8 {
    margin: 2rem 2rem;
    margin-top: 50px !important;
    /* padding-top: 40px !important; */
}

.container9{
    margin-top: 90px !important;
    /* margin: 30px; */
    padding-left: 20px;
}
/* Gallery Item Styles */
.gallery2 {
    display: grid;
    max-width: 100%;
    margin: 0 auto;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: minmax(150px, auto);
}

.gallery2-item {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.gallery2-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
}

.gallery2-item img {
    width: 100%;
    height: 260px;
    object-fit: fill;
    transition: transform 0.3s;
}

.gallery2-item:hover img {
    transform: scale(1.1);
}

/* Modal Styles */
.modal2 {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Background opacity */
    backdrop-filter: blur(5px); /* Blur effect */
    justify-content: center;
    align-items: center;
}

.modal2-content {
    width: 80%;
    max-width: 500px;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close {
    display: none; /* Hide the close icon by default */
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
/* =============================certificate-container=============================================== */

.certificate-container {
    margin-top: 80px;
    margin-left: 20px;
}

.certificate-img {
    height: 600px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* ==============================================Client Logo============================================ */
.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 10em;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}
.slide {
    min-width: 250px;
    margin: 0 10px;
}
.slide img {
    width: 100%;
    max-width: 200px;
    display: block;
}

/* ======================================Coming Soon...============================================== */

.cloud-effect:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: auto;
    border-radius: 100%;
    background: transparent;
    display: block;
    box-shadow: 0 0 150px 100px rgba(255, 255, 255, 0.6),
        200px 0 200px 150px rgba(255, 255, 255, 0.6),
        -250px 0 300px 150px rgba(255, 255, 255, 0.6),
        550px 0 300px 200px rgba(255, 255, 255, 0.6),
        -550px 0 300px 200px rgba(255, 255, 255, 0.6);
}

.title2 {
    cursor: default;
    margin: 0;
    font-size: var(--fs-7);
    color: var(--text-color);
    line-height: 1.5;
    font-weight: bold;
    /* text-shadow: 0 1px 0 #ccc, 0 2px 0 #ccc, 0 3px 0 #ccc, 0 4px 0 #ccc,
        0 5px 0 #ccc, 0 6px 0 transparent, 0 7px 0 transparent,
        0 8px 0 transparent, 0 9px 0 transparent, 0 10px 10px rgba(0, 0, 0, 0.6);*/
    animation: bounce 0.3s ease infinite alternate;
}

@keyframes bounce {
    100% {
        transform: translateY(-10px);
    }
}

.btn {
    display: block;
    text-decoration: none;
}

/* =======================numbers section========================= */


   /* Container styling */
   section#counter-stats {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    opacity: 0;
    /* transform: translateX(100%); */
    animation: slideIn 1s forwards ease-in-out;
    background-color: var(--indigo-dye) ;
    color: white;
}

/* Keyframes for slide-in animation */
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Flexbox layout for stats */
.stats-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

/* Stats item styling */
.stats {
    flex: 1;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    color: white;
    padding: 0 10px;
}

.stats-text{
    font-weight: 200;
}

.stats .fa {
    color: var(--white);
    font-size: 50px;
    margin-bottom: 10px;
}

.counting {
    font-size: 25px;
    margin-top: 5px;
}

/* Responsive design */
@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        align-items: center;
    }

    .stats {
        margin: 20px 0;
    }
}

/* ================================================================ */
.sidebar2 {
    position: fixed;
    top: 0;
    left: 250px;
    width: 250px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding-top: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 24; 
    opacity: 0.9;
}

.sidebar2.show {
    transform: translateX(0);
}

.sidebar2 ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.sidebar2 ul li {
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sidebar2 ul li.active {
    background-color: #1667F3; 
    color: white !important; 
}
/* Media query for screens below 768px */
@media (max-width: 768px) {
    .sidebar2 {
        display: none; /* Hide sidebar */
    }

    .dropdown-menu {
        display: block; /* Show dropdown */
    }
}

/* Media query for screens above 768px */
@media (min-width: 769px) {
    .dropdown-menu {
        display: none !important; /* Hide dropdown */
    }
   

    .settings:hover .sidebar2 {
        display: block; /* Show sidebar on hover */
    }
}
/* ================================================================ */
.sidebar3 {
    position: fixed;
    top: 0;
    left: 250px;
    width: 250px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding-top: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 24; 
    opacity: 0.9;
}

.sidebar3.show {
    transform: translateX(0);
}

.sidebar3 ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.sidebar3 ul li {
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sidebar3 ul li.active {
    background-color: #1667F3; 
    color: white !important; 
}


/* ================================================================ */

/* ================================================================ */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px; /* Adjust as needed */
    height: 100vh;
    background: #fff; /* Adjust as needed */
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding-top: 20px; /* Adjust for logo spacing */
    transform: translateX(0);
    transition: transform 0.3s ease;
    z-index: 25;
}

.sidebar.hide {
    transform: translateX(-100%);
}

.sidebar .logo {
    display: block;
    margin: 0 auto;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.sidebar ul li {
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sidebar ul li.active {
    background-color: #1667F3; 
    color: white !important; 
}

.sidebar .close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    display: none; /* Hidden by default */
}

.main-content {
    margin-left: 250px; /* Same as sidebar width */
    width: calc(100% - 250px); /* Adjust based on sidebar width */
    transition: margin-left 0.3s ease;
}

#menu2 > li {
    display: block;
    color: var(--indigo-dye);
    text-decoration: none;
    position: relative; /* Ensure dropdown is positioned relative to this item */
    cursor: pointer;
    margin: auto;
}

/* #menu2 > li:hover {
    background-color: #1667F3;
    color: white !important;
} */
.app-content{
    margin-left: 250px;
}

@media (max-width: 768px) {
    .app-content{
        margin-left: 0px;
    }
}

#drop-down {
    display: none;
    position: absolute;
    top: 0; /* Position dropdown below the node item */
    left: 120px; /* Align dropdown to the left of the node item */
    background:grey;
    color: var(--indigo-dye);
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    z-index: 5000;
    width: 400px; /* Adjust width to fit your needs */
}

#drop-down > li {
    display: block;
    padding: 10px;
    white-space: nowrap;
}

#drop-down > li:hover {
    background-color: #f0f0f0;
}

#node2:hover #drop-down {
    display: block;
}

#toggle-btn {
    display: none;
}


@media (max-width: 768px) {
    .sidebar{
        transform: translateX(-100%);
    }

    .sidebar.show {
        transform: translateX(0);
        height: -webkit-fill-available;
    }

    .sidebar2 {
        left: 100%; /* Adjust for mobile view */
        transform: translateX(100%);
    }

    .sidebar2.show {
        transform: translateX(-100%);
    }
    .sidebar3 {
        left: 100%; /* Adjust for mobile view */
        transform: translateX(100%);
    }

    .sidebar3.show {
        transform: translateX(-100%);
    }

    .sidebar .close-btn {
        display: block; /* Show on mobile screens */
    }

    #toggle-btn {
        display: block;
        position: fixed;
        top: 20px;
        left: 20px;
        font-size: 24px;
        cursor: pointer;
        z-index: 1000;
        color: var(--indigo-dye);
        background-color: white;
        padding: 8px;
    }
   
    .main-content {
        margin-left: 0;
        width: 100%;
    }
}

/* ==================================================================================== */
/* Dropdown Styles */
.dropdown-menu {
    display: none;
    list-style: none;
    padding-left: 20px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 5px 0;
}

.dropdown-menu li a {
    color: var(--indigo-dye);
    text-decoration: none;
}
/* ==================================================================================== */
.heading {
    margin: 0;
    padding: 0;
}

.link, .link:hover, .link:focus, .link:active {
    text-decoration: none;
    outline: none;
}

.link, .link:active, .link:focus {
    color: var(--indigo-dye);
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
}

.list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.image {
    max-width: 100%;
    height: auto;
}

/* .sec-title {
    margin-bottom: 60px;
} */

.sec-title .title {
    font-size: 18px;
    color: var(--indigo-dye);
    margin-bottom: 15px;
}

.sec-title .heading-primary {
    font-size: 40px;
    color: var(--indigo-dye);
    font-weight: 600;
    padding-bottom: 18px;
}

.sec-title .heading-primary:before {
    content: '';
    width: 50px;
    height: 3px;
    background-color: var(--logo);
    display: block;
    margin-bottom: 10px;
}

.text-content {
    font-size: 16px;
    line-height: 26px;
    /* color: #848484; */
    margin-bottom: 40px;
}

.list-style-one .list-item {
    font-size: 16px;
    line-height: 26px;
    /* color: #222222; */
    padding-left: 35px;
    margin-bottom: 12px;
    position: relative;
}

.list-style-one .list-item:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: var(--indigo-dye);
    font-weight: 600;
}

.btn-style-one {
    display: inline-block;
    font-size: 17px;
    color: #ffffff;
    padding: 10px 30px;
    background-color: var(--indigo-dye);
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: background-color .3s;
}

.btn-style-one:hover {
    background-color: #003366; /* Slightly darker shade for hover effect */
    color: white;
}

/* Flexbox Layout */
.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.content-column,
.image-column {
    flex: 1;
    padding: 20px;
    min-width: 300px; /* Prevent columns from being too narrow */
}

.image-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.inner-column .image {
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
}

.image-1 {
    position: relative;
    z-index: -2;
}

.image-2 {
    position: absolute;
    bottom: -90px;
    left: 35px;
    z-index: -1;
    width: 40%; /* Adjust the size as needed */
}

/* Responsive Layout */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
    }

    .sec-title .heading-primary {
        font-size: 32px;
    }

    .text-content {
        font-size: 14px;
        line-height: 22px;
    }

    .image-column {
        padding: 10px;
    }

    .content-column {
        padding: 5px;
        order: 2;
        padding-top: 100px;
    }

    .image-2 {
        width: 50%;
        bottom: -70px;
    }
}

@media (max-width: 480px) {
    .sec-title .heading-primary {
        font-size: 24px;
    }

    .text-content {
        font-size: 12px;
        line-height: 20px;
    }

    .image-column {
        padding: 5px;
        flex-direction: column;
        align-items: center;
        order: 1;
    }

    .content-column {
        padding: 5px;
        order: 2;
        padding-top: 100px;
    }

    .image-2 {
        width: 60%;
        bottom: -50px;
    }

    .btn-style-one {
        font-size: 15px;
        padding: 8px 20px;
    }
}
/* ==========================FAQs================================================ */

details {
    margin-bottom: 10px;
    overflow: hidden;
}

summary {
    padding: 10px;
    cursor: pointer;
    position: relative;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '▼';
    position: absolute;
    right: 10px;
    bottom: 15px;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(180deg);
}

.content {
    background-color: #fff;
    padding: 0 10px;
    overflow: hidden;
    transition: height 0.3s ease-out;
}
/* ===============Home grid================================== */
.custom-grid {
    display: grid;
    grid-template-columns: 66.67% 33.33%; /* Small and large column fractions */
}
.custom-grid2 {
    display: grid;
    grid-template-columns: 33.33% 66.67%; /* Small and large column fractions */
}

.col-small {
    /* background-color: #f9f9f9;  */
    /* padding: 20px; */
    display: flex; /* To align image properly */
    justify-content: center; /* Centering the image horizontally */
    align-items: center; /* Centering the image vertically */
    height: 120px; /* Set height for small column */
}

.col-small img {
    max-width: 100%; /* Ensures the image does not overflow */
    /* height: 200px; */
    margin-top: 70px;
}
.custom-grid2 .col-small img {
    max-width: 100%; /* Ensures the image does not overflow */
    height: 200px; /* Maintains aspect ratio */
    margin-top: 180px;
}

.col-large {
    /* background-color: #e0e0e0; */
    padding: 20px;
    height: auto;
}

.text-section{
    background-color: var(--alice-blue);
}

/* Responsive adjustments for mobile devices */
@media screen and (max-width: 768px) {
    .custom-grid {
        grid-template-columns: 1fr; /* Stack columns on small screens */
    }
    .custom-grid2 {
        grid-template-columns: 1fr; /* Stack columns on small screens */
    }
    .custom-grid2 .col-small img {
        max-width: 100%; /* Ensures the image does not overflow */
        /* height: 200px;  */
        margin-top: 50px;
    }
    .col-small, .col-large {
        padding: 15px;
        height: auto; /* Adjust height for mobile screens */
    }
}
/* ===================================================== */
.grid-heading{
    margin-left: 20px;
}
