*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: PP Mori;   
    color: aliceblue;                 
}

html,body{
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
    scrollbar-width: none;
}


.main{
    background-color: #fff;
}

/* header start */
header {
    display: flex;
    height: 12vh;
    padding: 20px;
    background-color: #00000080;
    backdrop-filter: blur(5px);
    position: fixed;
    width: 100%;
    top: 0%;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.8s all;
}

nav {
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

img {
    width: 40px;
    height: 40px;
}

.menu-btn {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
}

.menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 0.3vw;
    background: #dadada;
    transition: all ease 0.35s;
}

.nav-menu {
    position: fixed;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 2% 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    transform: translateY(-100%);
    opacity: 0;
    z-index: 99;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none; /* Prevent clicks when hidden */
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto; /* Enable clicks when visible */
}




.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}



.elem{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: left;
}
.elem h1{
    font-size: 3vw;
    font-weight: 100;
    color: #ffffff;
    transition: all ease-out 0.5s;
}

.elem a {
    text-decoration: none;
}



.elem:hover h1{
    transform: translateY(-100%);
    color: #edbfff;
    text-decoration: 1px underline #edbfff;
}

.text-div{
    height: 3vw;
    overflow: hidden;
    z-index: 11;
    margin-bottom: 2%;
}

.elem-wrapper{
    margin-right: 25%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}    

/* page1 start */
.page1 {
    height: 100vh;
    width: 100%;
    position: relative;
}

.page1 video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

.page1-content {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
    
}

.hero-head {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    text-align: center;
}

.hero-head h2 {
    font-size: 5.5vw;
    font-weight: bolder;
    letter-spacing: 0.4px;
    line-height: 4.5vw;
    color: #ffffff;
}

.hero-head p {
    font-size: 1.3vw;
    padding: 0 12vw;
    margin-top: 5vh;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-head {
        width: 70vw;
        
    }

    .hero-head h2 {
        font-size: 6vw;
        line-height: 5vw;
    }

    .hero-head p {
        font-size: 1.5vw;
        padding: 0 8vw;
    }
}

@media (max-width: 768px) {
    .hero-head {
        width: 80vw;
    }

    .hero-head h2 {
        font-size: 7vw;
        line-height: 6vw;
    }

    .hero-head p {
        font-size: 2vw;
        padding: 0 5vw;
    }
}

@media (max-width: 480px) {
    .hero-head {
        width: 90vw;
    }

    .hero-head h2 {
        font-size: 8vw;
        line-height: 6.5vw;
    }

    .hero-head p {
        font-size: 3vw;
        padding: 0 3vw;
    }
}

/* page1 end  */

/* page2 start */
.page2 {
    width: 100%;
    position: relative;
    padding-top: 5%;
}

.page2-head-div h1, h2 {
    color: #242424;
    font-weight: 300;
    font-size: 1.8vw;
}

.page2 p {
    width: 95%;
    font-size: 3.5vw;
    color: #000000;
    padding: 5vh 5vw;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page2-head-div h1, h2 {
        font-size: 2.5vw;
    }

    .page2 p {
        font-size: 4vw;
    }
}

@media (max-width: 768px) {
    .page2-head-div h1, h2 {
        font-size: 3vw;
    }

    .page2 p {
        font-size: 5vw;
    }
}

@media (max-width: 480px) {
    .page2-head-div {
        /* flex-direction: column; */
        text-align: center;
    }

    .page2-head-div h1, h2 {
        font-size: 5vw;
        margin-bottom: 2%;
    }

    .page2 p {
        font-size: 6vw;
        padding: 3vh 4vw;
    }
}

/* page2 end  */

.page3{
    padding-top: 5%;
    min-height: 100vh;
    width: 100%;
    position: relative;
}
.page-head-div {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center; /* Ensures text is centered for all screen sizes */
}

.page-head-div h2 span {
    font-size: 1.2vw; /* Default size for larger screens */
    background-color: #242424;
    border-radius: 50px;
    color: #ffffff;
    padding: 0.5vh 1vw;
    display: inline-block; /* Ensures proper inline styling */
}

