.margintop {
    margin-top: 100px;
}

@media (max-width: 600px) and (min-width: 320px) {
    .margintop {
        margin-top: 50px;
    }
}

h1 {
    font-weight: bold;
}

.navbar {
    background-color: white !important;
    padding: 10px 20px;
    margin: auto;
}

.navbar-brand {
    font-weight: bold;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    width: 30px;
    margin-right: 10px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.nav-link::after {
    content: "\2022";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    font-size: 25px;
    color: #e37d64;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
    transform: translateX(-50%) translateY(3px);
}

@media (max-width: 991px) {
    .nav-link::after {
        left: 15px;
        bottom: -7px;
        font-size: 25px;
        transform: translateX(0);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        transform: translateX(0) translateY(2px);
    }
}

.contact-btn {
    background-color: #e37d64;
    color: white;
    padding: 8px 16px;
    transition: background 0.3s ease-in-out;
    margin-left: 30px;
    margin-bottom: 5px;
}

.contact-btn:hover {
    background-color: #c96550;
}

@media (max-width: 991px) {
    .contact-btn {
        background-color: #e37d64;
        color: white;
        padding: 8px 16px;
        transition: background 0.3s ease-in-out;
        margin-left: 0px;
        margin-bottom: 5px;
    }
}

video {
    position: absolute;
    top: 10;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.overlay {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.headertext {
    font-size: 50px;
}

.firstheader {
    position: fixed;
    top: 0;
    width: 100%;
}

.navbar {
    position: fixed;
    top: 32px;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    z-index: 3;
}

/* icon */
@media (max-width: 575px) and (min-width: 320px) {
    .rownew > * {
        flex-shrink: 0;
        width: 50%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        margin-top: var(--bs-gutter-y);
    }
}

.social-iconsh a {
    text-decoration: none;
    color: black;
}

.icons {
    background-color: #e9967a;
    color: white;
    padding: 10px;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.icons:hover {
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px) scale(1.2);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-5px) scale(1.1);
    }
}

/* who we are */
.content {
    max-width: 900px;
    margin: auto;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* counter */
.stats-section {
    /* Dark background */
    background-color: #241405;
    color: #ffffff;
    padding: 67px 20px;
    text-align: center;
}

.stat {
    font-size: 24px;
}

.number {
    font-size: 40px;
    font-weight: bold;
}

/* why choose us */
.choose-us {
    color: white;
    padding: 10px;
    border-radius: 10px;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 0.5s ease-in-out forwards;
}

.feature-list li:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-list li:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-list li:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-list li:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-list li i {
    color: #ff6f61;
    margin-right: 10px;
}

/* card */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    position: relative;
}

.card:hover {
    transform: scale(1.02);
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 10px 0 0 10px;
    border-left: 3px solid #ff6b6b;
    border-top: 3px solid #ff6b6b;
    border-bottom: 3px solid #ff6b6b;
    transition: all 0.5s ease-in-out;
}

.card:hover::before {
    width: 100%;
    border-radius: 10px;
    border-right: 3px solid #ff6b6b;
}

.fade-in {
    animation: fadeIn 1s forwards;
}

.slide-up {
    animation: slideUp 1s forwards;
}

.zoom-in {
    animation: zoomIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.card img {
    width: 100%;
    height: auto;
}

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

.btn-custom {
    background-color: #ff6b6b;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    transition: background-color 0.3s;
}

.btn-custom:hover {
    background-color: #ff3b3b;
}

/* work */
.section-title {
    color: #ff6b6b;
    text-transform: uppercase;
    font-weight: bold;
}

.icon-container {
    width: 80px;
    height: 80px;
    background-color: #ffecec;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
}

.icon-container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dotted transparent;
    transition: border-color 0.5s;
}

.icon-container:hover::after {
    border-color: #ff6b6b;
}

.icon {
    font-size: 2rem;
    color: #ff6b6b;
}

.info-box {
    text-align: center;
    padding: 20px;
}

/* education */
.content-section {
    padding: 50px 0;
}

.award-img img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.award-img img:hover {
    transform: scale(1.05);
}

.certificate img {
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.certificate img:hover {
    transform: scale(1.03);
}

/* home client */
.testimoniall-card {
    text-align: center;
    height: 350px;
    color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.testimoniall-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.star-rating {
    color: gold;
}

/* footer */
.footer {
    background: #2c190f;
    padding: 50px 0;
    color: #fff;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer a:hover {
    text-decoration: underline;
    color: #ff8c66;
}

.social-icons a {
    margin: 0 10px;
    font-size: 22px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.3);
    color: #ff8c66;
}

.subscribe-input {
    border-radius: 5px;
    padding: 10px;
    border: none;
    width: 100%;
}

.subscribe-btn {
    background: #e76f51;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.subscribe-btn:hover {
    background: #d45b3e;
}

.footer hr {
    border-color: white;
}

h5 {
    color: #ff6f61;
}

/* contact */
.slide-contact:nth-child(1) {
    background: url(../img/contactbanner.png) no-repeat center center / cover;
}

.slide-contact {
    height: 50vh;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

@media (max-width: 500px) and (min-width: 320px) {
    .slider-contact-content h1 {
        font-size: 3rem;
        margin-bottom: 10px;
    }
}

.slider-contact-content h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.slider-contact-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 30px;
    padding: 20px;
    border-radius: 10px;
    z-index: 1;
}

.contact-form {
    max-width: 500px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #ff6f61;
    box-shadow: 0 0 5px rgba(255, 111, 97, 0.5);
}

.btn-custom {
    background-color: #ff6f61;
    color: white;
    border: none;
    transition: 0.3s;
}

.btn-custom:hover {
    background-color: #e65a50;
}

.contact-info {
    background-color: #f8f6f2;
    padding: 40px 0;
}

.contact-info h6 {
    font-weight: bold;
}

.contact-info p {
    margin: 0;
}

/* about */
@media (max-width: 768px) and (min-width: 320px) {
    #hiddimg {
        display: none;
    }
}

.slide-about:nth-child(1) {
    background: url(../img/aboutbanner.png) no-repeat center center / cover;
}

.slide-about {
    height: 50vh;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cardr {
    border-radius: 15px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cardr:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.icon {
    font-size: 2rem;
    color: #ff6b6b;
}

.hero-section {
    position: relative;
    background: url("../img/whyus.jpg") center/cover no-repeat;
    height: 400px;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.content-box {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) and (min-width: 320px) {
    .content-box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 20px;
        border-radius: 10px;
        max-width: 500px;
        width: 100%;
        text-align: center;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }
}

/* button */
.btn-3d {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 12px 27px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-3d::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    top: 100%;
    left: 0;
    transition: all 0.3s ease;
}

.btn-3d:hover::before {
    top: 0;
}

.btn-3d:hover {
    background: #ff5252;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.btn-3d:active {
    transform: translateY(2px);
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) and (min-width: 320px) {
    .image-container img {
        max-width: 108%;
        height: 400px;
        border-radius: 10px;
    }
}

/* mens */
.slide-men:nth-child(1) {
    background: url(../img/mensbanner.png) no-repeat center center / cover;
}

.slide-men {
    height: 50vh;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

@media (max-width: 768px) and (min-width: 500px) {
    .row-new > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 50%;
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        margin-top: var(--bs-gutter-y);
    }
}

.product-card {
    border: 2px solid transparent;
    transition: border 0.4s ease-in-out;
    overflow: hidden;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.product-card:hover {
    border: 2px solid #ff6e617c;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
    padding: 7px;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
}

.product-description {
    font-size: 1rem;
    color: #555;
}

/* womens */
.slide-women:nth-child(1) {
    background: url(../img/womenbanner.png) no-repeat center center / cover;
}

.slide-women {
    height: 50vh;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* clinets */
.slide-client:nth-child(1) {
    background: url(../img/clientsbanner.png) no-repeat center center / cover;
}

.slide-client {
    height: 50vh;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.testimonial-card {
    position: relative;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    pointer-events: none;
    border: 3px solid transparent;
    box-sizing: border-box;
}

.testimonial-card:hover::before {
    animation: borderScroll 2s linear infinite;
}

@keyframes borderScroll {
    0% {
        border-image: linear-gradient(90deg, #ff6e617c, transparent) 1;
        border-width: 3px;
    }

    25% {
        border-image: linear-gradient(180deg, #ff6e617c, transparent) 1;
    }

    50% {
        border-image: linear-gradient(270deg, #ff6e617c, transparent) 1;
    }

    75% {
        border-image: linear-gradient(360deg, #ff6e617c, transparent) 1;
    }

    100% {
        border-image: linear-gradient(90deg, #ff6e617c, transparent) 1;
    }
}

.testimonial-card img {
    width: 100px;
    margin-bottom: 10px;
    justify-content: center;
}

.testimonial-card p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.user-info {
    text-align: center;
    gap: 10px;
}

.user-info p {
    font-weight: bold;
}

/* header banners */
.home-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.home-slider {
    display: flex;
    width: 300%;
    /* Adjust according to the number of images */
    transition: transform 0.5s ease-in-out;
}

.home-slide {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.home-slide:nth-child(1) {
    background: url("../img/homebanne1.png") no-repeat center center/cover;
}

.home-slide:nth-child(2) {
    background: url("../img/homebanne2.png") no-repeat center center/cover;
}

.home-slide:nth-child(3) {
    background: url("../img/homebanne1.png") no-repeat center center/cover;
}

/* Background overlay for better text visibility */
.home-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.home-slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 30px;
    border-radius: 10px;
    z-index: 1;
}

.home-slider-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

@media (max-width: 500px) and (min-width: 320px) {
    .home-slider-content h2 {
        font-size: 3rem;
        margin-bottom: 10px;
    }
}

.home-slider-content p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.navigation {
    position: absolute;
    width: 100%;
    bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nav-dot {
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.nav-dot.active {
    background: #28a745;
}