.page-head-div h2 i {
    font-size: 1.2vw; /* Matches span font size */
    color: #000;
    padding-left: 0.5vw;
}

.page-head-div h1 {
    margin-top: 1vw;
    font-size: 4vw; /* Scales with screen size */
    color: #000;
    text-decoration: underline 1px solid #000; /* Ensures a visible underline */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .page-head-div h2 span {
        font-size: 2vw; /* Larger for tablets */
        padding: 0.7vh 2vw; /* Increases padding for readability */
    }

    .page-head-div h2 i {
        font-size: 2vw; /* Adjust arrow size for tablets */
    }

    .page-head-div h1 {
        font-size: 6vw; /* Scales heading text for tablets */
    }
}

@media (max-width: 480px) {
    .page-head-div h2 span {
        font-size: 3vw; /* Larger for small screens */
        padding: 0.8vh 2.3vw; /* Adds more padding for better appearance */
    }

    .page-head-div h2 i {
        font-size: 3vw; /* Adjust arrow size for small screens */
    }

    .page-head-div h1 {
        font-size: 7vw; /* Scales heading text for small screens */
        margin-top: 2vw; /* Adds more spacing */
    }
}

.phases-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 8vh;
}

.phase-3columns {
    display: flex;
    gap: 0.5vw;
    width: 90%; /* Adjusted for responsiveness */
    height: auto; /* Allows height to adjust dynamically */
    flex-wrap: wrap; /* Enables wrapping for smaller screens */
    justify-content: center; /* Centers columns on smaller screens */
}

.box1, .box2, .box3 {
    flex: 1 1 30%; /* Makes boxes flexible and responsive */
    max-width: 30%; /* Sets max width for larger screens */
    height: auto; /* Allows height to adjust dynamically */
    border-radius: 1vw;
    background-color: #e8e8e8;
    padding: 2vh 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0.5vw 0; /* Adds margin for spacing when stacked */
}

.phases-wrapper i {
    color: #434753;
    font-size: 4vw;
}

.phases-wrapper h2 {
    font-size: 4vw;
    margin: 3vh 1vh 0 0;
    font-weight: 700;
    text-align: center; /* Centers heading text for small screens */
}

.phases-wrapper p {
    font-size: 1.2vw;
    width: 90%;
    color: #242424;
    text-align: center; /* Centers paragraph text for small screens */
}

.phase-2columns {
    /* margin-top: 0.5vw; */
    display: flex;
    gap: 0.5vw;
    width: 90%; /* Adjusted for responsiveness */
    height: auto; /* Allows height to adjust dynamically */
    flex-wrap: wrap; /* Enables wrapping for smaller screens */
    justify-content: center; /* Centers columns on smaller screens */
}

.box4, .box5 {
    flex: 1 1 45%; /* Makes boxes flexible and responsive */
    max-width: 45%; /* Sets max width for larger screens */
    height: auto; /* Allows height to adjust dynamically */
    border-radius: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2vh 1vw;
    background-color: #e8e8e8;
}

.box h4 {
    color: #434753;
    text-align: left;
    margin-top: 1vw;
    text-decoration: underline #434753;
}

.box h4:hover {
    text-decoration: underline #43475391;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .phases-wrapper i{
        font-size: 6vw;
    }
    .phases-wrapper h2 {
        font-size: 5.5vw; /* Scales heading text for tablets and phones */
    }

    .phases-wrapper p {
        font-size: 2.3vw; /* Scales paragraph text for tablets and phones */
        margin-top: 1vw;
        width: 80%;
    }

    .box1, .box2, .box3, .box4, .box5 {
        flex: 1 1 45%; /* Two boxes per row for tablets */
        max-width: 45%;
    }
    .box3{
        flex: 1 1 100%;
        max-width: 90%;
    }
    .box4, .box5{
        margin: 0.5vw 0;
    }
}

@media (max-width: 480px) {
    .phases-wrapper i{
        font-size: 9vw;
    }
    .phases-wrapper h2 {
        font-size: 8vw; /* Scales heading text for smaller screens */
    }

    .phases-wrapper p {
        font-size: 4vw; /* Scales paragraph text for smaller screens */
    }

    .box1, .box2, .box3, .box4, .box5 {
        flex: 1 1 100%; /* Stacks boxes vertically for phones */
        max-width: 100%;
        padding: 3vh 2vw; /* Increases padding for readability */
    }
}

/* page3 end  */

/* page 5 start  */
.page5{
	width: 100%;
	min-height: 85vh;
	display: flex;
	justify-content: center;
	align-items: center;
    background-color: #0d0d0d;
    padding: 5%;
    margin-top: 5%;

}
.page5-head-div {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 5%;
    text-align: center; /* Ensures text is centered */
}

.page5-head-div h2 span {
    font-size: 1.2vw; /* Default font size for larger screens */
    background-color: #ffffff;
    border-radius: 50px;
    color: #000000;
    padding: 0.5vh 1vw;
    font-weight: bold;
    display: inline-block; /* Keeps inline styling intact */
}

.page5-head-div h2 i {
    font-size: 1.2vw; /* Matches span font size */
    color: #ffffff;
    padding-left: 0.5vw;
}

.page5-head-div h1 {
    margin-top: 1vw;
    font-size: 4vw; /* Default font size for larger screens */
    color: #ffffff;
    text-decoration: underline 1px solid #ffffff; /* Keeps a visible underline */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .page5-head-div h2 span {
        font-size: 2vw; /* Scales span font size for tablets */
        padding: 0.7vh 2vw; /* Adjusts padding for readability */
    }

    .page5-head-div h2 i {
        font-size: 2vw; /* Adjusts icon size for tablets */
    }

    .page5-head-div h1 {
        font-size: 6vw; /* Scales heading text for tablets */
    }
}

@media (max-width: 480px) {
    .page5-head-div h2 span {
        font-size: 3vw; /* Larger font size for small screens */
        padding: 0.8vh 2.3vw; /* Adds padding for better appearance */
    }

    .page5-head-div h2 i {
        font-size: 3vw; /* Adjusts icon size for smaller screens */
    }

    .page5-head-div h1 {
        font-size: 7vw; /* Larger font size for small screens */
        margin-top: 2vw; /* Adds extra spacing */
    }
}



.testimonials-section {
    width: 100%;
    padding: 0 8%;
}

.testimonials-container {
    position: relative;
}

.testimonials-container .testimonial-card {
    padding: 20px;
}

.testimonial-card .test-card-body {
    border-radius: 1vw;
    border-top-left-radius: 7vw;
    border-bottom-right-radius: 7vw;
    background-color: #232323;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.12);
    padding: 20px;
}

.test-card-body p {
    margin: 10px 0 15px;
    font-size: 15px;
    line-height: 1.5;
    color: #767a86;
}

.test-card-body .ratings {
    margin-top: 20px;
}

.test-card-body .ratings i {
    font-size: 17px;
    color: #ddb218;
    cursor: pointer;
}

.testimonial-card .profile {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.profile .profile-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.profile .profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile .profile-desc {
    display: flex;
    flex-direction: column;
}

.profile-desc span:nth-child(1) {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.profile-desc span:nth-child(2) {
    font-size: 16px;
    color: #767a86;
}

.owl-nav {
    position: absolute;
    right: 20px;
    bottom: -10px;
}

.owl-nav button {
    border-radius: 50% !important;
}

.owl-nav .owl-prev i,
.owl-nav .owl-next i {
    padding: 10px !important;
    border-radius: 50%;
    font-size: 18px !important;
    background-color: #0d0a17 !important;
    color: #ffffff;
    cursor: pointer;
    transition: 0.4s;
}

.owl-nav .owl-prev i:hover,
.owl-nav .owl-next i:hover {
    background-color: #ffffff !important;
    color: #000000;
}

.owl-dots {
    margin-top: 15px;
}

.owl-dots .owl-dot span {
    background-color: #434753 !important;
    padding: 6px !important;
}

.owl-dot.active span {
    background-color: #ffffff !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 0 5%;
    }

    .test-card-body {
        padding: 15px;
    }

    .profile .profile-image {
        width: 50px;
        height: 50px;
    }

    .profile-desc span:nth-child(1) {
        font-size: 22px;
    }

    .profile-desc span:nth-child(2) {
        font-size: 17px;
    }

    .test-card-body p {
        font-size: 17px;
    }

    .owl-nav {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 0 3%;
    }

    .testimonial-card {
        padding: 15px;
    }

    .profile .profile-image {
        width: 45px;
        height: 45px;
    }

    .profile-desc span:nth-child(1) {
        font-size: 19px;
    }

    .profile-desc span:nth-child(2) {
        font-size: 15px;
    }

    .test-card-body p {
        font-size: 14px;
        line-height: 17px;
    }

    .owl-nav {
        bottom: -15px;
    }

    .owl-nav .owl-prev i,
    .owl-nav .owl-next i {
        font-size: 10px;
        padding: 8px !important;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 0 2%;
    }

    .testimonial-card {
        padding: 10px;
    }

    .test-card-body {
        padding: 10px;
        border-top-left-radius: 5vw;
        border-bottom-right-radius: 5vw;
    }

    .profile .profile-image {
        width: 40px;
        height: 40px;
    }

    .profile-desc span:nth-child(1) {
        font-size: 20px;
    }

    .test-card-body p {
        line-height: 17px;
    }

    .owl-nav {
        right: 5px;
        bottom: -20px;
    }

    .owl-nav .owl-prev i,
    .owl-nav .owl-next i {
        font-size: 8px;
        padding: 6px !important;
    }
}

/* page5 end  */

/* footer start  */
.footer {
    background-color: #171717;
    color: #fff;
    padding: 40px 0;
    position: relative;
    min-height: 100vh;
    padding-top: 10vh;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
}

.logo h1 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.address {
    font-weight: 100px;
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 1vw;
    color: #FFF;
}

.footer-links {
    display: flex;
    margin-left: 2%;
}

.footer-links > div {
    margin-right: 50px;
}

.footer-links h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.socials {
    margin-right: 200px;
}

.socials h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.socials ul {
    list-style: none;
}

.socials ul li {
    margin-bottom: 10px;
}
.socials ul li i{
    margin-right: 0.2vw;
}
.socials ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

#model{
    position: absolute;
    right: 0;
    bottom: 0%;
    object-fit: cover;
    width: 25%;
    height: 45vh;
}
/* footer end  */

@media (max-width: 430px) {
    .nav-menu{
        height: 80vh;
        align-items: flex-start;
        padding-left: 10%;
    }
    .elem-wrapper{
        gap: 0.8vw;
    }
    .elem h1{
        font-size: 10vw;
    }
    .text-div{
        height: 10vw;
    }

}
@media (max-width: 768px){
    header{
        padding: 15px;
    }
    .elem-wrapper{
        /* gap: 0.8vw; */
    }
    .elem h1{
        font-size: 40px;
    }
    .text-div{
        height: 40px;
    }
    .footer-top{
        flex-direction: column;
        gap: 50px;
    }
    .footer-links{
        flex-direction: column;
        gap: 50px;
    }
    #hashtag1,#hashtag2,#model{
        display: none;
    }
}



/* by yash */
.container1 {
    position: relative;
    margin-top: 5%;
}

.card-container1 {
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: center;
}

.card-article1 {
    position: relative;
    overflow: hidden;
}

.card-img1 {
    width: 320px;
    height: 280px;
    border-radius: 15px;
    filter: blur(2px);
    filter: brightness(70%);
    transition: 0.3s all;
}

.card-img1:hover {
    filter: brightness(100%);
}

.card-data1 {
    width: 280px;
    background-color: #ffff;
    padding: 0.8rem 2rem;
    border-radius: 15px;
    position: absolute;
    bottom: 0rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    opacity: 0;
    transition: opacity 1s 1s ;
    animation:  animate  1s ease-in-out 0.6s 1 forwards ;
}

.card-description1 {
    color: #000;
    display: block;
    margin-bottom: 0.25rem;
}

.card-data1 h2 {
    font-weight: bolder;
}

.card-button1 {
    color: #000;
}

@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}